HomeSort by relevance Sort by last modified time
    Searched refs:send_done (Results 1 - 13 of 13) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/
dfs_hlo_visitor_with_default.h 188 Status HandleSendDone(HloInstructionPtr send_done) override {
189 return DefaultAction(send_done);
hlo_verifier.cc 306 const HloInstruction* send_done = send->users().front(); local
307 TF_RET_CHECK(send_done->opcode() == HloOpcode::kSendDone);
308 TF_RETURN_IF_ERROR(CheckSameChannel(send, send_done));
314 Status ShapeVerifier::HandleSendDone(HloInstruction* send_done) {
315 TF_RET_CHECK(send_done->operands().size() == 1);
316 const HloInstruction* send = send_done->operand(0);
318 TF_RETURN_IF_ERROR(CheckSameChannel(send, send_done));
319 return CheckShape(send_done, ShapeUtil::MakeNil());
    [all...]
tuple_points_to_analysis_test.cc 323 auto send_done = builder.AddInstruction(HloInstruction::CreateSendDone(send)); local
329 EXPECT_FALSE(points_to_analysis_->GetPointsToSet(send_done).IsAmbiguous());
330 EXPECT_TRUE(points_to_analysis_->GetPointsToSet(send_done).IsDistinct());
337 points_to_analysis_->GetPointsToSet(send_done).CreateFlattenedSet(),
338 {send_done});
    [all...]
hlo_cost_analysis.h 63 Status HandleSendDone(const HloInstruction* send_done) override;
hlo_verifier.h 76 Status HandleSendDone(HloInstruction* send_done) override;
dfs_hlo_visitor.h 222 virtual Status HandleSendDone(HloInstructionPtr send_done) = 0;
buffer_liveness_test.cc 335 auto send_done = builder.AddInstruction(HloInstruction::CreateSendDone(send)); local
342 recv_done, send, send_done};
    [all...]
hlo_dataflow_analysis_test.cc 1163 auto send_done = builder.AddInstruction(HloInstruction::CreateSendDone(send)); local
    [all...]
  /external/blktrace/btreplay/
btreplay.c 91 * @send_done: Boolean: When true, the sub thread has completed work
109 volatile int send_wait, reap_wait, send_done, reap_done; member in struct:thr_info
269 return signal_done || tip->send_done;
278 return tip->send_done && tip->naios_out == 0;
772 tip->send_done = tip->reap_done = 0;
820 assert(tip->send_done);
1098 assert(tip->send_done);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter.h 84 Status HandleSendDone(HloInstruction* send_done) override;
  /external/perfetto/src/ipc/
unix_socket_unittest.cc 513 auto send_done = tx_task_runner.CreateCheckpoint("send_done");
517 tx_task_runner.PostTask([&cli, &buf, send_done] {
521 send_done();
524 tx_task_runner.RunUntilCheckpoint("send_done", kTimeoutMs);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
ir_emitter.h 137 Status HandleSendDone(HloInstruction* send_done) override;
ir_emitter.cc     [all...]

Completed in 401 milliseconds