tesseract++ 0.0.1
N-dimensional tensor library for embedded systems
Loading...
Searching...
No Matches
fused_matrix_traits.h
Go to the documentation of this file.
1#pragma once
2
3template <typename T, my_size_t Rows, my_size_t Cols>
4class FusedMatrix; // forward declarations
5
6namespace expression
7{
8 template <typename T, my_size_t Rows, my_size_t Cols>
9 struct traits<FusedMatrix<T, Rows, Cols>>
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_matrix.h:12
Definition basic_expr_traits.h:4
Definition basic_expr_traits.h:6