tesseract++ 0.0.1
N-dimensional tensor library for embedded systems
Loading...
Searching...
No Matches
fused_tensor_traits.h
Go to the documentation of this file.
1#pragma once
2
3template <typename T, my_size_t... Dims>
4class FusedTensorND; // forward declarations
5
6namespace expression
7{
8 template <typename T, my_size_t... Dims>
9 struct traits<FusedTensorND<T, Dims...>>
10 {
11 static constexpr bool IsPermuted = false;
12 static constexpr bool IsContiguous = true;
13 static constexpr bool IsPhysical = true;
14 };
15
16} // namespace expression
Definition fused_tensor.h:31
#define my_size_t
Size/index type used throughout the library.
Definition config.h:126
Definition basic_expr_traits.h:4
Definition basic_expr_traits.h:6