BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
blackcat
allocators
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
24
using
allocators::allocator_traits
;
25
using
allocators::Allocator
;
26
27
template
<
class
ValueType>
28
using
Basic_Allocator
=
allocators::Allocator<ValueType, host_tag>
;
29
30
#ifdef __CUDACC__
31
template
<
class
ValueType>
32
using
Cuda_Allocator
=
allocators::Allocator<ValueType, device_tag>
;
33
34
template
<
class
ValueType>
35
using
Cuda_Managed
=
allocators::Device_Managed<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
allocator_traits.h
logging_allocator.h
null_allocator.h
bc::allocators::allocator_traits
Definition:
allocator_traits.h:20
stack_allocator.h
bc::allocators::Allocator
Definition:
allocators.h:20
polymorphic_allocator.h
bc::allocators::Byte
Definition:
allocators.h:17
basic_allocators.h
recycle_allocator.h
bc
The Evaluator determines if an expression needs to be greedily optimized.
Definition:
algorithms.h:22
bc::allocators::Device_Managed
Definition:
basic_allocators.h:104
Generated by
1.8.13