Home
last modified time | relevance | path

Searched refs:GetProgramShape (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
Dcompile_mlir_util_test.cc68 compilation_result.computation->GetProgramShape().ValueOrDie()); in TEST()
140 compilation_result.computation->GetProgramShape().ValueOrDie()); in TEST()
178 compilation_result.computation->GetProgramShape().ValueOrDie()); in TEST()
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_computation.cc26 StatusOr<ProgramShape> XlaComputation::GetProgramShape() const { in GetProgramShape() function in xla::XlaComputation
Dxla_computation.h46 StatusOr<ProgramShape> GetProgramShape() const;
Dxla_builder.cc201 StatusOr<ProgramShape> XlaBuilder::GetProgramShape(int64 root_id) const { in GetProgramShape() function in xla::XlaBuilder
232 StatusOr<ProgramShape> XlaBuilder::GetProgramShape() const { in GetProgramShape() function in xla::XlaBuilder
234 return GetProgramShape(instructions_.back().id()); in GetProgramShape()
237 StatusOr<ProgramShape> XlaBuilder::GetProgramShape(XlaOp root) const { in GetProgramShape() function in xla::XlaBuilder
241 return GetProgramShape(root.handle()); in GetProgramShape()
404 TF_ASSIGN_OR_RETURN(ProgramShape program_shape, GetProgramShape(root_id)); in Build()
724 computation.GetProgramShape()); in Call()
1690 computation.GetProgramShape()); in Map()
1761 TF_ASSIGN_OR_RETURN(const auto& body_program_shape, body.GetProgramShape()); in While()
1763 condition.GetProgramShape()); in While()
[all …]
Dclient.cc446 TF_ASSIGN_OR_RETURN(const auto& result, computation.GetProgramShape()); in GetComputationShape()
Dxla_builder.h284 StatusOr<ProgramShape> GetProgramShape() const;
288 StatusOr<ProgramShape> GetProgramShape(XlaOp root) const;
666 StatusOr<ProgramShape> GetProgramShape(int64 root_id) const;
/external/tensorflow/tensorflow/compiler/xla/tests/
Daxpy_simple_test.cc65 TF_ASSERT_OK_AND_ASSIGN(ProgramShape shape, builder.GetProgramShape()); in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/
Drng_expander.cc114 xla_computation.GetProgramShape()); in GetComputationForRng()
Dcholesky_expander.cc240 xla_computation.GetProgramShape()); in ExpandInstruction()
Dtriangular_solve_expander.cc511 xla_computation.GetProgramShape()); in ExpandInstruction()
Dhlo_creation_utils.cc369 TF_ASSIGN_OR_RETURN(ProgramShape program_shape, comparator.GetProgramShape()); in MakeSortHlo()
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client.py591 def GetProgramShape(self): member in Computation
592 return self._c_computation.GetProgramShape()
595 return self._c_computation.GetProgramShape().result_shape()
Dxla.cc775 .def("GetProgramShape", &XlaComputation::GetProgramShape) in PYBIND11_MODULE()
800 return root ? builder.GetProgramShape(*root) in PYBIND11_MODULE()
801 : builder.GetProgramShape(); in PYBIND11_MODULE()
Dlocal_client.cc1054 computation.GetProgramShape()); in Compile()
1089 computation.GetProgramShape()); in Compile()
/external/tensorflow/tensorflow/compiler/xla/python/tpu_driver/client/
Dtpu_client.cc776 << computation.GetProgramShape().ValueOrDie().DebugString(); in Compile()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_compiler.cc398 computation->GetProgramShape()); in BuildComputation()
/external/tensorflow/tensorflow/compiler/xrt/tests/
Draw_api_test.cc1109 auto result_shape = xla_computation.GetProgramShape().ValueOrDie().result(); in TEST()