Home
last modified time | relevance | path

Searched refs:TF_DCHECK_OK (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/
Dshape_util.cc211 TF_DCHECK_OK(ShapeUtil::ValidateShape(shape)); in MakeShapeWithSparseLayout()
244 TF_DCHECK_OK(ValidateShapeWithOptionalLayout(result)); in MakeTupleShape()
251 TF_DCHECK_OK(ValidateShapeWithOptionalLayout(result)); in MakeOpaqueShape()
258 TF_DCHECK_OK(ValidateShapeWithOptionalLayout(result)); in MakeTokenShape()
264 TF_DCHECK_OK(ValidateShapeWithOptionalLayout(shape)); in AppendShapeToTuple()
272 TF_DCHECK_OK(ValidateShape(*shape)); in AppendMajorDimension()
347 TF_DCHECK_OK(ValidateShapeWithOptionalLayout(shape.tuple_shapes(index))); in GetTupleElementShape()
360 TF_DCHECK_OK(ValidateShapeWithOptionalLayout(tuple)); in SliceTuple()
572 TF_DCHECK_OK(ValidateShape(shape)); in ByteSizeOf()
593 TF_DCHECK_OK(ValidateShape(shape)); in ByteSizeOfTupleIndexTable()
[all …]
/external/tensorflow/tensorflow/core/lib/core/
Dstatus.h161 #define TF_DCHECK_OK(val) TF_CHECK_OK(val) macro
163 #define TF_DCHECK_OK(val) \ macro
/external/tensorflow/tensorflow/compiler/xla/service/
Dbuffer_liveness.cc95 TF_DCHECK_OK(points_to_analysis_->VerifyBuffer(a)); in live_range_strictly_before()
96 TF_DCHECK_OK(points_to_analysis_->VerifyBuffer(b)); in live_range_strictly_before()
Dcopy_insertion.cc519 TF_DCHECK_OK(Verify()); in CopyRemover()
782 TF_DCHECK_OK(Verify()); in TryElideCopy()
1184 TF_DCHECK_OK(VerifyNoLiveRangeInterference(dep_ordering, module)); in Run()
1196 TF_DCHECK_OK( in Run()
Dshape_inference.cc240 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(shape)); in InferUnaryOpShape()
705 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(result)); in InferDotOpShape()
922 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(lhs)); in InferBinaryOpShape()
923 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(rhs)); in InferBinaryOpShape()
1006 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(lhs)); in InferTernaryOpShape()
1007 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(rhs)); in InferTernaryOpShape()
1008 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(ehs)); in InferTernaryOpShape()
1034 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(*shape)); in InferVariadicOpShape()
1637 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(lhs)); in InferConvolveShape()
1638 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(rhs)); in InferConvolveShape()
Dhlo_ordering.cc361 TF_DCHECK_OK(schedule_.Verify()); in Initialize()
Dhlo_alias_analysis.cc524 TF_DCHECK_OK(alias_analysis->Verify()); in Run()
Dhlo_dataflow_analysis.cc886 TF_DCHECK_OK(dataflow_analysis->Verify()); in Run()
Dservice.cc1087 TF_DCHECK_OK(ShapeUtil::ValidateShape(program_shape.result())); in ComputeConstantGraph()
Dhlo_instructions.h976 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(shape())); in infeed_shape()
Dhlo_instruction.cc2473 TF_DCHECK_OK(ShapeUtil::ValidateShapeWithOptionalLayout(shape_)); in HloInstruction()
/external/tensorflow/tensorflow/core/graph/
Dgraph.cc445 TF_DCHECK_OK(IsValidNode(node)) << node->DebugString(); in RemoveNode()
460 TF_DCHECK_OK(IsValidNode(source)) << source->DebugString(); in AddEdge()
461 TF_DCHECK_OK(IsValidNode(dest)) << dest->DebugString(); in AddEdge()
491 TF_DCHECK_OK(IsValidNode(e->src_)) << e->src_->DebugString(); in RemoveEdge()
492 TF_DCHECK_OK(IsValidNode(e->dst_)) << e->dst_->DebugString(); in RemoveEdge()
763 TF_DCHECK_OK(IsValidNode(node)) << node->DebugString(); in ReleaseNode()
/external/tensorflow/tensorflow/core/common_runtime/eager/
Dcopy_to_device_node.h49 TF_DCHECK_OK(status) << status.error_message(); in Run()