Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Ddot_decomposer.cc79 const int64 rhs_cols = rhs_shape.dimensions(num_batch_dims + 1); in DecomposeBatchDot() local
81 ShapeUtil::MakeShape(rhs_type, {batch_size, rhs_rows, rhs_cols}); in DecomposeBatchDot()
83 ShapeUtil::MakeShape(rhs_type, {1, rhs_rows, rhs_cols}); in DecomposeBatchDot()
85 ShapeUtil::MakeShape(rhs_type, {rhs_rows, rhs_cols}); in DecomposeBatchDot()
115 {i + 1, rhs_rows, rhs_cols}, {1, 1, 1})); in DecomposeBatchDot()
129 ShapeUtil::MakeShape(rhs_type, {rhs_cols, rhs_rows}); in DecomposeBatchDot()
Dalgebraic_simplifier_test.cc4663 int64 rhs_cols = (spec.rcd == 0) ? spec.n : spec.k; in TEST_P() local
4664 Shape rhs_shape = ShapeUtil::MakeShape(F32, {rhs_rows, rhs_cols}); in TEST_P()
4668 /*cols=*/rhs_cols))); in TEST_P()
4722 int64 rhs_cols = (spec.rcd == 0) ? spec.n : (spec.k + k_increase); in TEST_P() local
4723 Shape rhs_shape = ShapeUtil::MakeShape(F32, {rhs_rows, rhs_cols}); in TEST_P()
4727 /*cols=*/rhs_cols))); in TEST_P()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Druntime_single_threaded_matmul.cc46 int64 rhs_cols = n; in MatMul() local
48 std::swap(rhs_rows, rhs_cols); in MatMul()
54 rhs_cols); in MatMul()
Druntime_matmul.cc52 int64 rhs_cols = n; in MatMul() local
54 std::swap(rhs_rows, rhs_cols); in MatMul()
60 rhs_cols); in MatMul()
/external/tensorflow/tensorflow/core/kernels/
Dmkl_batch_matmul_op.cc81 auto rhs_cols = rhs.dim_size(ndims - 1); in Compute() local
83 if (adj_y_) std::swap(rhs_rows, rhs_cols); in Compute()
90 out_shape.AddDim(rhs_cols); in Compute()