HomeSort by relevance Sort by last modified time
    Searched refs:lhs_cols (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
runtime_matmul.cc 46 int64 lhs_cols = k; local
48 std::swap(lhs_rows, lhs_cols);
58 lhs_cols);
runtime_single_threaded_matmul.cc 40 int64 lhs_cols = k; local
42 std::swap(lhs_rows, lhs_cols);
52 lhs_cols);
  /external/tensorflow/tensorflow/compiler/xla/service/
dot_decomposer.cc 68 const int64 lhs_cols = lhs_shape.dimensions(num_batch_dims + 1); local
70 ShapeUtil::MakeShape(lhs_type, {batch_size, lhs_rows, lhs_cols});
72 ShapeUtil::MakeShape(lhs_type, {1, lhs_rows, lhs_cols});
74 ShapeUtil::MakeShape(lhs_type, {lhs_rows, lhs_cols});
108 {i + 1, lhs_rows, lhs_cols}, {1, 1, 1}));
122 ShapeUtil::MakeShape(lhs_type, {lhs_cols, lhs_rows});
algebraic_simplifier_test.cc 4641 int64 lhs_cols = (spec.lcd == 0) ? spec.m : (spec.k + k_increase); local
4711 int64 lhs_cols = (spec.lcd == 0) ? spec.m : spec.k; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
mkl_batch_matmul_op.cc 79 auto lhs_cols = lhs.dim_size(ndims - 1); variable
82 if (adj_x_) std::swap(lhs_rows, lhs_cols);
84 OP_REQUIRES(ctx, lhs_cols == rhs_rows,
86 "lhs mismatch rhs shape: ", lhs_cols, " vs. ", rhs_rows,

Completed in 165 milliseconds