Home
last modified time | relevance | path

Searched refs:DotGeneral (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/tests/
Ddot_operation_test.cc664 DotGeneral(x, y, dnums); in XLA_TYPED_TEST()
699 DotGeneral(x, y, dnums); in XLA_TYPED_TEST()
732 DotGeneral(x, y, dnums); in XLA_TYPED_TEST()
768 DotGeneral(x, y, dnums); in XLA_TYPED_TEST()
970 DotGeneral(dynamic_slice, rhs_constant, dot_dnums); in XLA_TEST_F()
998 DotGeneral(lhs_constant, dynamic_slice, dot_dnums); in XLA_TEST_F()
1028 DotGeneral(dynamic_slice, rhs_constant, dot_dnums); in XLA_TEST_F()
1056 DotGeneral(lhs_constant, dynamic_slice, dot_dnums); in XLA_TEST_F()
1089 DotGeneral(dynamic_slice, rhs_constant, dot_dnums); in XLA_TEST_F()
1122 DotGeneral(lhs_constant, dynamic_slice, dot_dnums); in XLA_TEST_F()
[all …]
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dresampler_ops.cc410 auto bottom_right_minus_bottom_left = xla::DotGeneral( in CalculateGradWarp()
418 auto top_right_minus_top_left = xla::DotGeneral( in CalculateGradWarp()
426 auto bottom_right_minus_top_right = xla::DotGeneral( in CalculateGradWarp()
434 auto bottom_left_minus_top_left = xla::DotGeneral( in CalculateGradWarp()
547 auto blended_pixels = xla::DotGeneral(weights, neighbors_data, dot_dims, in Compile()
Dxla_dot_op.cc50 xla::XlaOp output = xla::DotGeneral(context->Input(0), context->Input(1), in Compile()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_cost_analysis_test.cc165 TEST_F(HloCostAnalysisTest, DotGeneral) { in TEST_F() argument
176 DotGeneral(lhs, rhs, dnums); in TEST_F()
212 DotGeneral(lhs, rhs, dnums); in TEST_F()
242 DotGeneral(lhs, rhs, dnums); in TEST_F()
Dtriangular_solve_expander.cc350 auto update = -DotGeneral(input_row, body_out, dnums, &precision_proto); in InvertDiagonalBlocks()
Dshape_inference_test.cc1559 TEST_F(ShapeInferenceTest, DotGeneral) { in TEST_F() argument
/external/tensorflow/tensorflow/compiler/xla/python/
Dops.cc148 ops.def("DotGeneral", &DotGeneral, py::arg("lhs"), py::arg("rhs"), in BuildOpsSubmodule()
Dxla_client_test.py713 ops.DotGeneral(
729 ops.DotGeneral(
743 ops.DotGeneral(
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder_test.cc836 DotGeneral(lhs, rhs, dnums); in TEST_F()
1093 DotGeneral(p0, p1, dnums, /*precision_config=*/nullptr, in TEST_F()
Dxla_builder.h528 XlaOp DotGeneral(
1122 friend XlaOp DotGeneral(XlaOp lhs, XlaOp rhs,
1862 XlaOp DotGeneral(
Dxla_builder.cc1295 return DotGeneral(lhs, rhs, dimension_numbers, precision_config); in Dot()
1299 XlaOp XlaBuilder::DotGeneral( in DotGeneral() function in xla::XlaBuilder
4304 XlaOp DotGeneral(const XlaOp lhs, const XlaOp rhs, in DotGeneral() function
4308 return lhs.builder()->DotGeneral(lhs, rhs, dimension_numbers, in DotGeneral()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmatrix.cc514 auto dot = DotGeneral(x, y, dnums, &precision_proto); in Einsum()
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Doperation_semantics.md993 ## DotGeneral section in Operation Semantics
996 [`XlaBuilder::DotGeneral`](https://www.tensorflow.org/code/tensorflow/compiler/xla/client/xla_build…
998 <b> `DotGeneral(lhs, rhs, dimension_numbers)` </b>
1016 DotGeneral performs the sum of products over contracting dimensions specified
1035 DotGeneral(lhs, rhs, dnums) -> { {6.0, 12.0},
1061 DotGeneral(lhs, rhs, dnums) -> { { {1.0, 2.0},
/external/tensorflow/tensorflow/compiler/xrt/tests/
Draw_api_test.cc297 xla::DotGeneral(p0, p1, ddn); in Dot()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/ir/
Dtf_generated_ops.td17686 let summary = "Wraps the XLA DotGeneral operator, documented at";