-
#include "tensorstore/index_space/output_index_method.h"
- enum class tensorstore::OutputIndexMethod;
Specifies the method by which the index into a given output dimension of an index transform is computed from the input indices.
- enumerator constant;¶
Output index is equal to the constant
offset
and does not depend on any input dimensions.
- enumerator single_input_dimension;¶
Output index is equal to
offset + stride * input[input_dimension]
.
- enumerator array;¶
Output index is equal to
offset + stride * array(input)
.
Related Functions¶
-
std::ostream&
tensorstore::operator<<(std::ostream& os, OutputIndexMethod method); Prints to an output stream.