3RNN/Lib/site-packages/tensorflow/include/xla/service/stream_pool.h
2024-05-26 19:49:15 +02:00

69 lines
2.2 KiB
C++

/* Copyright 2018 The OpenXLA Authors.
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 XLA_SERVICE_STREAM_POOL_H_
#define XLA_SERVICE_STREAM_POOL_H_
#include <memory>
#include <unordered_map>
#include <vector>
#include "xla/stream_executor/stream_executor.h"
namespace xla {
namespace se = ::stream_executor;
// Pool of stream_executor::Streams, which are created as needed and
// destroyed when the pool is destroyed.
class StreamPool {
public:
struct PtrDeleter {
void operator()(se::Stream* stream) { pool->ReturnStream(stream); }
StreamPool* pool;
};
// Stream pointer type returned by BorrowStream, which returns the
// stream to the pool on destruction.
using Ptr = std::unique_ptr<se::Stream, PtrDeleter>;
StreamPool() = default;
// Returns a pointer to a stream in the pool, creating a new stream
// if none are available in the pool. The returned smart pointer
// returns the stream to the pool on destruction.
//
// This method is thread-safe.
Ptr BorrowStream(se::StreamExecutor* executor,
se::StreamPriority priority = se::StreamPriority::Default);
private:
// Puts a pointer to a stream back into the pool, leaving it free
// for future use. Streams that have previously encountered errors
// are deleted, and not returned to the pool.
//
// This method is thread-safe.
void ReturnStream(se::Stream* stream);
absl::Mutex mu_;
// This stores streams with user-specified priority.
std::unordered_map<se::StreamPriority,
std::vector<std::unique_ptr<se::Stream>>>
streams_with_pri_ ABSL_GUARDED_BY(mu_);
};
} // namespace xla
#endif // XLA_SERVICE_STREAM_POOL_H_