BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
tensors.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 #include "common.h"
10 #include "shape.h"
11 #include "type_traits.h"
12 #include "allocator.h"
13 #include "streams.h"
14 #include "blas.h"
15 #include "utility.h"
16 #include "operations.h"
17 #include "algorithms.h"
18 #include "random.h"
19 
20 #include "tensors/tensors.h"
21 
22 namespace bc {
23  using namespace bc::tensors; //import all
24 }
Definition: cmath.h:15
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22