stream.cc 3.0 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 16
#include <list>

17
#include "paddle/phi/backends/stream.h"
18

19 20
#include "glog/logging.h"

21 22
#include "paddle/phi/backends/device_guard.h"
#include "paddle/phi/backends/event.h"
23

24
namespace phi {
25 26
namespace stream {

27 28 29 30 31 32 33 34 35 36 37 38
std::list<Stream*> g_streams;

void Stream::ReleaseAll() {
  for (auto* stream : g_streams) {
    stream->Destroy();
  }
}

Stream::~Stream() {
  g_streams.remove(this);
  Destroy();
}
39 40 41 42 43 44 45 46

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),
47
      device_(phi::DeviceManager::GetDeviceWithPlace(place)),
48 49 50 51
      stream_(stream),
      callback_manager_(new CallbackManager(this)),
      own_data_(false) {}

52 53
bool Stream::Init(const Place& place,
                  const Priority& priority,
54 55
                  const Flag& flag) {
  place_ = place;
56
  device_ = phi::DeviceManager::GetDeviceWithPlace(place);
57 58 59 60

  // note(wangran16): bind device to the current thread. fix npu plugin null
  // context bug.
  phi::DeviceManager::SetDevice(place_);
61 62 63 64 65 66 67
  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;
68
  g_streams.push_back(this);
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
  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() {
100 101 102 103 104
  if (device_) {
    if (own_data_) {
      phi::DeviceManager::SetDevice(place_);
      device_->DestroyStream(this);
    }
105
    own_data_ = false;
106
    stream_ = nullptr;
107
    device_ = nullptr;
108 109 110 111 112 113 114 115 116 117
  }
}

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

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

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

}  // namespace stream
118
}  // namespace phi