![]() |
ceras
yet another deep learning engine
|
#include <tensor.hpp>
Public Types | |
typedef T | value_type |
typedef Allocator | allocator |
typedef std::vector< T, Allocator > | vector_type |
typedef std::shared_ptr< vector_type > | shared_vector |
typedef tensor | self_type |
Public Member Functions | |
constexpr auto | begin () noexcept |
constexpr auto | begin () const noexcept |
constexpr auto | cbegin () const noexcept |
constexpr auto | end () noexcept |
constexpr auto | end () const noexcept |
constexpr auto | cend () const noexcept |
constexpr self_type & | reset (T val=T{0}) |
constexpr unsigned long | ndim () const noexcept |
constexpr self_type & | deep_copy (self_type const &other) |
constexpr self_type const | deep_copy () const |
constexpr self_type const | copy () const |
constexpr value_type & | operator[] (unsigned long idx) |
constexpr value_type const & | operator[] (unsigned long idx) const |
tensor () | |
constexpr | tensor (std::vector< unsigned long > const &shape, std::initializer_list< T > init, const Allocator &alloc=Allocator()) |
constexpr | tensor (std::vector< unsigned long > const &shape) |
constexpr | tensor (std::vector< unsigned long > const &shape, T init) |
constexpr | tensor (tensor const &other, unsigned long memory_offset) |
constexpr | tensor (self_type const &other) noexcept |
constexpr | tensor (self_type &&other) noexcept |
constexpr self_type & | operator= (self_type const &other) noexcept |
constexpr self_type & | operator= (self_type &&other) noexcept |
constexpr std::vector< unsigned long > const & | shape () const noexcept |
constexpr unsigned long | size () const noexcept |
constexpr self_type & | resize (std::vector< unsigned long > const &new_shape) |
constexpr self_type & | reshape (std::vector< unsigned long > const &new_shape) |
constexpr self_type & | shrink_to (std::vector< unsigned long > const &new_shape) |
constexpr self_type & | creep_to (unsigned long new_memory_offset) |
constexpr bool | empty () const noexcept |
constexpr value_type * | data () noexcept |
constexpr const value_type * | data () const noexcept |
template<typename Function > | |
constexpr self_type & | map (Function const &f) |
constexpr self_type & | operator+= (self_type const &other) |
constexpr self_type & | operator+= (value_type x) |
constexpr self_type & | operator-= (self_type const &other) |
constexpr self_type & | operator-= (value_type x) |
constexpr self_type & | operator*= (self_type const &other) |
constexpr self_type & | operator*= (value_type x) |
constexpr self_type & | operator/= (self_type const &other) |
constexpr self_type & | operator/= (value_type x) |
constexpr self_type const | operator- () const |
constexpr value_type | as_scalar () const noexcept |
template<typename U > | |
constexpr auto | as_type () const noexcept |
tensor | slice (unsigned long m, unsigned long n) const noexcept |
Public Attributes | |
std::vector< unsigned long > | shape_ |
unsigned long | memory_offset_ |
shared_vector | vector_ |
typedef Allocator ceras::tensor< T, Allocator >::allocator |
typedef tensor ceras::tensor< T, Allocator >::self_type |
typedef std::shared_ptr<vector_type> ceras::tensor< T, Allocator >::shared_vector |
typedef T ceras::tensor< T, Allocator >::value_type |
typedef std::vector<T, Allocator> ceras::tensor< T, Allocator >::vector_type |
|
inline |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Resetting all elements in the tensor to a fixed value (default to 0), without change the shape.
Example code:
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
|
inlineconstexprnoexcept |
|
inlinenoexcept |
unsigned long ceras::tensor< T, Allocator >::memory_offset_ |
std::vector<unsigned long> ceras::tensor< T, Allocator >::shape_ |
shared_vector ceras::tensor< T, Allocator >::vector_ |