Files
paddlepaddle--paddle/paddle/phi/backends/custom/cuda_graph.h
T
2026-07-13 12:40:42 +08:00

397 lines
13 KiB
C++

// 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.
#pragma once
#include <array>
#include <atomic>
#include <functional>
#include <future>
#include <memory>
#include <mutex>
#include <queue>
#include <set>
#include <thread>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include "paddle/common/errors.h"
#include "paddle/common/macros.h"
#include "paddle/phi/backends/c_cuda_graph_lib.h"
#include "paddle/phi/backends/context_pool.h"
#include "paddle/phi/backends/device_code.h"
#include "paddle/phi/backends/device_ext.h"
#include "paddle/phi/backends/device_manager.h"
#include "paddle/phi/backends/gpu/gpu_context.h"
#include "paddle/phi/backends/stream.h"
#include "paddle/phi/common/memory_utils.h"
#include "paddle/phi/common/place.h"
#include "paddle/phi/core/enforce.h"
#include "paddle/utils/optional.h"
#ifdef PADDLE_WITH_CUSTOM_DEVICE
namespace phi {
namespace backends {
namespace gpu {
class CUDAGraphContextManager {
public:
using DeviceContextMap =
std::map<Place, std::shared_future<std::unique_ptr<DeviceContext>>>;
static CUDAGraphContextManager &Instance() {
static CUDAGraphContextManager *cuda_graph_ctx_manager =
new CUDAGraphContextManager;
return *cuda_graph_ctx_manager;
}
DeviceContext *Get(int64_t pool_id, const Place &place, int stream_priority) {
std::lock_guard<std::mutex> lk(ctx_mtx_);
DeviceContextMap &ctxs = cuda_graph_ctx_pool_[pool_id];
if (ctxs.find(place) == ctxs.end()) {
phi::memory_utils::EmplaceDeviceContexts(
&ctxs,
{place},
/*disable_setting_default_stream_for_allocator=*/true,
stream_priority);
}
return ctxs[place].get().get();
}
void RecordCapturingDeviceContext(DeviceContext *dev_ctx) {
capturing_ctxs_.insert(dev_ctx);
}
std::set<DeviceContext *> GetAllCapturingDeviceContexts() const {
return capturing_ctxs_;
}
void ClearDeviceContextsRecords() { capturing_ctxs_.clear(); }
private:
CUDAGraphContextManager() {}
DISABLE_COPY_AND_ASSIGN(CUDAGraphContextManager);
std::mutex ctx_mtx_;
std::unordered_map<int64_t, DeviceContextMap> cuda_graph_ctx_pool_;
std::set<DeviceContext *> capturing_ctxs_;
};
class gpuKernelParams {
public:
explicit gpuKernelParams(void **params) : kernelParams(params) {}
template <typename T>
T &As(size_t idx) const {
return *reinterpret_cast<T *>(kernelParams[idx]);
}
void **getParams() const { return kernelParams; }
private:
void **kernelParams;
};
using GraphExecuterSetter_t = std::function<void(graph::CUDAGraphExec_t)>;
// ** class CUDAGraphNodeLauncher
//
// This class offers a interface for launching CUDA kernels in CUDA Graph, we
// utilize the `cudaGraphExecKernelNodeSetParams` function for parameter setup.
// Launching kernels via this class ensures proper management.
//
// NOTE: It's essential that the first parameter for any kernel launched
// through this class is an `unsigned int` identifier. This identifier plays a
// crucial role in linking the CUDA kernel to its corresponding CUDA graph
// node. We tag each kernel launch with a unique identifier to maintain
// structured linkage with its CUDA graph node.
//
// NOTE: This class use a singleton design pattern ensures there's only a
// single global instance accessible via the `Instance()` method.
class CUDAGraphNodeLauncher {
public:
// [Parameter Setter Callback]
// Sets the kernel's parameters BEFORE activating the CUDA graph. It enables
// dynamic determination and setup of kernel arguments.
//
// parameterSetter_t parameterSetter = [saved_state](gpuKernelParams
// &param){
// // Code to compute and the parameter values from the saved_state
// // ...
// param.As<type>(idx) = calculated_value;
// };
using parameterSetter_t = std::function<void(gpuKernelParams &)>;
// [CUDA Kernel Callback]
// Acts as the launcher for the kernel. It accepts an `unsigned int`
// identifier and uses it for the kernel launch.
// The `cudaGetFuncBySymbol` method can be used to fetch the `cudaFunction_t`
// reference of the kernel from the kernel pointer.
// gpuKernelCallback_t cudaKernelCallback = [=](unsigned int id) {
// // cudaFunction_t is REQUIRED to get here
// cudaFunction_t cudaFunc;
// PADDLE_ENFORCE_GPU_SUCCESS(cudaGetFuncBySymbol(&cudaFunc, &kernel));
//
// kernel<<<>>>(id, ...); // Launching the kernel with id
// return cudaFunc;
// };
using gpuKernelCallback_t = std::function<void *(unsigned int)>;
// [Kernel Launch]
// With the callbacks defined and the CUDA function obtained, the kernel can
// be launched using the `KernelNodeLaunch` method.
void KernelNodeLaunch(parameterSetter_t parameterSetter,
gpuKernelCallback_t cudakernelCallback);
std::vector<GraphExecuterSetter_t> GetParameterSettersForExecGraph(
const Place &place, graph::CUDAGraph_t graph);
parameterSetter_t GetParameterSetter(const gpuKernelParams &params);
static CUDAGraphNodeLauncher &Instance() {
static CUDAGraphNodeLauncher *launcher = new CUDAGraphNodeLauncher;
return *launcher;
}
std::unordered_map<void *, std::map<unsigned int, parameterSetter_t>>
parameterSetters;
private:
CUDAGraphNodeLauncher() : id(0) {}
DISABLE_COPY_AND_ASSIGN(CUDAGraphNodeLauncher);
unsigned int GenerateIdentifier() { return id++; }
unsigned int id;
};
using CUDAGraphID = unsigned long long; // NOLINT
// NOTE: Currently, we do not support to capture CUDA graph in parallel
// NOTE: Do not use this class directly because it should be used with
// the memory pool.
class CUDAGraph {
DISABLE_COPY_AND_ASSIGN(CUDAGraph);
// Since the constructor would throw error is CUDA_VERSION < 10010.
// The non-static method of CUDAGraph need not check CUDA_VERSION
// again.
CUDAGraph();
public:
static constexpr int64_t kDefaultPoolID = 0;
static constexpr int64_t kInvalidPoolID = -1;
~CUDAGraph();
CUDAGraphID ID() const { return id_; }
void Replay();
void Reset();
static void BeginSegmentCapture();
static void EndSegmentCapture();
static void BeginCapture(CustomPlace place,
stream::stream_t stream,
graph::streamCaptureMode mode);
static std::unique_ptr<CUDAGraph> EndCapture();
static void ReleaseAll();
void PrintToDotFiles(const std::string &dirname, unsigned int flags);
static int64_t SetMemoryPoolID(int64_t pool_id) {
auto &pool_id_ = capturing_graph_->pool_id_;
PADDLE_ENFORCE_EQ(pool_id_,
kInvalidPoolID,
common::errors::InvalidArgument(
"Cannot reset memory pool id twice, the "
"former memory pool id is %d.",
pool_id_));
if (pool_id <= kInvalidPoolID) {
pool_id_ = UniqueMemoryPoolID();
} else {
PADDLE_ENFORCE_GE(pool_id,
kDefaultPoolID,
common::errors::InvalidArgument(
"Invalid memory pool id %d.", pool_id));
pool_id_ = pool_id;
}
return pool_id_;
}
int64_t PoolID() const { return pool_id_; }
static int64_t CapturingPoolID() { return capturing_graph_->pool_id_; }
void AddPostResetCallback(
std::function<void(paddle::optional<const CUDAGraph &>)> callback) {
std::lock_guard<std::mutex> guard(mtx_);
cudagraph_post_reset_callbacks_.push_back(std::move(callback));
}
static void AddPreCaptureCallback(std::function<void()> callback) {
cudagraph_pre_capture_callbacks_.push_back(std::move(callback));
}
void AddPostCaptureCallback(std::function<void()> callback) {
std::lock_guard<std::mutex> guard(mtx_);
cudagraph_post_capture_callbacks_.push_back(std::move(callback));
}
bool IsReplayed() const { return is_replayed_; }
void AddJoiningStream(stream::stream_t stream) {
streams_to_join_.insert(stream);
}
static void AddJoiningStreamDuringCapturing(stream::stream_t stream) {
capturing_graph_->AddJoiningStream(stream);
}
static void AddPostResetCallbackDuringCapturing(
std::function<void(paddle::optional<const CUDAGraph &>)> callback) {
capturing_graph_->AddPostResetCallback(std::move(callback));
}
static void AddPostCaptureCallbackDuringCapturing(
std::function<void()> callback) {
capturing_graph_->AddPostCaptureCallback(std::move(callback));
}
// No need to add CUDA_VERSION macro because capturing_graph_ would
// always be nullptr (constructor throws error)
static bool IsCapturing() { return capturing_graph_ != nullptr; }
static CUDAGraphID CapturingID() { return capturing_graph_->id_; }
static CustomPlace CapturingPlace() { return capturing_graph_->place_; }
// This API can be used to debug which GPU operation is not
// supported during capturing CUDA Graph.
static bool IsValidCapturing();
static bool IsThreadLocalCapturing() {
return IsCapturing() &&
capturing_graph_->capture_mode_ ==
graph::streamCaptureMode::StreamCaptureModeThreadLocal;
}
static bool IsThisThreadCapturing() {
if (UNLIKELY(IsCapturing())) {
return IsThreadLocalCapturing()
? capturing_thread_id_.get() == std::this_thread::get_id()
: true;
} else {
return false;
}
}
static int64_t UniqueMemoryPoolID() {
static std::atomic<int64_t> id(kDefaultPoolID + 1);
return id.fetch_add(1);
}
private:
CUDAGraphID UniqueID() {
static std::atomic<CUDAGraphID> id;
return id.fetch_add(1);
}
private:
std::vector<graph::CUDAGraph_t> graphs_;
std::vector<graph::CUDAGraphExec_t> exec_graphs_;
graph::streamCaptureMode capture_mode_;
stream::stream_t stream_{nullptr};
CustomPlace place_;
CUDAGraphID id_;
int64_t pool_id_{kInvalidPoolID};
bool is_reset_{false};
bool is_replayed_{false};
std::mutex mtx_;
std::unordered_set<stream::stream_t> streams_to_join_;
// Holds callbacks that are triggered after the CUDA graph is reset. These
// callbacks are used for operations that need to be performed following the
// reset of a CUDA graph.
std::vector<std::function<void(paddle::optional<const CUDAGraph &>)>>
cudagraph_post_reset_callbacks_;
static std::vector<std::function<void()>> cudagraph_pre_capture_callbacks_;
// Contains callbacks that are invoked after the CUDA graph has been captured.
// These callbacks are crucial for managing memory allocations related to the
// CUDA graph. They ensure that memory blocks not associated with a graph (as
// detailed in cuda_malloc_async_allocator) are not erroneously released
// during the graph's lifecycle.
std::vector<std::function<void()>> cudagraph_post_capture_callbacks_;
// Maintains a collection of 'pre-hooks' - functions that are executed before
// the CUDA graph is replayed. These pre-hooks are essential for setting up
// the necessary conditions or states required for the correct execution of
// the CUDA graph.
std::vector<std::vector<GraphExecuterSetter_t>>
cudagraph_pre_replay_callbacks_;
std::mutex func_mtx_;
bool is_first_run_{true};
static paddle::optional<std::thread::id> capturing_thread_id_;
static std::unique_ptr<CUDAGraph> capturing_graph_;
};
class CUDAGraphCaptureModeGuard {
DISABLE_COPY_AND_ASSIGN(CUDAGraphCaptureModeGuard);
public:
explicit CUDAGraphCaptureModeGuard(
graph::streamCaptureMode mode =
graph::streamCaptureMode::StreamCaptureModeRelaxed) {
if (UNLIKELY(CUDAGraph::IsCapturing())) {
auto device_types = DeviceManager::GetAllCustomDeviceTypes();
for (auto &dev_type : device_types) {
place_ = CustomPlace(dev_type);
break;
}
DeviceManager::CudaThreadExchangeStreamCaptureMode(place_, &mode);
// After cudaThreadExchangeStreamCaptureMode is called,
// the variable "mode" would be set to the old capturing mode.
old_mode_ = mode;
}
}
~CUDAGraphCaptureModeGuard() PADDLE_MAY_THROW {
if (UNLIKELY(CUDAGraph::IsCapturing())) {
DeviceManager::CudaThreadExchangeStreamCaptureMode(place_, &old_mode_);
}
}
private:
graph::streamCaptureMode old_mode_;
CustomPlace place_;
};
} // namespace gpu
} // namespace backends
} // namespace phi
#endif // PADDLE_WITH_CUSTOM_DEVICE