Home | History | Annotate | Download | only in test

Lines Matching refs:RowMajor

15 using Eigen::RowMajor;
20 Tensor<int, 0, RowMajor> scalar2;
23 TensorMap<Tensor<const int, 0, RowMajor> > scalar4(scalar2.data());
38 Tensor<int, 1, RowMajor> vec2(6);
41 TensorMap<Tensor<const int, 1, RowMajor> > vec4(vec2.data(), 6);
72 Tensor<int, 2, RowMajor> mat2(2,3);
89 TensorMap<Tensor<const int, 2, RowMajor> > mat4(mat2.data(), 2, 3);
119 Tensor<int, 3, RowMajor> mat2(2,3,7);
133 TensorMap<Tensor<const int, 3, RowMajor> > mat4(mat2.data(), 2, 3, 7);
163 Tensor<int, 3, RowMajor> mat2(2,3,7);
177 TensorMap<Tensor<int, 3, RowMajor> > mat4(mat2);