BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
|
#include "common.h"
#include "tensor_base.h"
#include "../allocator.h"
#include "tensor_static_functions.h"
Go to the source code of this file.
Namespaces | |
bc | |
The Evaluator determines if an expression needs to be greedily optimized. | |
bc::tensors | |
bc::tensors::detail | |
Typedefs | |
template<class T > | |
using | bc::tensors::detail::default_allocator = bc::Allocator< T, default_system_tag_t > |
template<int X> | |
using | bc::tensors::detail::default_shape = bc::Shape< X > |
template<int dim, class ValueType , class Allocator = tensors::detail::default_allocator<ValueType>> | |
using | bc::Tensor = bc::tensors::Tensor_Base< bc::tensors::exprs::Array< bc::Shape< dim >, ValueType, Allocator > > |
template<class ValueType , class Allocator = tensors::detail::default_allocator<ValueType>> | |
using | bc::Scalar = Tensor< 0, ValueType, Allocator > |
template<class ValueType , class Allocator = tensors::detail::default_allocator<ValueType>> | |
using | bc::Vector = Tensor< 1, ValueType, Allocator > |
template<class ValueType , class Allocator = tensors::detail::default_allocator<ValueType>> | |
using | bc::Matrix = Tensor< 2, ValueType, Allocator > |
template<class ValueType , class Allocator = tensors::detail::default_allocator<ValueType>> | |
using | bc::Cube = Tensor< 3, ValueType, Allocator > |
template<class ValueType , class Allocator = tensors::detail::default_allocator<ValueType>> | |
using | bc::VecList = bc::tensors::Tensor_Base< bc::tensors::exprs::Vector< ValueType, Allocator > > |