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

  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
runtime_matmul.cc 45 int64 lhs_rows = m; local
48 std::swap(lhs_rows, lhs_cols);
57 const Eigen::TensorMap<Eigen::Tensor<const T, 2>, Alignment> A(lhs, lhs_rows,
runtime_single_threaded_matmul.cc 39 int64 lhs_rows = m; local
42 std::swap(lhs_rows, lhs_cols);
51 const Eigen::TensorMap<Eigen::Tensor<const T, 2>, Alignment> A(lhs, lhs_rows,
  /external/tensorflow/tensorflow/compiler/xla/service/
dot_decomposer.cc 67 const int64 lhs_rows = lhs_shape.dimensions(num_batch_dims + 0); 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 4640 int64 lhs_rows = (spec.lcd == 0) ? (spec.k + k_increase) : spec.m; local
4710 int64 lhs_rows = (spec.lcd == 0) ? spec.k : spec.m; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
mkl_batch_matmul_op.cc 78 auto lhs_rows = lhs.dim_size(ndims - 2); variable
82 if (adj_x_) std::swap(lhs_rows, lhs_cols);
89 out_shape.AddDim(lhs_rows);

Completed in 52 milliseconds