Home
last modified time | relevance | path

Searched refs:lhs_rows (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Ddot_decomposer.cc67 const int64 lhs_rows = lhs_shape.dimensions(num_batch_dims + 0); in DecomposeBatchDot() local
70 ShapeUtil::MakeShape(lhs_type, {batch_size, lhs_rows, lhs_cols}); in DecomposeBatchDot()
72 ShapeUtil::MakeShape(lhs_type, {1, lhs_rows, lhs_cols}); in DecomposeBatchDot()
74 ShapeUtil::MakeShape(lhs_type, {lhs_rows, lhs_cols}); in DecomposeBatchDot()
108 {i + 1, lhs_rows, lhs_cols}, {1, 1, 1})); in DecomposeBatchDot()
122 ShapeUtil::MakeShape(lhs_type, {lhs_cols, lhs_rows}); in DecomposeBatchDot()
Dalgebraic_simplifier_test.cc4640 int64 lhs_rows = (spec.lcd == 0) ? (spec.k + k_increase) : spec.m; in TEST_P() local
4642 Shape lhs_shape = ShapeUtil::MakeShape(F32, {lhs_rows, lhs_cols}); in TEST_P()
4645 /*from=*/10.0, /*to=*/10000.0, /*rows=*/lhs_rows, in TEST_P()
4710 int64 lhs_rows = (spec.lcd == 0) ? spec.k : spec.m; in TEST_P() local
4712 Shape lhs_shape = ShapeUtil::MakeShape(F32, {lhs_rows, lhs_cols}); in TEST_P()
4715 /*from=*/10.0, /*to=*/10000.0, /*rows=*/lhs_rows, in TEST_P()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Druntime_single_threaded_matmul.cc39 int64 lhs_rows = m; in MatMul() local
42 std::swap(lhs_rows, lhs_cols); in MatMul()
51 const Eigen::TensorMap<Eigen::Tensor<const T, 2>, Alignment> A(lhs, lhs_rows, in MatMul()
Druntime_matmul.cc45 int64 lhs_rows = m; in MatMul() local
48 std::swap(lhs_rows, lhs_cols); in MatMul()
57 const Eigen::TensorMap<Eigen::Tensor<const T, 2>, Alignment> A(lhs, lhs_rows, in MatMul()
/external/tensorflow/tensorflow/core/kernels/
Dmkl_batch_matmul_op.cc78 auto lhs_rows = lhs.dim_size(ndims - 2); in Compute() local
82 if (adj_x_) std::swap(lhs_rows, lhs_cols); in Compute()
89 out_shape.AddDim(lhs_rows); in Compute()