Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Ddot_decomposer.cc68 const int64 lhs_cols = lhs_shape.dimensions(num_batch_dims + 1); 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.cc4641 int64 lhs_cols = (spec.lcd == 0) ? spec.m : (spec.k + k_increase); in TEST_P() local
4642 Shape lhs_shape = ShapeUtil::MakeShape(F32, {lhs_rows, lhs_cols}); in TEST_P()
4646 /*cols=*/lhs_cols))); in TEST_P()
4711 int64 lhs_cols = (spec.lcd == 0) ? spec.m : spec.k; in TEST_P() local
4712 Shape lhs_shape = ShapeUtil::MakeShape(F32, {lhs_rows, lhs_cols}); in TEST_P()
4716 /*cols=*/lhs_cols))); in TEST_P()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Druntime_single_threaded_matmul.cc40 int64 lhs_cols = k; in MatMul() local
42 std::swap(lhs_rows, lhs_cols); in MatMul()
52 lhs_cols); in MatMul()
Druntime_matmul.cc46 int64 lhs_cols = k; in MatMul() local
48 std::swap(lhs_rows, lhs_cols); in MatMul()
58 lhs_cols); in MatMul()
/external/tensorflow/tensorflow/core/kernels/
Dmkl_batch_matmul_op.cc79 auto lhs_cols = lhs.dim_size(ndims - 1); in Compute() local
82 if (adj_x_) std::swap(lhs_rows, lhs_cols); in Compute()
84 OP_REQUIRES(ctx, lhs_cols == rhs_rows, in Compute()
86 "lhs mismatch rhs shape: ", lhs_cols, " vs. ", rhs_rows, in Compute()