BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
null_allocator.h
Go to the documentation of this file.
1 /*
2  * Null_Allocator.h
3  *
4  * Created on: Oct 4, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCATTENSORS_ALLOCATORS_NULL_ALLOCATOR_H_
9 #define BLACKCATTENSORS_ALLOCATORS_NULL_ALLOCATOR_H_
10 
11 namespace bc {
12 namespace allocators {
13 
14 template<class ValueType, class SystemTag>
16 
17  using system_tag = SystemTag;
18  using value_type = ValueType;
19  using size_t = bc::size_t;
20 
21  Null_Allocator()=default;
22  Null_Allocator(const Null_Allocator&)=default;
23  Null_Allocator(Null_Allocator&&)=default;
24 
25  template<class AltT>
27  value_type* allocate(size_t sz) { return nullptr; }
28 
29  void deallocate(value_type* ptr, size_t sz) {
30  BC_ASSERT(ptr==nullptr, "Null_Allocator passed a non-null ptr");
31  }
32 
33  template<class U>
34  constexpr bool operator ==(const Null_Allocator<U, system_tag>&) const {
35  return true;
36  }
37 
38  template<class U>
39  constexpr bool operator !=(const Null_Allocator<U, system_tag>&) const {
40  return false;
41  }
42 };
43 
44 }
45 }
46 
47 #endif /* NULL_ALLOCATOR_H_ */
system_tag system_tag
Definition: null_allocator.h:17
Definition: null_allocator.h:15
Null_Allocator(Null_Allocator< AltT, SystemTag > copy)
Definition: null_allocator.h:26
value_type * allocate(size_t sz)
Definition: null_allocator.h:27
int size_t
Definition: common.h:283
constexpr bool operator!=(const Null_Allocator< U, system_tag > &) const
Definition: null_allocator.h:39
Definition: allocators.h:17
void deallocate(value_type *ptr, size_t sz)
Definition: null_allocator.h:29
#define BC_ASSERT(condition, message)
Definition: common.h:185
constexpr bool operator==(const Null_Allocator< U, system_tag > &) const
Definition: null_allocator.h:34
void copy(const Tensor_Base< Xpr > &rv)
Definition: tensor_utility.h:2
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22