mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/60543 Since now c10d is part of libtorch, it would also be nice if the sources lived all in one place. ghstack-source-id: 132306292 Test Plan: It builds Reviewed By: cbalioglu Differential Revision: D29062002 fbshipit-source-id: d9e1301e9d73e1643fa0f0119cd2d618f1ad52e6
82 lines
2.1 KiB
C++
82 lines
2.1 KiB
C++
#include <c10d/PrefixStore.hpp>
|
|
|
|
namespace c10d {
|
|
|
|
PrefixStore::PrefixStore(
|
|
const std::string& prefix,
|
|
c10::intrusive_ptr<Store> store)
|
|
: prefix_(prefix), store_(store) {}
|
|
|
|
std::string PrefixStore::joinKey(const std::string& key) {
|
|
return prefix_ + "/" + key;
|
|
}
|
|
|
|
std::vector<std::string> PrefixStore::joinKeys(
|
|
const std::vector<std::string>& keys) {
|
|
std::vector<std::string> joinedKeys;
|
|
joinedKeys.reserve(keys.size());
|
|
for (const auto& key : keys) {
|
|
joinedKeys.emplace_back(joinKey(key));
|
|
}
|
|
return joinedKeys;
|
|
}
|
|
|
|
void PrefixStore::set(
|
|
const std::string& key,
|
|
const std::vector<uint8_t>& value) {
|
|
store_->set(joinKey(key), value);
|
|
}
|
|
|
|
std::vector<uint8_t> PrefixStore::compareSet(
|
|
const std::string& key,
|
|
const std::vector<uint8_t>& expectedValue,
|
|
const std::vector<uint8_t>& desiredValue) {
|
|
return store_->compareSet(joinKey(key), expectedValue, desiredValue);
|
|
}
|
|
|
|
std::vector<uint8_t> PrefixStore::get(const std::string& key) {
|
|
return store_->get(joinKey(key));
|
|
}
|
|
|
|
int64_t PrefixStore::add(const std::string& key, int64_t value) {
|
|
return store_->add(joinKey(key), value);
|
|
}
|
|
|
|
bool PrefixStore::deleteKey(const std::string& key) {
|
|
return store_->deleteKey(joinKey(key));
|
|
}
|
|
|
|
void PrefixStore::watchKey(const std::string& key, WatchKeyCallback callback) {
|
|
return store_->watchKey(joinKey(key), std::move(callback));
|
|
}
|
|
|
|
int64_t PrefixStore::getNumKeys() {
|
|
return store_->getNumKeys();
|
|
}
|
|
|
|
bool PrefixStore::check(const std::vector<std::string>& keys) {
|
|
auto joinedKeys = joinKeys(keys);
|
|
return store_->check(joinedKeys);
|
|
}
|
|
|
|
void PrefixStore::wait(const std::vector<std::string>& keys) {
|
|
auto joinedKeys = joinKeys(keys);
|
|
store_->wait(joinedKeys);
|
|
}
|
|
|
|
void PrefixStore::wait(
|
|
const std::vector<std::string>& keys,
|
|
const std::chrono::milliseconds& timeout) {
|
|
auto joinedKeys = joinKeys(keys);
|
|
store_->wait(joinedKeys, timeout);
|
|
}
|
|
|
|
const std::chrono::milliseconds& PrefixStore::getTimeout() const noexcept {
|
|
return store_->getTimeout();
|
|
}
|
|
|
|
void PrefixStore::setTimeout(const std::chrono::milliseconds& timeout) {
|
|
store_->setTimeout(timeout);
|
|
}
|
|
|
|
} // namespace c10d
|