Home
last modified time | relevance | path

Searched refs:xla_output_shape (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dxla_select_and_scatter_op.cc80 xla::ShapeUtil::Compatible(select.xla_output_shape, in Compile()
85 xla::ShapeUtil::HumanString(select.xla_output_shape))); in Compile()
103 xla::ShapeUtil::Compatible(scatter.xla_output_shape, scalar_shape), in Compile()
107 xla::ShapeUtil::HumanString(scatter.xla_output_shape))); in Compile()
Dif_op.cc115 if (!xla::ShapeUtil::Compatible(then_result.xla_output_shape, in ValidateShapes()
116 else_result.xla_output_shape)) { in ValidateShapes()
119 xla::ShapeUtil::HumanString(then_result.xla_output_shape), " vs. ", in ValidateShapes()
120 xla::ShapeUtil::HumanString(else_result.xla_output_shape)); in ValidateShapes()
142 << xla::ShapeUtil::HumanString(then_result.xla_output_shape); in ValidateShapes()
Dcase_op.cc230 xla::ShapeUtil::Compatible(branch_results[0].xla_output_shape, in Compile()
231 branch_results[j].xla_output_shape), in Compile()
234 xla::ShapeUtil::HumanString(branch_results[0].xla_output_shape), in Compile()
236 xla::ShapeUtil::HumanString(branch_results[j].xla_output_shape))); in Compile()
243 branch_results[0].xla_output_shape); in Compile()
Dwhile_op.cc180 body.xla_output_shape.tuple_shapes(i); in VerifyBodyInputAndOutputShapeMatch()
186 body.xla_output_shape.tuple_shapes(ctx->num_inputs()); in VerifyBodyInputAndOutputShapeMatch()
407 xla::Shape body_output_shape = body.xla_output_shape; in Compile()
449 << " -> " << xla::ShapeUtil::HumanString(body.xla_output_shape); in Compile()
451 << " -> " << xla::ShapeUtil::HumanString(cond.xla_output_shape); in Compile()
475 cond.xla_output_shape, in Compile()
478 cond.xla_output_shape, in Compile()
483 xla::ShapeUtil::HumanString(cond.xla_output_shape))); in Compile()
Dreduce_window_op.cc96 xla::ShapeUtil::Compatible(reducer.xla_output_shape, scalar_shape), in Compile()
100 xla::ShapeUtil::HumanString(reducer.xla_output_shape))); in Compile()
Dsort_ops.cc106 xla::ShapeUtil::Compatible(comparator.xla_output_shape, in Compile()
111 " got ", xla::ShapeUtil::HumanString(comparator.xla_output_shape))); in Compile()
Dxla_reduce_op.cc98 xla::ShapeUtil::Compatible(reducer.xla_output_shape, expected_shape), in Compile()
102 xla::ShapeUtil::HumanString(reducer.xla_output_shape))); in Compile()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_helpers.h149 xla::Shape xla_output_shape; member
Dxla_compiler_test.cc325 EXPECT_EQ(result.xla_output_shape, in TEST_F()
419 EXPECT_EQ(result.xla_output_shape, in TEST_F()
462 EXPECT_EQ(result.xla_output_shape, in TEST_F()
482 EXPECT_EQ(result.xla_output_shape, in TEST_F()
1116 result.xla_output_shape, in TEST_F()
1119 result.xla_output_shape); in TEST_F()
1158 result.xla_output_shape, in TEST_F()
1161 result.xla_output_shape); in TEST_F()
1543 EXPECT_TRUE(result.xla_output_shape.IsTuple()); in TEST_F()
1544 EXPECT_EQ(xla::ShapeUtil::TupleElementCount(result.xla_output_shape), 1); in TEST_F()
[all …]
Dxla_compiler.cc1394 &result->resource_updates, &result->xla_output_shape, in CompileGraph()
1400 << xla::ShapeUtil::HumanStringWithLayout(result->xla_output_shape); in CompileGraph()
/external/tensorflow/tensorflow/core/tpu/kernels/
Dtpu_util.cc61 instance.result_layout = &compilation_result.xla_output_shape; in BuildAotXlaComputationInstance()
Dtpu_compile_op_support.cc221 compilation_result.xla_output_shape, pos); in AddVariableUpdatesToCores()
281 compilation_result.xla_output_shape, i); in ComputeOutputShapesForEachCore()
323 compilation_result.xla_output_shape, device_assignment, in CreateHloModules()
/external/tensorflow/tensorflow/core/tpu/kernels/xla/
Dhost_compute_ops.cc180 xla::Shape* xla_output_shape; in Compile() local
194 xla_output_shape = &inferred_xla_output_shape; in Compile()
198 xla_output_shape = &static_xla_output_shape_; in Compile()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
Dcompile_mlir_util.cc139 xla::Shape* xla_output_shape, std::vector<XlaOutputDescription>* outputs, in GetOutputInfo() argument
198 *xla_output_shape = xla::ShapeUtil::MakeTupleShape(shapes); in GetOutputInfo()
463 &compilation_result->xla_output_shape, &compilation_result->outputs, in PopulateResultIOInfo()
Dtf_xla_mlir_translate.cc92 << compilation_result.xla_output_shape.ToString() << '\n'; in PrintHloModuleText()
/external/tensorflow/tensorflow/compiler/jit/
Dxla_compilation_cache.cc172 build_options.set_result_layout(result.xla_output_shape); in BuildExecutable()