Tensor
A C++ expression template library for computations on N dimensional tensors
tensor_expressions.hpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------------------------------------
2 /// @file Header file for tensor expressions for the tensor library -- includes all partial specializations
3 /// for the tensor expressions. The file is intended to be included in an aplication where all tensor
4 /// expression functionality is required. It will reduce compilation time, so when using a specific
5 /// expression implementation -- say static contatiers with a GPU -- include only that file.
6 // ----------------------------------------------------------------------------------------------------------
7 
8 /*
9  * ----------------------------------------------------------------------------------------------------------
10  * Tensor is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published
12  * by the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * Tensor is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with tensor; if not, write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  * ----------------------------------------------------------------------------------------------------------
24  */
25 
26 #ifndef FTL_TENSOR_EXPRESSIONS_HPP
27 #define FTL_TENSOR_EXPRESSIONS_HPP
28 
31 
32 #endif // FTL_TENSOR_EXPRESSIONS_HPP
33