fix(jit): add driver-only mode support for LaunchConfig#48
Merged
Conversation
Replace CUDA Runtime types with portable alternatives: - Add Dim3 struct for driver-only mode (replaces dim3) - Use StreamHandle from stream.hpp (replaces cudaStream_t) This fixes the test-driver-only-windows CI job which failed because dim3 and cudaStream_t are CUDA Runtime types not available when building with PYGPUKIT_DRIVER_ONLY=ON. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Remove false claim about "no mandatory external SDKs" - Add note: CUDA drivers and NVRTC are currently required - Clarify PyGPUkit is NOT a PyTorch/CuPy replacement - Update "Lightweight" feature description 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Replaced 37-line checklist with compact table for v0.1-v0.2.3. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Owner
Author
Summary of ChangesThis PR now includes three fixes: 1. Driver-Only Mode Support (
|
This was referenced Dec 14, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix the
test-driver-only-windowsCI job failure by adding driver-only mode support tonative/jit/kernel.hpp.Problem
The CI job failed with errors like:
This occurred because
dim3andcudaStream_tare CUDA Runtime types, but driver-only mode (PYGPUKIT_DRIVER_ONLY=ON) only includes the CUDA Driver API headers.Solution
Dim3struct that's used in driver-only modeStreamHandlefromstream.hppinstead ofcudaStream_tstream.hppTest plan
test-driver-only-windowsjob passes🤖 Generated with Claude Code