BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
common.h
Go to the documentation of this file.
1 /* Project: BlackCat_Tensors
2  * Author: JosephJaspers
3  * Copyright 2018
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 
9 #ifndef STL_tensor_iterator_dim_COMMON_H_
10 #define STL_tensor_iterator_dim_COMMON_H_
11 
12 #include <iterator>
13 
14 namespace bc {
15 namespace tensors {
16 namespace iterators {
17 
18 enum direction {
19  forward = 1,
20  reverse = -1
21 };
22 
23 enum initpos {
24  start=0,
25  end=1
26 };
27 
28 template<class T>
29 struct iterator_traits: std::iterator_traits<T> {
30 
31  using system_tag =
34 };
35 
36 
37 
38 }
39 }
40 }
41 
42 
43 
44 #endif /* STL_tensor_iterator_dim_COMMON_H_ */
bc::traits::conditional_detected_t< bc::traits::query_system_tag, T, host_tag > system_tag
Definition: common.h:33
typename T::system_tag query_system_tag
Definition: type_traits.h:179
initpos
Definition: common.h:23
typename conditional_detected< func, TestType, DefaultType >::type conditional_detected_t
Definition: type_traits.h:87
Definition: common.h:20
direction
Definition: common.h:18
Definition: common.h:24
Definition: common.h:19
Definition: common.h:26
Definition: common.h:25
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22