ceras
yet another deep learning engine
Public Member Functions | Public Attributes | List of all members
ceras::view< T, N > Struct Template Reference

N-Dimentional view of 1D memory. More...

#include <tensor.hpp>

Public Member Functions

constexpr view (T *data, std::array< unsigned long, N > const &shape) noexcept
 
view< T, N-1 > operator[] (unsigned long index) noexcept
 
view< T, N-1 > operator[] (unsigned long index) const noexcept
 

Public Attributes

T * data_
 
std::array< unsigned long, N > shape_
 

Detailed Description

template<typename T, unsigned long N>
struct ceras::view< T, N >

N-Dimentional view of 1D memory.

auto t = random<float>( {1, 2, 3, 4, 5, 6, 7} );
auto v = view<float, 7>{ t.data(), {1, 1, 6, 4, 5, 6, 7} }; // view as different shape tensor
std::cout << v[0][0][5][3][4][5][6];

Constructor & Destructor Documentation

◆ view()

template<typename T , unsigned long N>
constexpr ceras::view< T, N >::view ( T *  data,
std::array< unsigned long, N > const &  shape 
)
inlineconstexprnoexcept

Member Function Documentation

◆ operator[]() [1/2]

template<typename T , unsigned long N>
view<T, N-1> ceras::view< T, N >::operator[] ( unsigned long  index) const
inlinenoexcept

◆ operator[]() [2/2]

template<typename T , unsigned long N>
view<T, N-1> ceras::view< T, N >::operator[] ( unsigned long  index)
inlinenoexcept

Member Data Documentation

◆ data_

template<typename T , unsigned long N>
T* ceras::view< T, N >::data_

◆ shape_

template<typename T , unsigned long N>
std::array<unsigned long, N> ceras::view< T, N >::shape_

The documentation for this struct was generated from the following file: