Home
last modified time | relevance | path

Searched refs:Compatible (Results 1 – 25 of 89) sorted by relevance

1234

/external/tensorflow/tensorflow/compiler/xla/
Dshape_util_test.cc88 ASSERT_TRUE(ShapeUtil::Compatible(shape1, shape2)); in TEST()
92 EXPECT_TRUE(ShapeUtil::Compatible(ShapeUtil::MakeTokenShape(), in TEST()
94 EXPECT_FALSE(ShapeUtil::Compatible(ShapeUtil::MakeTokenShape(), in TEST()
96 EXPECT_FALSE(ShapeUtil::Compatible(ShapeUtil::MakeShape(F32, {}), in TEST()
98 EXPECT_TRUE(ShapeUtil::Compatible( in TEST()
140 EXPECT_TRUE(ShapeUtil::Compatible(shape_1, shape_2)); in TEST()
158 EXPECT_FALSE(ShapeUtil::Compatible(shape_1, shape_2)); in TEST()
196 EXPECT_TRUE(ShapeUtil::Compatible(shape_a, shape_a)); in TEST()
197 EXPECT_TRUE(ShapeUtil::Compatible(shape_a, shape_b)); in TEST()
198 EXPECT_FALSE(ShapeUtil::Compatible(shape_a, shape_c)); in TEST()
[all …]
Dshape_layout.cc26 if (!ShapeUtil::Compatible(other_shape, shape_)) { in CopyLayoutFromShape()
36 if (!ShapeUtil::Compatible(*to_shape, shape_)) { in AssignLayoutToShape()
Dshape_tree_test.cc132 EXPECT_TRUE(ShapeUtil::Compatible(array_shape_, shape_tree.shape())); in TEST_F()
159 EXPECT_TRUE(ShapeUtil::Compatible(tuple_shape_, shape_tree.shape())); in TEST_F()
203 EXPECT_TRUE(ShapeUtil::Compatible(nested_tuple_shape_, shape_tree.shape())); in TEST_F()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_jit_compiled_cpu_function_test.cc122 EXPECT_TRUE(ShapeUtil::Compatible(program_shape.parameters(0), s32)); in TEST()
123 EXPECT_TRUE(ShapeUtil::Compatible(program_shape.parameters(1), s32)); in TEST()
129 EXPECT_TRUE(ShapeUtil::Compatible(result0, s32)); in TEST()
/external/tensorflow/tensorflow/compiler/xla/service/
Dwhile_loop_simplifier.cc325 ShapeUtil::Compatible(while_init->shape(), while_body_root->shape())); in TryRemoveConstantParams()
364 CHECK(ShapeUtil::Compatible(instr->shape(), while_shape)); in TryRemoveConstantParams()
378 CHECK(ShapeUtil::Compatible(instr->shape(), new_while_shape)); in TryRemoveConstantParams()
657 ShapeUtil::Compatible(while_init->shape(), while_body_root->shape())); in TryFlattenNestedTuples()
690 CHECK(ShapeUtil::Compatible(nested_instr->shape(), while_shape)) in TryFlattenNestedTuples()
784 ShapeUtil::Compatible(while_init->shape(), while_body_root->shape())); in TryMergeInductionVariables()
837 if (!ShapeUtil::Compatible(shape, lhs->shape())) { in TryMergeInductionVariables()
840 if (!ShapeUtil::Compatible(shape, rhs->shape())) { in TryMergeInductionVariables()
867 CHECK(ShapeUtil::Compatible(instr->shape(), new_while_shape)); in TryMergeInductionVariables()
889 CHECK(ShapeUtil::Compatible(old_root->shape(), while_shape)); in TryMergeInductionVariables()
[all …]
Dlayout_assignment.cc85 CHECK(ShapeUtil::Compatible(shape_layout.shape(), in OperandLayoutConstraint()
293 if (!ShapeUtil::Compatible(shape_with_layout, instruction->shape())) { in SetInstructionLayout()
562 DCHECK(ShapeUtil::Compatible(body_layout.result_shape(), in AddMandatoryConstraints()
564 DCHECK(ShapeUtil::Compatible(body_layout.result_shape(), in AddMandatoryConstraints()
566 DCHECK(ShapeUtil::Compatible(body_layout.result_shape(), init->shape())); in AddMandatoryConstraints()
614 DCHECK(ShapeUtil::Compatible( in AddMandatoryConstraints()
775 DCHECK(ShapeUtil::Compatible(shape_with_layout, instruction->shape())) in CreateCopyWithNewLayout()
1546 DCHECK(ShapeUtil::Compatible(fusion_operand->shape(), in SetFusionLayouts()
1554 ShapeUtil::Compatible(fusion->shape(), fused_instruction->shape())); in SetFusionLayouts()
1927 ShapeUtil::Compatible(entry_computation_layout_->parameter_shape(i), in Run()
[all …]
Dtuple_simplifier.cc90 if (!ShapeUtil::Compatible(top_tuple->shape(), in Run()
Dshape_inference.cc111 if (!ShapeUtil::Compatible(*accumulator_subshapes[i], in VerifyReducerShape()
2139 if (!ShapeUtil::Compatible(select_result_shape, in InferSelectAndScatterShape()
2332 if (!ShapeUtil::Compatible(first_index_shape, index_shape)) { in InferDynamicSliceShape()
2439 if (!ShapeUtil::Compatible(first_index_shape, index_shape)) { in InferDynamicUpdateSliceShape()
2543 if (!ShapeUtil::Compatible(body.result(), condition.parameters(0)) || in InferWhileShape()
2544 !ShapeUtil::Compatible(body.result(), body.parameters(0)) || in InferWhileShape()
2545 !ShapeUtil::Compatible(body.result(), init)) { in InferWhileShape()
2577 if (!ShapeUtil::Compatible(branch_computations[j].parameters(0), in InferConditionalShape()
2590 if (!ShapeUtil::Compatible(branch_computations[0].result(), in InferConditionalShape()
2815 if (!ShapeUtil::Compatible(on_true, on_false)) { in InferTupleSelectShape()
[all …]
Dgeneric_transfer_manager.cc114 ShapeUtil::Compatible(literal.shape(), device_buffer.on_host_shape())); in TransferLiteralToDeviceAsync()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dxla_select_and_scatter_op.cc81 xla::ShapeUtil::Compatible(select.xla_output_shape, in Compile()
104 xla::ShapeUtil::Compatible(scatter.xla_output_shape, scalar_shape), in Compile()
Dwhile_op.cc170 if (!xla::ShapeUtil::Compatible(body_input_shape, body_output_shape)) { in VerifyBodyInputAndOutputShapeMatch()
434 xla::ShapeUtil::Compatible(body_input_shape, cond_input_shape), in Compile()
454 xla::ShapeUtil::Compatible( in Compile()
457 xla::ShapeUtil::Compatible( in Compile()
Dif_op.cc161 xla::ShapeUtil::Compatible(then_input_shape, else_input_shape), in Compile()
170 xla::ShapeUtil::Compatible(then_result.xla_output_shape, in Compile()
Dxla_reduce_op.cc80 xla::ShapeUtil::Compatible(reducer.xla_output_shape, scalar_shape), in Compile()
Dcase_op.cc165 xla::ShapeUtil::Compatible(branch0_input_shape, branch_input_shape), in Compile()
174 xla::ShapeUtil::Compatible(branch_results[0].xla_output_shape, in Compile()
Dreduce_window_op.cc97 xla::ShapeUtil::Compatible(reducer.xla_output_shape, scalar_shape), in Compile()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dcudnn_conv_rewriter_test.cc294 CHECK(ShapeUtil::Compatible( in TEST_F()
430 CHECK(ShapeUtil::Compatible( in TEST_F()
480 CHECK(ShapeUtil::Compatible( in TEST_F()
534 CHECK(ShapeUtil::Compatible( in TEST_F()
589 CHECK(ShapeUtil::Compatible( in TEST_F()
Doutfeed_thunk.cc45 CHECK(ShapeUtil::Compatible(hlo_instruction()->operand(0)->shape(), in ExecuteOnStream()
/external/perfetto/
DREADME.chromium7 License Android Compatible: yes
/external/markdown/tests/misc/
Dmismatched-tags.txt5 <p>And this output</p> *Compatible with PHP Markdown Extra 1.2.2 and Markdown.pl1.0.2b8:*
/external/pdfium/third_party/libpng16/
DREADME.pdfium6 License Android Compatible: yes
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcpu_transfer_manager.cc190 TF_RET_CHECK(ShapeUtil::Compatible(received_shape, literal.shape())) in TransferLiteralFromOutfeed()
216 TF_RET_CHECK(ShapeUtil::Compatible(received_shape, literal_shape)) in TransferLiteralFromOutfeed()
/external/u-boot/doc/device-tree-bindings/gpio/
Dgpio-samsung.txt4 - compatible: Compatible property value should be "samsung,exynos4-gpio>".
/external/tensorflow/tensorflow/compiler/aot/tests/
Dtfcompile_test.cc578 ShapeUtil::Compatible(xla::Shape(muladd_shape->parameters(0)), f32_2x2)); in TEST()
580 ShapeUtil::Compatible(xla::Shape(muladd_shape->parameters(1)), f32_2x2)); in TEST()
587 EXPECT_TRUE(ShapeUtil::Compatible(muladd_result0, f32_2x2)); in TEST()
590 EXPECT_TRUE(ShapeUtil::Compatible(muladd_result1, f32_2x2)); in TEST()
/external/u-boot/doc/device-tree-bindings/cpu/
Dnios2.txt11 - compatible: Compatible property value should be "altr,nios2-1.0" or
/external/tensorflow/tensorflow/stream_executor/
Dkernel.h650 static constexpr bool Compatible() {
677 return Compatible<ParamT, ArgT, kShouldStaticAssert, kArgumentNumber>() &&

1234