Home
last modified time | relevance | path

Searched refs:outfeed (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_OutfeedEnqueue.pbtxt7 A tensor that will be inserted into the outfeed queue.
10 summary: "Enqueue a Tensor on the computation outfeed."
Dapi_def_OutfeedEnqueueTuple.pbtxt7 A list of tensors that will be inserted into the outfeed queue as an
11 summary: "Enqueue multiple Tensor values on the computation outfeed."
Dapi_def_OutfeedDequeue.pbtxt7 A tensor that will be read from the device outfeed.
30 summary: "Retrieves a single tensor from the computation outfeed."
Dapi_def_OutfeedDequeueTuple.pbtxt7 A list of tensors that will be read from the outfeed.
30 summary: "Retrieve multiple values from the computation outfeed."
/external/tensorflow/tensorflow/compiler/xla/tests/
Dmultiple_devices_on_host_test.cc93 TF_ASSERT_OK_AND_ASSIGN(Literal outfeed, in TestWithDeviceCount()
96 EXPECT_EQ(outfeed, LiteralUtil::CreateR0<int32>(device_ordinal * 100 + 1)); in TestWithDeviceCount()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcpu_runtime.cc165 xfeed->outfeed()->BlockingDequeueBuffer(); in __xla_cpu_runtime_AcquireOutfeedBufferForPopulation()
189 xfeed->outfeed()->ReleaseCurrentBuffer(buffer_length, buffer_ptr, in __xla_cpu_runtime_ReleaseOutfeedBufferAfterPopulation()
Dxfeed_manager.h114 XfeedQueueManager* outfeed() { return &outfeed_; } in outfeed() function
Dxfeed_manager.cc27 outfeed()->Reset(); in Reset()
Dxfeed_manager_test.cc134 xfeed->outfeed()->EnqueueBuffersAtomically({b}); in TEST_F()
Dcpu_transfer_manager.cc272 xfeed_manager->outfeed()->EnqueueBuffersAtomically(buffer_pointers); in TransferBuffersFromOutfeedInternal()
Dir_emitter.h159 Status HandleOutfeed(HloInstruction* outfeed) override;
Dir_emitter.cc474 Status IrEmitter::HandleOutfeed(HloInstruction* outfeed) { in HandleOutfeed() argument
479 TF_RETURN_IF_ERROR(EmitTargetAddressForOp(outfeed)); in HandleOutfeed()
481 HloInstruction* operand = outfeed->operands()[0]; in HandleOutfeed()
/external/tensorflow/tensorflow/compiler/xla/service/
Ddfs_hlo_visitor_with_default.h118 Status HandleOutfeed(HloInstructionPtr outfeed) override { in HandleOutfeed() argument
119 return DefaultAction(outfeed); in HandleOutfeed()
Dhlo_verifier.cc257 HloOutfeedInstruction* outfeed = Cast<HloOutfeedInstruction>(instruction); in HandleOutfeed() local
262 if (!ShapesSame(outfeed->outfeed_shape(), outfeed->operand(0)->shape())) { in HandleOutfeed()
266 StringifyShape(outfeed->operand(0)->shape()), in HandleOutfeed()
267 StringifyShape(outfeed->outfeed_shape()), outfeed->ToString()); in HandleOutfeed()
269 return CheckShape(outfeed, ShapeUtil::MakeTokenShape()); in HandleOutfeed()
Dhlo_cost_analysis.h81 Status HandleOutfeed(const HloInstruction* outfeed) override;
Dhlo_evaluator.h262 Status HandleOutfeed(HloInstruction* outfeed) override { in HandleOutfeed() argument
Dhlo_parser_test.cc1067 outfeed = token[] outfeed(infeed.data, token0) in CreateTestCases()
1071 outfeed.1 = token[] outfeed(infeed.1.data, infeed.1.token) in CreateTestCases()
Dhlo.proto137 // Shape of outfeed request.
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dir_emitter.h86 Status HandleOutfeed(HloInstruction* outfeed) override;
Dir_emitter_unnested.h174 Status HandleOutfeed(HloInstruction* outfeed) override;
Dir_emitter_unnested.cc1478 Status IrEmitterUnnested::HandleOutfeed(HloInstruction* outfeed) { in HandleOutfeed() argument
1479 AddThunkToThunkSequence(BuildOutfeedThunk(outfeed)); in HandleOutfeed()