/external/tensorflow/tensorflow/lite/kernels/shim/ |
D | shape_test.cc | 80 TEST(Shape, FullyDefined) { in TEST() argument 81 EXPECT_TRUE(Shape({}).FullyDefined()); in TEST() 82 EXPECT_FALSE(Shape().FullyDefined()); in TEST() 83 EXPECT_TRUE(Shape({1}).FullyDefined()); in TEST() 84 EXPECT_TRUE(Shape({1, 2}).FullyDefined()); in TEST() 85 EXPECT_FALSE(Shape({3, -1, 2}).FullyDefined()); in TEST() 86 EXPECT_FALSE(Shape({-1, -1}).FullyDefined()); in TEST()
|
D | shape.cc | 66 bool Shape::FullyDefined() const { in FullyDefined() function in tflite::shim::Shape
|
D | shape.h | 63 bool FullyDefined() const;
|
D | tflite_op_shim.h | 192 if (inferred_output_shapes[output_idx].FullyDefined()) { in Prepare()
|
/external/tensorflow/tensorflow/core/ops/ |
D | random_index_shuffle_ops.cc | 63 if (!c->FullyDefined(index_shape) || !c->FullyDefined(seed_shape) || in StatelessRandomPermuteShape() 64 !c->FullyDefined(max_index_shape)) { in StatelessRandomPermuteShape()
|
D | control_flow_ops.cc | 103 if (!c->FullyDefined(first_input)) { in __anon786e17100202() 110 if (!c->FullyDefined(input) || in __anon786e17100202()
|
D | array_ops.cc | 298 if (!c->FullyDefined(passed_shape)) { in __anon091a71b70202() 306 if (!c->FullyDefined(c->input(i))) { in __anon091a71b70202() 895 if (c->RankKnown(diag) && !c->FullyDefined(input)) { in __anon091a71b71102()
|
D | data_flow_ops.cc | 640 if (c->FullyDefined(s) || identical_shapes) { in __anon89875fc91502()
|
/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/tensorflow/tensorflow/core/tpu/ops/ |
D | tpu_partitioned_input_op.cc | 70 if (!c->FullyDefined(shape_handle)) { in __anonadce0a370102()
|
/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/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundle.h | 178 bool FullyDefined; member
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | graph_properties.cc | 501 if (!ic->FullyDefined(shape) || ic->Rank(shape) > 1 || in IsShapeFullyDefinedIntegerVectorOrScalar() 502 !ic->FullyDefined(tensor_as_shape) || in IsShapeFullyDefinedIntegerVectorOrScalar() 1434 ic->FullyDefined(c->output_tensors_as_shapes[i])) { in AllOutputValuesKnown() 1459 if (!ic->FullyDefined(ic->output(i))) { in AllOutputShapesKnown() 1480 if (tensor == nullptr && !ic->FullyDefined(input_tensors_as_shape)) { in AllInputValuesKnown() 1530 if (!ic->FullyDefined(shape_handle) || in ShouldUpdateOutputShapesAndValues() 1611 if (ic->FullyDefined(ic->output(k)) && in UpdateOutputShapesAndValues() 1668 if ((ic->FullyDefined(ic->output(i)) && in UpdateOutputShapesUsingAnnotatedInformation() 1670 (!ic->FullyDefined(ic->output(i)) && in UpdateOutputShapesUsingAnnotatedInformation() 1684 if (!ic->FullyDefined(ic->output(i)) && in UpdateOutputShapesUsingAnnotatedInformation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundle.h | 256 bool FullyDefined; member
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | eval_const_tensor.cc | 83 if (!shape_c->FullyDefined(shape_c->input(0)) && !allow_partial) in TryToInferTensorOutputFromShapeNode() 245 bool fully_defined_inputs = c->FullyDefined(c->input(0)); in TryToInferTensorOutputFromInputShapes()
|
/external/tensorflow/tensorflow/core/framework/ |
D | shape_inference_test.cc | 1596 TEST_F(ShapeInferenceTest, FullyDefined) { in TEST_F() argument 1602 EXPECT_FALSE(c.FullyDefined(c.UnknownShape())); in TEST_F() 1603 EXPECT_FALSE(c.FullyDefined(c.Matrix(c.MakeDim(1), c.UnknownDim()))); in TEST_F() 1606 EXPECT_TRUE(c.FullyDefined(c.Matrix(c.MakeDim(1), c.MakeDim(2)))); in TEST_F() 1607 EXPECT_TRUE(c.FullyDefined(c.Scalar())); in TEST_F()
|
D | shape_inference.h | 447 bool FullyDefined(ShapeHandle s);
|
D | common_shape_fns.cc | 1366 if (!c->RankKnown(input_shape) || !c->FullyDefined(diag_index_shape) || in MatrixDiagPartV2Shape() 1423 if (!c->RankKnown(input_shape) || !c->FullyDefined(diag_index_shape) || in MatrixDiagV2Shape() 1523 if (diag_index_tensor != nullptr && c->FullyDefined(diag_index_shape)) { in MatrixSetDiagV2Shape() 1567 if (c->RankKnown(diag_shape) && !c->FullyDefined(input_shape)) { in MatrixSetDiagV2Shape()
|
D | shape_inference.cc | 253 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 | 368 if (!shape_ctx->FullyDefined(handle)) { in InferOutputShapes()
|