Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for get_event_status (0.44 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

            event_handle_(nullptr) {}
      ~CEvent() override { Destroy(); }
    
      Event::Status PollForStatus() override {
        SE_EventStatus event_status =
            stream_executor_->get_event_status(device_, event_handle_);
    
        switch (event_status) {
          case SE_EVENT_ERROR:
            return Event::Status::kError;
          case SE_EVENT_PENDING:
            return Event::Status::kPending;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor.cc

      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, create_event);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, destroy_event);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, get_event_status);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, record_event);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, wait_for_event);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, memcpy_dtoh);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

        *event = new SP_Event_st(123);
      };
      se_.destroy_event = [](const SP_Device* const device,
                             SP_Event event) -> void { delete event; };
      se_.get_event_status = [](const SP_Device* const device,
                                SP_Event event) -> SE_EventStatus {
        EXPECT_EQ(event->event_id, 123);
        return event_status;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top