154 lines
5.1 KiB
C++
154 lines
5.1 KiB
C++
/**
|
|
* Copyright (c) 2023 by Contributors
|
|
*
|
|
* @file shared_memory_helper.h
|
|
* @brief Share memory helper.
|
|
*/
|
|
#ifndef GRAPHBOLT_SHARED_MEMORY_HELPER_H_
|
|
#define GRAPHBOLT_SHARED_MEMORY_HELPER_H_
|
|
|
|
#include <graphbolt/shared_memory.h>
|
|
#include <torch/torch.h>
|
|
|
|
#include <memory>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <tuple>
|
|
#include <vector>
|
|
|
|
namespace graphbolt {
|
|
namespace sampling {
|
|
|
|
/**
|
|
* @brief SharedMemoryHelper is a helper class to write/read data structures
|
|
* to/from shared memory.
|
|
*
|
|
* In order to write data structure to shared memory, we need to serialize the
|
|
* data structure to a binary buffer and then write the buffer to the shared
|
|
* memory. However, the size of the binary buffer is not known in advance. To
|
|
* solve this problem, we use two shared memory objects: one for storing the
|
|
* metadata and the other for storing the binary buffer. The metadata includes
|
|
* the metadata of data structures such as size and shape. The size of the
|
|
* metadata is decided by the size of metadata. The size of the binary buffer is
|
|
* decided by the size of the data structures.
|
|
*
|
|
* To avoid repeated shared memory allocation, this helper class uses lazy data
|
|
* structure writing. The data structures are written to the shared memory only
|
|
* when `Flush` is called. The data structures are written in the order of
|
|
* calling `WriteTorchArchive`, `WriteTorchTensor` and `WriteTorchTensorDict`,
|
|
* and also read in the same order.
|
|
*
|
|
* The usage of this class as a writer is as follows:
|
|
* @code{.cpp}
|
|
* SharedMemoryHelper shm_helper("shm_name", 1024, true);
|
|
* shm_helper.WriteTorchArchive(archive);
|
|
* shm_helper.WriteTorchTensor(tensor);
|
|
* shm_helper.WriteTorchTensorDict(tensor_dict);
|
|
* shm_helper.Flush();
|
|
* // After `Flush`, the data structures are written to the shared memory.
|
|
* // Then the helper class can be used as a reader.
|
|
* shm_helper.InitializeRead();
|
|
* auto archive = shm_helper.ReadTorchArchive();
|
|
* auto tensor = shm_helper.ReadTorchTensor();
|
|
* auto tensor_dict = shm_helper.ReadTorchTensorDict();
|
|
* @endcode
|
|
*
|
|
* The usage of this class as a reader is as follows:
|
|
* @code{.cpp}
|
|
* SharedMemoryHelper shm_helper("shm_name", 1024, false);
|
|
* shm_helper.InitializeRead();
|
|
* auto archive = shm_helper.ReadTorchArchive();
|
|
* auto tensor = shm_helper.ReadTorchTensor();
|
|
* auto tensor_dict = shm_helper.ReadTorchTensorDict();
|
|
* @endcode
|
|
*
|
|
*
|
|
*/
|
|
class SharedMemoryHelper {
|
|
public:
|
|
/**
|
|
* @brief Constructor of the shared memory helper.
|
|
* @param name The name of the shared memory.
|
|
*/
|
|
SharedMemoryHelper(const std::string& name);
|
|
|
|
/** @brief Initialize this helper class before reading. */
|
|
void InitializeRead();
|
|
|
|
void WriteTorchArchive(torch::serialize::OutputArchive&& archive);
|
|
torch::serialize::InputArchive ReadTorchArchive();
|
|
|
|
void WriteTorchTensor(torch::optional<torch::Tensor> tensor);
|
|
torch::optional<torch::Tensor> ReadTorchTensor();
|
|
|
|
void WriteTorchTensorDict(
|
|
torch::optional<torch::Dict<std::string, torch::Tensor>> tensor_dict);
|
|
torch::optional<torch::Dict<std::string, torch::Tensor>>
|
|
ReadTorchTensorDict();
|
|
|
|
/** @brief Flush the data structures to the shared memory. */
|
|
void Flush();
|
|
|
|
/** @brief Release the shared memory and return their left values. */
|
|
std::pair<SharedMemoryPtr, SharedMemoryPtr> ReleaseSharedMemory();
|
|
|
|
private:
|
|
/**
|
|
* @brief Serialize metadata to string.
|
|
*/
|
|
void SerializeMetadata();
|
|
/**
|
|
* @brief Write the metadata to the shared memory. This function is
|
|
* called by `Flush`.
|
|
*/
|
|
void WriteMetadataToSharedMemory();
|
|
/**
|
|
* @brief Write the tensor data to the shared memory. This function is
|
|
* called by `Flush`.
|
|
*/
|
|
void WriteTorchTensorInternal(torch::optional<torch::Tensor> tensor);
|
|
|
|
inline void* GetCurrentMetadataPtr() const {
|
|
return static_cast<char*>(metadata_shared_memory_->GetMemory()) +
|
|
metadata_offset_;
|
|
}
|
|
inline void* GetCurrentDataPtr() const {
|
|
return static_cast<char*>(data_shared_memory_->GetMemory()) + data_offset_;
|
|
}
|
|
inline void MoveMetadataPtr(int64_t offset) {
|
|
TORCH_CHECK(
|
|
metadata_offset_ + offset <= metadata_size_,
|
|
"The size of metadata exceeds the maximum size of shared memory.");
|
|
metadata_offset_ += offset;
|
|
}
|
|
inline void MoveDataPtr(int64_t offset) {
|
|
TORCH_CHECK(
|
|
data_offset_ + offset <= data_size_,
|
|
"The size of data exceeds the maximum size of shared memory.");
|
|
data_offset_ += offset;
|
|
}
|
|
|
|
std::string name_;
|
|
bool is_creator_;
|
|
|
|
size_t metadata_size_;
|
|
size_t data_size_;
|
|
|
|
// The shared memory objects for storing metadata and tensor data.
|
|
SharedMemoryPtr metadata_shared_memory_, data_shared_memory_;
|
|
|
|
// The read/write offsets of the metadata and tensor data.
|
|
size_t metadata_offset_, data_offset_;
|
|
|
|
// The data structures to write to the shared memory. They are written to the
|
|
// shared memory only when `Flush` is called.
|
|
std::vector<torch::serialize::OutputArchive> metadata_to_write_;
|
|
std::vector<std::string> metadata_strings_to_write_;
|
|
std::vector<torch::optional<torch::Tensor>> tensors_to_write_;
|
|
};
|
|
|
|
} // namespace sampling
|
|
} // namespace graphbolt
|
|
|
|
#endif // GRAPHBOLT_SHARED_MEMORY_HELPER_H_
|