Home
last modified time | relevance | path

Searched refs:col_major (Results 1 – 6 of 6) sorted by relevance

/external/eigen/unsupported/test/
Dcxx11_tensor_assign.cpp28 int col_major[6]; in test_1d() local
30 memset(col_major, 0, 6*sizeof(int)); in test_1d()
32 TensorMap<Tensor<int, 1> > vec3(col_major, 6); in test_1d()
91 int col_major[6]; in test_2d() local
93 memset(col_major, 0, 6*sizeof(int)); in test_2d()
96 TensorMap<Tensor<int, 2, RowMajor> > mat4(col_major, 2, 3); in test_2d()
151 int col_major[2*3*7]; in test_3d() local
153 memset(col_major, 0, 2*3*7*sizeof(int)); in test_3d()
155 TensorMap<Tensor<int, 3> > mat3(col_major, 2, 3, 7); in test_3d()
/external/eigen/bench/btl/libs/mtl4/
Dmtl4_interface.hh38 typedef mtl::dense2D<real, mtl::matrix::parameters<mtl::tag::col_major> > gene_matrix;
/external/eigen/bench/
DBenchSparseUtil.h86 typedef mtl::compressed2D<Scalar, mtl::matrix::parameters<mtl::tag::col_major> > MtlSparse;
/external/tensorflow/tensorflow/compiler/xla/service/
Dlayout_assignment_test.cc139 const ShapeLayout col_major(col_major_shape); in TEST_F() local
147 *computation_layout.mutable_parameter_layout(0) = col_major; in TEST_F()
149 *computation_layout.mutable_result_layout() = col_major; in TEST_F()
/external/elfutils/libdw/
Dknown-dwarf.h544 DWARF_ONE_KNOWN_DW_ORD (col_major, DW_ORD_col_major) \
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DREADME.md132 Tensor<float, 3, ColMajor> col_major; // equivalent to Tensor<float, 3>
142 Tensor<float, 2, ColMajor> col_major(2, 4);
145 Tensor<float, 2> col_major_result = col_major; // ok, layouts match