v0.14.0
Loading...
Searching...
No Matches
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
8namespace FTensor
9{
10 enum Layout
11 {
14 };
15}
Tensors class implemented by Walter Landry.
Definition: FTensor.hpp:51
@ row_major
Definition: Layout.hpp:13
@ column_major
Definition: Layout.hpp:12