/external/tensorflow/tensorflow/core/ops/ |
D | control_flow_ops.cc | 102 if (!c->FullyDefined(first_input)) { in __anon92ff84320202() 109 if (!c->FullyDefined(input) || in __anon92ff84320202()
|
D | array_ops.cc | 297 if (!c->FullyDefined(passed_shape)) { in __anon42d741190202() 305 if (!c->FullyDefined(c->input(i))) { in __anon42d741190202() 877 if (c->RankKnown(diag) && !c->FullyDefined(input)) { in __anon42d741191102()
|
D | data_flow_ops.cc | 640 if (c->FullyDefined(s) || identical_shapes) { in __anonea01102b1502()
|
/external/tensorflow/tensorflow/core/tpu/ops/ |
D | tpu_partitioned_input_op.cc | 70 if (!c->FullyDefined(shape_handle)) { in __anon2b8a3a590102()
|
/external/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 330 PRI.FullyDefined = true; in analyzePhysReg() 337 if (PRI.FullyDefined || PRI.Clobbered) in analyzePhysReg()
|
D | MachineBasicBlock.cpp | 1268 if (Info.FullyDefined || Info.Clobbered) in computeRegisterLiveness()
|
D | InlineSpiller.cpp | 787 if (RI.FullyDefined) in foldMemoryOperand()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 346 PRI.FullyDefined = true; in AnalyzePhysRegInBundle() 353 if (PRI.FullyDefined || PRI.Clobbered) in AnalyzePhysRegInBundle()
|
D | MachineBasicBlock.cpp | 1473 if (Info.FullyDefined || Info.Clobbered) in computeRegisterLiveness()
|
D | InlineSpiller.cpp | 879 if (RI.FullyDefined) in foldMemoryOperand()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | eval_const_tensor.cc | 55 bool fully_defined_inputs = c->FullyDefined(c->input(0)); in TryToInferTensorOutputFromInputShapes() 92 bool fully_defined_inputs = c->FullyDefined(c->input(0)); in TryToInferTensorOutputFromInputShapes()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 347 PRI.FullyDefined = true; in AnalyzePhysRegInBundle() 354 if (PRI.FullyDefined || PRI.Clobbered) in AnalyzePhysRegInBundle()
|
D | MachineBasicBlock.cpp | 1404 if (Info.FullyDefined || Info.Clobbered) in computeRegisterLiveness()
|
D | InlineSpiller.cpp | 854 if (RI.FullyDefined) in foldMemoryOperand()
|
/external/tensorflow/tensorflow/compiler/tf2xla/ops/ |
D | xla_ops.cc | 174 if (!c->FullyDefined(lhs_shape_handle) || in __anonbbc1c2d10202() 175 !c->FullyDefined(rhs_shape_handle)) { in __anonbbc1c2d10202() 414 if (!c->FullyDefined(input_shape_handle)) { in __anonbbc1c2d10302()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundle.h | 178 bool FullyDefined; member
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundle.h | 256 bool FullyDefined; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundle.h | 256 bool FullyDefined; member
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | graph_properties.cc | 450 if (!ic->FullyDefined(shape) || ic->Rank(shape) > 1 || in IsShapeFullyDefinedIntegerVectorOrScalar() 451 !ic->FullyDefined(tensor_as_shape) || in IsShapeFullyDefinedIntegerVectorOrScalar() 1396 ic->FullyDefined(c->output_tensors_as_shapes[i])) { in AllOutputValuesKnown() 1420 if (!ic->FullyDefined(ic->output(i))) { in AllOutputShapesKnown() 1441 if (tensor == nullptr && !ic->FullyDefined(input_tensors_as_shape)) { in AllInputValuesKnown() 1491 if (!ic->FullyDefined(shape_handle) || in ShouldUpdateOutputShapesAndValues() 1572 if (ic->FullyDefined(ic->output(k)) && in UpdateOutputShapesAndValues() 1629 if ((ic->FullyDefined(ic->output(i)) && in UpdateOutputShapesUsingAnnotatedInformation() 1631 (!ic->FullyDefined(ic->output(i)) && in UpdateOutputShapesUsingAnnotatedInformation() 1645 if (!ic->FullyDefined(ic->output(i)) && in UpdateOutputShapesUsingAnnotatedInformation()
|
/external/tensorflow/tensorflow/core/framework/ |
D | shape_inference_test.cc | 1504 TEST_F(ShapeInferenceTest, FullyDefined) { in TEST_F() argument 1510 EXPECT_FALSE(c.FullyDefined(c.UnknownShape())); in TEST_F() 1511 EXPECT_FALSE(c.FullyDefined(c.Matrix(c.MakeDim(1), c.UnknownDim()))); in TEST_F() 1514 EXPECT_TRUE(c.FullyDefined(c.Matrix(c.MakeDim(1), c.MakeDim(2)))); in TEST_F() 1515 EXPECT_TRUE(c.FullyDefined(c.Scalar())); in TEST_F()
|
D | common_shape_fns.cc | 1275 if (!c->RankKnown(input_shape) || !c->FullyDefined(diag_index_shape) || in MatrixDiagPartV2Shape() 1332 if (!c->RankKnown(input_shape) || !c->FullyDefined(diag_index_shape) || in MatrixDiagV2Shape() 1432 if (diag_index_tensor != nullptr && c->FullyDefined(diag_index_shape)) { in MatrixSetDiagV2Shape() 1476 if (c->RankKnown(diag_shape) && !c->FullyDefined(input_shape)) { in MatrixSetDiagV2Shape()
|
D | shape_inference.h | 362 bool FullyDefined(ShapeHandle s);
|
D | shape_inference.cc | 246 bool InferenceContext::FullyDefined(ShapeHandle s) { in FullyDefined() function in tensorflow::shape_inference::InferenceContext
|
/external/tensorflow/tensorflow/core/tpu/kernels/xla/ |
D | host_compute_ops.cc | 347 if (!shape_ctx->FullyDefined(handle)) { in InferOutputShapes()
|