Home
last modified time | relevance | path

Searched refs:y_batch_size (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/core/util/
Dmatmul_bcast_test.cc44 EXPECT_EQ(4, bcast.y_batch_size()); in TEST()
57 EXPECT_EQ(1, bcast.y_batch_size()); in TEST()
70 EXPECT_EQ(48, bcast.y_batch_size()); in TEST()
83 EXPECT_EQ(6, bcast1.y_batch_size()); in TEST()
92 EXPECT_EQ(1, bcast2.y_batch_size()); in TEST()
122 EXPECT_EQ(4, bcast.y_batch_size()); in TEST()
134 EXPECT_EQ(4, bcast.y_batch_size()); in TEST()
Dmatmul_bcast.h71 const int64 y_batch_size() const { return y_batch_size_; } in y_batch_size() function
/external/tensorflow/tensorflow/core/kernels/
Dmatmul_op_impl.h348 b_device_memory.reserve(bcast.y_batch_size());
361 std::min(bcast.x_batch_size(), bcast.y_batch_size()) == 1;
367 b_stride = bcast.y_batch_size() != 1 ? k * n : 0;
390 for (int64 i = 0; i < bcast.y_batch_size(); ++i) {
520 b_device_memory.reserve(bcast.y_batch_size());
534 std::min(bcast.x_batch_size(), bcast.y_batch_size()) == 1;
540 b_stride = bcast.y_batch_size() != 1 ? k * n : 0;
563 for (int64 i = 0; i < bcast.y_batch_size(); ++i) {
697 in1_reshaped.CopyFrom(in1, TensorShape({bcast.y_batch_size(), d2, d3})),
/external/tensorflow/tensorflow/core/kernels/linalg/
Dmatrix_triangular_solve_op_impl.h188 in1_reshaped.CopyFrom(in1, TensorShape({bcast.y_batch_size(), d2, d3})),
273 bcast.y_batch_size() * m * n * sizeof(Scalar))
282 for (int64 i = 0; i < bcast.y_batch_size(); ++i) {
Dbanded_triangular_solve_op.cc243 in1_reshaped.CopyFrom(in1, TensorShape({bcast.y_batch_size(), d2, d3})), in Compute()
Deinsum_op_impl.h563 TF_RETURN_IF_ERROR(ReshapeToRank3(inputs[1], bcast.y_batch_size(), &rhs)); in ContractOperands()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dunroll_batch_matmul.cc288 sliceInput(input_rhs, bcast.y_batch_size(), loc, rewriter); in matchAndRewrite()
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dunroll_batch_matmul.cc206 SliceInput(input_rhs, base_name, "b", bcast.y_batch_size(), input_array_b, in Run()
/external/tensorflow/tensorflow/python/keras/
Dbackend.py2078 y_batch_size = y_shape[0]
2080 if x_batch_size is not None and y_batch_size is not None:
2081 if x_batch_size != y_batch_size: