stream.cc 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

15
#include "paddle/phi/backends/stream.h"
16

17 18
#include "glog/logging.h"

19 20
#include "paddle/phi/backends/device_guard.h"
#include "paddle/phi/backends/event.h"
21

22
namespace phi {
23 24 25 26 27 28 29 30 31 32 33
namespace stream {

Stream::~Stream() { Destroy(); }

const stream_t& Stream::raw_stream() const { return stream_; }

void Stream::set_stream(stream_t stream) { stream_ = stream; }

// For compatiable
Stream::Stream(const Place& place, stream_t stream)
    : place_(place),
34
      device_(phi::DeviceManager::GetDeviceWithPlace(place)),
35 36 37 38
      stream_(stream),
      callback_manager_(new CallbackManager(this)),
      own_data_(false) {}

39 40
bool Stream::Init(const Place& place,
                  const Priority& priority,
41 42
                  const Flag& flag) {
  place_ = place;
43
  device_ = phi::DeviceManager::GetDeviceWithPlace(place);
44 45 46 47

  // note(wangran16): bind device to the current thread. fix npu plugin null
  // context bug.
  phi::DeviceManager::SetDevice(place_);
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
  device_->CreateStream(this, priority, flag);

  callback_manager_.reset(new CallbackManager(this));
  VLOG(3) << "Init Stream: " << stream_ << ", place: " << place_
          << ", priority: " << static_cast<int>(priority)
          << ", flag:" << static_cast<int>(flag);
  own_data_ = true;
  return true;
}

void Stream::RecordEvent(event::Event* event, Callback callback) const {
  callback();
  device_->RecordEvent(event, this);
}

void Stream::RecordEvent(event::Event* event) const {
  device_->RecordEvent(event, this);
}

void Stream::WaitEvent(event::Event* event) const {
  device_->StreamWaitEvent(this, event);
}

void Stream::Wait() const {
#if !defined(_WIN32)
  device_->SynchronizeStream(this);
#else
  while (1) {
    if (device_->QueryStream(this)) {
      break;
    }
  }
#endif
}

void Stream::WaitCallback() const { callback_manager_->Wait(); }

void Stream::Destroy() {
86
  if (own_data_ && stream_ != nullptr) {
87
    phi::DeviceManager::SetDevice(place_);
88 89
    device_->DestroyStream(this);
    own_data_ = false;
90
    stream_ = nullptr;
91 92 93 94 95 96 97 98 99 100
  }
}

bool Stream::Query() const { return device_->QueryStream(this); }

void Stream::Synchronize() const { device_->SynchronizeStream(this); }

const Place& Stream::GetPlace() const { return place_; }

}  // namespace stream
101
}  // namespace phi