Built financial intelligence platform on DGX Spark.
Nemotron 120B running 72+ hours without interruption.
Q4_K_M quantization via llama.cpp native GB10 compile.
pip install yuclaw
Built financial intelligence platform on DGX Spark.
Nemotron 120B running 72+ hours without interruption.
Q4_K_M quantization via llama.cpp native GB10 compile.
pip install yuclaw
Technical details for anyone trying to run
Nemotron on DGX Spark GB10:
The challenge: GB10 is CUDA compute 12.1
but PyTorch only supports up to 12.0.
What failed:
What worked:
Build llama.cpp with native CUDA arch:
cmake -B build -DGGML_CUDA=ON
-DCMAKE_CUDA_ARCHITECTURES=“native”
Convert FP8 → GGUF BF16 (11 minutes)
Quantize BF16 → Q4_K_M (~65GB fits in GPU)
Run with tmux for 72hr stability
Result: 19 tok/s, 81GB VRAM, stable.
Full implementation: YuClawLab · GitHub