BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
basic_allocators.h
Go to the documentation of this file.
1 
2 /* Project: BlackCat_Tensors
3  * Author: JosephJaspers
4  * Copyright 2018
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 
10 #ifndef BC_ALLOCATOR_DEVICE_H_
11 #define BC_ALLOCATOR_DEVICE_H_
12 
13 namespace bc {
14 
15 struct device_tag;
16 struct host_tag;
17 
18 namespace allocators {
19 
20 template<class ValueType, class SystemTag>
22 {
23  using system_tag = SystemTag; //BC tag
24  using value_type = ValueType;
25  using pointer = value_type*;
27 #ifndef _MSC_VER
29 #else
30  //Custom allocators with signed types causes runtime exception inside of MSVC
31  using size_type = int;
32 #endif
34  using const_reference = const value_type&;
35  using propagate_on_container_copy_assignment = std::false_type;
36  using propagate_on_container_move_assignment = std::false_type;
37  using propagate_on_container_swap = std::false_type;
38  using is_always_equal = std::true_type;
39 
40  template<class U>
42  return true;
43  }
44 
45  template<class U>
47  return false;
48  }
49 };
50 
51 template<class ValueType, class SystemTag>
52 class Allocator;
53 
55 template<class T>
56 struct Allocator<T, host_tag>: Basic_Allocator_Base<T, host_tag> {
57 
58  template<class altT>
59  struct rebind { using other = Allocator<altT, host_tag>; };
60 
61  template<class U>
63  Allocator() = default;
64 
65  T* allocate(int size) {
66  return new T[size];
67  }
68 
69  void deallocate(T* t, bc::size_t size) {
70  delete[] t;
71  }
72 };
73 
74 
75 #ifdef __CUDACC__
76 
78 template<class T>
79 struct Allocator<T, device_tag>: Basic_Allocator_Base<T, device_tag> {
80 
81  template<class altT>
82  struct rebind { using other = Allocator<altT, device_tag>; };
83 
84 
85  template<class U>
87  Allocator() = default;
88 
89  T* allocate(std::size_t sz) const
90  {
91  T* data_ptr;
92  unsigned memsz = sizeof(T) * sz;
93 
94  BC_CUDA_ASSERT((cudaMalloc((void**) &data_ptr, memsz)));
95  return data_ptr;
96  }
97 
98  void deallocate(T* data_ptr, std::size_t size) const {
99  BC_CUDA_ASSERT((cudaFree((void*)data_ptr)));
100  }
101 };
102 
103 template<class T>
105  Allocator<T, device_tag>
106 {
108  static constexpr bool managed_memory = true;
109 
110  template<class altT>
111  struct rebind { using other = Device_Managed<altT>; };
112 
114  {
115  T* data = nullptr;
116  unsigned memsz = sizeof(T) * sz;
117 
118  BC_CUDA_ASSERT((cudaMallocManaged((void**) &data, memsz)));
119  BC_CUDA_ASSERT((cudaDeviceSynchronize()));
120  return data;
121  }
122 };
123 
124 
125 #endif /* #ifdef __CUDACC__ */
126 
127 
128 }
129 }
130 
131 #endif
const auto t() const
Definition: expression_operations.h:93
Allocator(const Allocator< U, host_tag > &)
Definition: basic_allocators.h:62
T * allocate(int size)
Definition: basic_allocators.h:65
Allocator(const Allocator< U, device_tag > &)
Definition: basic_allocators.h:86
std::false_type propagate_on_container_swap
Definition: basic_allocators.h:37
std::false_type propagate_on_container_copy_assignment
Definition: basic_allocators.h:35
value_type * pointer
Definition: basic_allocators.h:25
T value_type
Definition: basic_allocators.h:24
Definition: common.h:32
void deallocate(T *t, bc::size_t size)
Definition: basic_allocators.h:69
bool operator!=(const Basic_Allocator_Base< U, SystemTag > &) const
Definition: basic_allocators.h:46
int size_t
Definition: common.h:283
#define BC_CUDA_ASSERT(...)
Definition: common.h:194
std::true_type is_always_equal
Definition: basic_allocators.h:38
Definition: allocators.h:20
value_type & reference
Definition: basic_allocators.h:33
T * allocate(bc::size_t sz)
Definition: basic_allocators.h:113
Definition: basic_allocators.h:111
void deallocate(T *data_ptr, std::size_t size) const
Definition: basic_allocators.h:98
T * allocate(std::size_t sz) const
Definition: basic_allocators.h:89
value_type * const_pointer
Definition: basic_allocators.h:26
std::size_t size_type
Definition: basic_allocators.h:28
Definition: common.h:26
bool operator==(const Basic_Allocator_Base< U, SystemTag > &) const
Definition: basic_allocators.h:41
const value_type & const_reference
Definition: basic_allocators.h:34
Definition: basic_allocators.h:21
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
Definition: basic_allocators.h:104
std::false_type propagate_on_container_move_assignment
Definition: basic_allocators.h:36