From 54a9b6961b12ada9a0afc19bd9e789d826f95861 Mon Sep 17 00:00:00 2001 From: biondizzle Date: Tue, 2 Jun 2026 09:06:36 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20rope=5Fcuda=20path=20=E2=80=94=20kernels?= =?UTF-8?q?/cuda=20not=20ops/cuda?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dsv4/ops/rope_cuda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsv4/ops/rope_cuda.py b/dsv4/ops/rope_cuda.py index 292b0f84..72f86e53 100644 --- a/dsv4/ops/rope_cuda.py +++ b/dsv4/ops/rope_cuda.py @@ -16,7 +16,7 @@ def _compile_and_load(): if _LIB is not None: return _LIB - cu_path = Path(__file__).parent / "cuda" / "rope_cuda.cu" + cu_path = Path(__file__).parent.parent / "kernels" / "cuda" / "rope_cuda.cu" assert cu_path.exists(), f"rope_cuda.cu not found at {cu_path}" # Compile to shared library