Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeallocateStream (0.12 sec)

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

            device_(device),
            stream_executor_(stream_executor),
            stream_handle_(nullptr) {}
      ~CStream() override {
        parent()->BlockHostUntilDone(this).IgnoreError();
        parent()->DeallocateStream(this);
        Destroy();
      }
    
      absl::Status Create() {
        tensorflow::TF_StatusPtr c_status(TF_NewStatus());
        stream_executor_->create_stream(device_, &stream_handle_, c_status.get());
    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

        return stream_executor_->host_callback(&device_, stream_handle,
                                               &HostCallbackTrampoline, ctx);
      }
      void DeallocateStream(Stream* stream) override {
        static_cast<CStream*>(stream)->Destroy();
      }
      absl::Status BlockHostForEvent(Stream* stream, Event* event) {
        OwnedTFStatus c_status(TF_NewStatus());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top