Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dgather_scatter_ops.cc80 XlaCompiler::CompilationResult update_computation; in Compile() local
84 &update_computation)); in Compile()
88 ctx->Input("updates"), *update_computation.computation, in Compile()
/external/tensorflow/tensorflow/compiler/tf2xla/python/
Dxla.py435 def scatter(operand, scatter_indices, updates, update_computation, argument
441 update_computation=update_computation,
/external/tensorflow/tensorflow/compiler/mlir/xla/
Dmlir_hlo_to_hlo.cc696 xla::XlaComputation update_computation; in ExportXlaOp() local
697 if (failed(ctx.converter->LowerRegionAsComputation(&op.update_computation(), in ExportXlaOp()
698 &update_computation))) { in ExportXlaOp()
705 value_map[op.updates()], update_computation, dimension_numbers, in ExportXlaOp()
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client.py1623 update_computation, argument
1629 update_computation.computation, dimension_numbers,
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h588 const XlaComputation& update_computation,
1009 const XlaComputation& update_computation,
1889 const XlaComputation& update_computation,
Dxla_builder.cc1803 const XlaComputation& update_computation, in Scatter() argument
1817 update_computation.GetProgramShape()); in Scatter()
1826 AddCalledComputation(update_computation, &instr); in Scatter()
3498 const XlaOp updates, const XlaComputation& update_computation, in Scatter() argument
3502 update_computation, dimension_numbers, in Scatter()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_instruction_test.cc1521 auto* update_computation = in TEST_F() local
1527 update_computation, in TEST_F()
Dhlo_parser.cc1752 optional<HloComputation*> update_computation; in ParseInstructionRhs() local
1754 &update_computation}; in ParseInstructionRhs()
1776 /*updates=*/operands[2], *update_computation, dim_numbers, in ParseInstructionRhs()
Dhlo_instruction.h881 HloComputation* update_computation,
Dhlo_instructions.cc2535 HloComputation* update_computation, in HloScatterInstruction() argument
2544 AppendComputation(update_computation); in HloScatterInstruction()
Dhlo_instructions.h1497 HloComputation* update_computation,
Dhlo_instruction.cc1429 HloComputation* update_computation, in CreateScatter() argument
1433 shape, operand, scatter_indices, updates, update_computation, in CreateScatter()
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Doperation_semantics.md2278 updated with the values in `updates` using `update_computation`.
2283 <b> `scatter(operand, scatter_indices, updates, update_computation, index_vector_dim, update_window…
2290 `update_computation` | `XlaComputation` | Computation to be used for combining the exi…
2371 `output`[`O`] = `update_computation`(`output`[`O`], `updates`[`U`])
2377 Note that the first parameter that is passed into the `update_computation` will
2380 specifically for cases when the `update_computation` is _not commutative_.
/external/tensorflow/tensorflow/compiler/mlir/xla/ir/
Dhlo_ops.td1025 let regions = (region SizedRegion<1>:$update_computation);
Dhlo_ops_base.td979 updated with the values in `updates` using `update_computation`.
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dlegalize_tf.cc2303 }(&scatter.update_computation()); in matchAndRewrite()
3142 &scatter.update_computation(), &rewriter); in matchAndRewrite()