BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
streams.h
Go to the documentation of this file.
1 /*
2  * Stream.h
3  *
4  * Created on: Jan 24, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BC_CONTEXT_CONTEXT_H_
9 #define BC_CONTEXT_CONTEXT_H_
10 
11 #include "../common.h"
12 #include "stream_synchronization.h"
13 #include "host.h"
14 #include "device.h"
15 #include "logging_stream.h"
16 
17 namespace bc {
18 
20 
21 namespace streams {
22 
23 template<class T>
24 static auto select_on_get_stream(const T& type) {
25  using traits_t = bc::traits::common_traits<T>;
26  using system_tag = typename traits_t::system_tag;
27 
28  constexpr bool defines_get_stream = traits_t::defines_get_stream::value;
29 
30  return bc::traits::constexpr_ternary<defines_get_stream>(
31  bc::traits::bind([](const auto& type) {
32  return type.get_stream();
33  }, type),
34  []() {
36  }
37  );
38 }
39 
40 template<class>
41 struct Logging_Stream;
42 
43 template<class SystemTag>
44 static auto select_logging_stream(Stream<SystemTag> stream) {
45  return Logging_Stream<SystemTag>();
46 }
47 
48 template<class SystemTag>
49 static auto select_logging_stream(Logging_Stream<SystemTag> stream) {
50  return stream;
51 }
52 
53 }
54 }
55 
56 
57 #endif /* CONTEXT_H_ */
Bind< Function, Args &&... > bind(Function function, Args &&... args)
Definition: bind.h:105
Definition: type_traits.h:190
Definition: device.h:27
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22