BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
logging_stream.h
Go to the documentation of this file.
1 /*
2  * Logging_Stream.h
3  *
4  * Created on: Jul 26, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKAT_TENSORS_STREAMS_LOGGING_STREAM_H_
9 #define BLACKAT_TENSORS_STREAMS_LOGGING_STREAM_H_
10 
11 namespace bc {
12 
13 struct host_tag;
14 struct device_tag;
15 
16 namespace streams {
17 
35 template<class SystemTag>
37 
38 #ifdef __CUDACC__
39 
40 template<>
42 
43  //This is required for matching the interface of Stream<device_tag>
44  cublasHandle_t get_cublas_handle() const {
45  return cublasHandle_t();
46  }
47 
48  operator cudaStream_t() const {
49  return cudaStream_t();
50  }
51 };
52 
53 #endif
54 
55 template<class SystemTag>
56 struct Logging_Stream: Logging_Stream_Base<SystemTag> {
57 
58  using system_tag = SystemTag;
63 
65 
67  return allocator;
68  }
69 
70  template<class ValueType>
71  auto get_allocator_rebound() const {
72  return typename allocator_type::template
73  rebind<ValueType>::other(allocator);
74  }
75 
77  void set_blas_pointer_mode_host() const {};
78 
79  unsigned get_max_allocated() const {
80  return allocator.info->max_allocated;
81  }
82  unsigned get_current_allocated() const {
83  return allocator.info->current_allocated;
84  }
85 
86  bool is_default() { return false; }
87  void create() {}
88  void destroy() {}
89  void sync() {}
90 
91  template<class T>
92  void set_stream(const T&) {}
93 
94  void record_event() {}
95 
96  template<class T>
97  void wait_event(const T&) {}
98 
99  template<class T>
100  void wait_stream(const T&) {}
101 
102  template<class Functor>
103  void enqueue(const Functor& functor) {}
104 
105  template<class Functor>
106  void enqueue_callback(const Functor& functor) {}
107 
109  return true;
110  }
111  bool operator != (const Logging_Stream<SystemTag>& dev) {
112  return false;
113  }
114 };
115 
116 } // namespace streams
117 } // namespace BC
118 
119 #endif /* LOGGING_STREAM_H_ */
void enqueue(const Functor &functor)
Definition: logging_stream.h:103
A Logging_Stream object does not actually allocate any memory.
Definition: logging_stream.h:36
Definition: null_allocator.h:15
allocator_type get_allocator() const
Definition: logging_stream.h:66
void sync()
Definition: logging_stream.h:89
void record_event()
Definition: logging_stream.h:94
bool is_default()
Definition: logging_stream.h:86
SystemTag system_tag
Definition: logging_stream.h:58
Definition: common.h:32
void wait_stream(const T &)
Definition: logging_stream.h:100
cublasHandle_t get_cublas_handle() const
Definition: logging_stream.h:44
unsigned get_max_allocated() const
Definition: logging_stream.h:79
std::shared_ptr< detail::log_info > info
Definition: logging_allocator.h:37
void wait_event(const T &)
Definition: logging_stream.h:97
unsigned get_current_allocated() const
Definition: logging_stream.h:82
Definition: allocators.h:17
void set_blas_pointer_mode_host() const
Definition: logging_stream.h:77
void set_blas_pointer_mode_device() const
Definition: logging_stream.h:76
Definition: logging_stream.h:56
void destroy()
Definition: logging_stream.h:88
auto get_allocator_rebound() const
Definition: logging_stream.h:71
auto operator==(const Expression_Base< Xpr > &param) const
Definition: expression_operations.h:38
void set_stream(const T &)
Definition: logging_stream.h:92
void create()
Definition: logging_stream.h:87
allocator_type allocator
Definition: logging_stream.h:64
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
void enqueue_callback(const Functor &functor)
Definition: logging_stream.h:106