Home
last modified time | relevance | path

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

/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.cc154 StatusOr<ProgramShape> XlaBuilder::GetProgramShape(int64 root_id) const { in GetProgramShape() function in xla::XlaBuilder
185 StatusOr<ProgramShape> XlaBuilder::GetProgramShape() const { in GetProgramShape() function in xla::XlaBuilder
187 return GetProgramShape(instructions_.back().id()); in GetProgramShape()
190 StatusOr<ProgramShape> XlaBuilder::GetProgramShape(XlaOp root) const { in GetProgramShape() function in xla::XlaBuilder
194 return GetProgramShape(root.handle()); in GetProgramShape()
351 TF_ASSIGN_OR_RETURN(ProgramShape program_shape, GetProgramShape(root_id)); in Build()
620 computation.GetProgramShape()); in Call()
1752 computation.GetProgramShape()); in Map()
1825 TF_ASSIGN_OR_RETURN(const auto& body_program_shape, body.GetProgramShape()); in While()
1827 condition.GetProgramShape()); in While()
[all …]
Dclient.cc446 TF_ASSIGN_OR_RETURN(const auto& result, computation.GetProgramShape()); in GetComputationShape()
Dxla_builder.h251 StatusOr<ProgramShape> GetProgramShape() const;
255 StatusOr<ProgramShape> GetProgramShape(XlaOp root) const;
626 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/python/
Dlocal_computation_builder.cc400 StatusOr<ProgramShape> Computation::GetProgramShape() const { in GetProgramShape() function in xla::swig::Computation
401 return computation_.GetProgramShape(); in GetProgramShape()
405 TF_ASSIGN_OR_RETURN(ProgramShape shape, computation_.GetProgramShape()); in GetReturnValueShape()
442 TF_ASSIGN_OR_RETURN(ProgramShape program_shape, builder_.GetProgramShape()); in GetReturnValueShape()
Dlocal_computation_builder.h178 StatusOr<ProgramShape> GetProgramShape() const;
Dlocal_computation_builder.i278 %unignore xla::swig::Computation::GetProgramShape;
Dxla_client.py794 def GetProgramShape(self): member in Computation
795 return _wrap_program_shape(self._c_computation.GetProgramShape())
/external/tensorflow/tensorflow/compiler/xla/service/
Dcholesky_expander.cc246 xla_computation.GetProgramShape()); in ExpandInstruction()
Dtriangular_solve_expander.cc494 xla_computation.GetProgramShape()); in ExpandInstruction()
Dhlo_creation_utils.cc300 TF_ASSIGN_OR_RETURN(ProgramShape program_shape, comparator.GetProgramShape()); in MakeSortHlo()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_compiler.cc324 computation->GetProgramShape()); in BuildComputation()
/external/tensorflow/tensorflow/compiler/xrt/tests/
Draw_api_test.cc813 auto result_shape = xla_computation.GetProgramShape().ValueOrDie().result(); in TEST()