[BUG]: cudaLaunchHostFunc doesn't work with CUDA Graph
まだ誰も着手していません。
- 主要言語
- Cython
- スター
- 3.4k
- フォーク
- 329
- 平均マージ
- 1日 21時間
- マージ済み PR(30日)
- 113
説明
Is this a duplicate?
- I confirmed there appear to be no duplicate issues for this bug and that I agree to the Code of Conduct
Type of Bug
Runtime Error
Component
cuda.bindings
Describe the bug
Hi team,
I tested cuda.bindings.runtime.cudaLaunchHostFunc, it seemed not working well with CUDA Graph. However, the C++ cudaLaunchHostFunc can work with CUDA Graph.
Similar to https://github.com/cupy/cupy/issues/9274, the host function can be captured by CUDA graph, but when replying CUDA graph, only the first reply can call the host function, while more replays cannot. Is this expected?
Please see the repro steps below. Thanks!
How to Reproduce
import ctypes
import cuda.bindings.runtime as cudart
import torch
class Struct(ctypes.Structure):
_fields_ = [
("a", ctypes.c_int),
]
def hostfunc(userData):
data = Struct.from_address(userData)
print(f"Hello, World! {data.a}")
return 0
HostFn_t = ctypes.PYFUNCTYPE(ctypes.c_int, ctypes.c_void_p)
def main():
data = Struct(a=1)
# ctypes is managing the pointer value for us
c_hostfunc = HostFn_t(hostfunc)
cuda_hostfunc = cudart.cudaHostFn_t(_ptr=ctypes.addressof(c_hostfunc))
# Run
stream = torch.cuda.Stream()
cudart_stream = cudart.cudaStream_t(stream.cuda_stream)
g = torch.cuda.CUDAGraph()
with torch.cuda.graph(g, stream=stream):
(err, ) = cudart.cudaLaunchHostFunc(cudart_stream, cuda_hostfunc,
ctypes.addressof(data))
assert err == cudart.cudaError_t.cudaSuccess
torch.cuda.synchronize()
print("Graph captured", flush=True)
with torch.cuda.stream(stream):
for i in range(10):
g.replay()
torch.cuda.synchronize()
if __name__ == "__main__":
main()
Expected behavior
The hostfunc should be called for 10 times. However, only the first time is successful:
Graph captured
Hello, World! 1
Caught signal 11 (Segmentation fault: address not mapped to object at address 0x2e906)
Segmentation fault (core dumped)
Operating System
Ubuntu 24.04.2 LTS
nvidia-smi output
Mon Aug 4 10:10:28 2025
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 575.57.08 Driver Version: 575.57.08 CUDA Version: 12.9 |
|-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA H20 On | 00000000:D1:00.0 Off | 0 |
| N/A 37C P0 73W / 500W | 0MiB / 97871MiB | 0% Default |
| | | Disabled |
+-----------------------------------------+------------------------+----------------------+
| 1 NVIDIA H20 On | 00000000:DF:00.0 Off | 0 |
| N/A 39C P0 76W / 500W | 0MiB / 97871MiB | 0% Default |
| | | Disabled |
+-----------------------------------------+------------------------+----------------------+
+-----------------------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=========================================================================================|
| No running processes found |
+-----------------------------------------------------------------------------------------+
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、CUDA Graph capture と torch graph の反復 replay を使用して、cuda.bindings.runtime.cudaLaunchHostFunc の Python 再現コードを実行します。このエントリーポイントに対応する cuda.bindings の runtime binding を調べ、issue で説明されている C++ cudaLaunchHostFunc の動作と比較します。10 回すべてのグラフ replay で segmentation fault を起こさずに host function が正常に実行されれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- api
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100