v0.14.0
Layout.hpp
Go to the documentation of this file.
1 /* A simple enum to select what kind of storage order you want.
2  Useful if you're mixing these classes with libraries with something
3  that has row-major (not C/C++ standard) ordering like Fortran or
4  some graphics libraries (Direct-X?). */
5 
6 #pragma once
7 
8 namespace FTensor
9 {
10  enum Layout
11  {
14  };
15 }
FTensor
JSON compatible output.
Definition: Christof_constructor.hpp:6
FTensor::Layout
Layout
Definition: Layout.hpp:10
FTensor::row_major
@ row_major
Definition: Layout.hpp:13
FTensor::column_major
@ column_major
Definition: Layout.hpp:12