BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
allocators.h
Go to the documentation of this file.
1 /*
2  * Allocators.h
3  *
4  * Created on: Dec 4, 2018
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_ALLOCATOR_ALLOCATOR_H_
9 #define BLACKCAT_ALLOCATOR_ALLOCATOR_H_
10 
11 #include "basic_allocators.h"
12 #include "allocator_traits.h"
13 
14 namespace bc {
15 namespace allocators {
16 
17 class Byte {};
18 
19 template<class ValueType, class SystemTag>
20 class Allocator;
21 
22 }
23 
26 
27 template<class ValueType>
29 
30 #ifdef __CUDACC__
31 template<class ValueType>
33 
34 template<class ValueType>
36 #endif
37 
38 using allocators::Byte;
39 
40 } //end of namespace BC
41 
42 //Assume All other Allocators may depend upon Allocator_Traits and Allocator
43 #include "polymorphic_allocator.h"
44 #include "stack_allocator.h"
45 #include "recycle_allocator.h"
46 #include "logging_allocator.h"
47 #include "null_allocator.h"
48 
49 #endif
Definition: allocator_traits.h:20
Definition: allocators.h:20
Definition: allocators.h:17
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
Definition: basic_allocators.h:104