-
Notifications
You must be signed in to change notification settings - Fork 685
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81edd93
commit 55b822e
Showing
9 changed files
with
132 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
oneflow/core/lazy/stream_context/common/generic_stream_context.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
Copyright 2020 The OneFlow 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. | ||
*/ | ||
#include "oneflow/core/lazy/stream_context/include/generic_stream_context.h" | ||
#include "oneflow/core/job/global_for.h" | ||
#include "oneflow/core/ep/include/device_manager_registry.h" | ||
#include "oneflow/core/ep/include/active_device_guard.h" | ||
|
||
namespace oneflow { | ||
|
||
GenericStreamContext::GenericStreamContext(const StreamId& stream_id) : stream_(nullptr) { | ||
device_ = | ||
std::dynamic_pointer_cast<ep::Device>(Singleton<ep::DeviceManagerRegistry>::Get()->GetDevice( | ||
stream_id.device_type(), stream_id.device_index())); | ||
CHECK(device_); | ||
ep::ActiveDeviceGuard guard(device_.get()); | ||
stream_ = dynamic_cast<ep::Stream*>(device_->CreateStream()); | ||
CHECK(stream_ != nullptr); | ||
poller_thread_ = std::thread([this]() { | ||
CHECK_JUST(stream_->OnExecutionContextSetup()); | ||
std::pair<ep::Event*, std::function<void()>> cb_event; | ||
while (cb_event_chan_.Receive(&cb_event) == kChannelStatusSuccess) { | ||
CHECK_JUST(cb_event.first->Sync()); | ||
cb_event.second(); | ||
device_->DestroyEvent(cb_event.first); | ||
} | ||
CHECK_JUST(stream_->OnExecutionContextTeardown()); | ||
}); | ||
} | ||
|
||
GenericStreamContext::~GenericStreamContext() { | ||
ep::ActiveDeviceGuard guard(device_.get()); | ||
cb_event_chan_.Close(); | ||
poller_thread_.join(); | ||
device_->DestroyStream(stream_); | ||
} | ||
|
||
Maybe<void> GenericStreamContext::AddCallback(std::function<void()> callback) { | ||
ep::Event* event = device_->CreateEvent(); | ||
stream_->RecordEvent(event); | ||
cb_event_chan_.Send(std::make_pair(event, std::move(callback))); | ||
return Maybe<void>::Ok(); | ||
} | ||
|
||
ep::Stream* GenericStreamContext::stream() { return stream_; } | ||
|
||
} // namespace oneflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
oneflow/core/lazy/stream_context/include/generic_stream_context.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
Copyright 2020 The OneFlow 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. | ||
*/ | ||
#ifndef ONEFLOW_CORE_LAZY_STREAM_CONTEXT_GENERIC_STREAM_CONTEXT_H_ | ||
#define ONEFLOW_CORE_LAZY_STREAM_CONTEXT_GENERIC_STREAM_CONTEXT_H_ | ||
|
||
#include "oneflow/core/lazy/stream_context/include/stream_context.h" | ||
#include "oneflow/core/common/device_type.h" | ||
#include "oneflow/core/graph/stream_id.h" | ||
#include "oneflow/core/ep/include/stream.h" | ||
#include "oneflow/core/ep/include/device.h" | ||
#include "oneflow/core/common/channel.h" | ||
|
||
namespace oneflow { | ||
|
||
class GenericStreamContext : public StreamContext { | ||
public: | ||
OF_DISALLOW_COPY_AND_MOVE(GenericStreamContext); | ||
explicit GenericStreamContext(const StreamId& stream_id); | ||
~GenericStreamContext() override; | ||
|
||
Maybe<void> AddCallback(std::function<void()> callback) override; | ||
DeviceType device_type() const override { return stream_->device_type(); } | ||
|
||
ep::Stream* stream() override; | ||
|
||
private: | ||
ep::Stream* stream_; | ||
Channel<std::pair<ep::Event*, std::function<void()>>> cb_event_chan_; | ||
std::thread poller_thread_; | ||
std::shared_ptr<ep::Device> device_; | ||
}; | ||
|
||
} // namespace oneflow | ||
|
||
#endif // ONEFLOW_CORE_LAZY_STREAM_CONTEXT_GENERIC_STREAM_CONTEXT_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters