Files
foxhunt/crates
jgrusewski 5c05b0719d fix(cuda): replace uint64_t with unsigned long long for NVRTC compat
NVRTC does not include <stdint.h> so uint64_t is undefined. The TMA
mbarrier shared variable was causing 5 compilation errors on the H100
(identifier "uint64_t" is undefined, asm operand must have scalar
type). Using the native CUDA type unsigned long long (also 64-bit)
resolves the issue without needing any NVRTC headers.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 22:13:59 +01:00
..