Views
No views yet
unsloth/gemma-3-270m-it specialized for the
ALCF Aurora supercomputer (Intel Xeon Sapphire
Rapids + Intel GPU Max 1550 / Ponte Vecchio, oneAPI / SYCL, PBS Pro).nvcc instead of
icpx -fsycl, srun / aprun instead of mpiexec, NERSC's /global/cfs instead of
/lus/flare, and CUDA device strings instead of xpu. This adapter teaches the base
model the actual Aurora toolchain, file system layout, scheduler conventions, and
recommended PyTorch/TensorFlow/SYCL idioms.| Base model | unsloth/gemma-3-270m-it |
| Format | GGUF, f16 — single file, llama.cpp / Ollama / LM Studio compatible |
| Fine-tuning | LoRA (PEFT) — r=32, α=64, dropout 0.0, 2 epochs |
| Optimizer | AdamW fused, lr 2e-4 cosine, warmup 3%, batch 1 × grad-accum 8 |
| Precision / seq-len | bf16, 1,536 tokens |
| Training data | aurora-docs-distill-v2-datascience — 1,117 ChatML rows |
| Train loss (final) | 1.2462 |
| Hardware | 1 Aurora PVC tile (1/12 of a node, 64 GB HBM), IPEX + PyTorch 2.10 XPU backend |
| Eval (53-Q Aurora, 0–5) | pending |
1# 1. Grab a debug node
2qsub -I -A <project> -q debug -l select=1,walltime=01:00:00,filesystems=home:flare
3
4# 2. Load the toolchain
5module load frameworks
6source /lus/flare/projects/<project>/scripts/env.sh # or your own oneAPI setup
7export ONEAPI_DEVICE_SELECTOR=level_zero:gpu
8
9# 3. Download to flare (NOT $HOME — quota is small)
10hf download shazzadulimun/gemma3-270m-aurora-ml-v3-gguf --local-dir /lus/flare/projects/<project>/models/aurora-chat-v3
11
12# 4. Run on a single PVC tile
13/path/to/llama.cpp/build_sycl/bin/llama-cli \
14 -m /lus/flare/projects/<project>/models/aurora-chat-v3/*.gguf \
15 -ngl 999 -sm none --temp 0.0 -cnv \
16 -p "How do I launch one MPI rank per GPU tile on Aurora?"1hf download shazzadulimun/gemma3-270m-aurora-ml-v3-gguf --local-dir ./model
2./llama-cli -m ./model/*.gguf -ngl 999 --temp 0.0 -cnvollama run hf.co/shazzadulimun/gemma3-270m-aurora-ml-v3-ggufopenai/gpt-oss-120b on ALCF Sophia (vLLM) over 130 cleaned chunks of
docs.alcf.anl.gov/aurora. 1,117
training rows + 139 validation rows in ChatML format with embedded
chain-of-thought (**Reasoning:** / **Answer:**).torch.xpu, module load frameworks, IPEX patterns, etc.gpt-oss-120b) can confabulate plausible-looking
but incorrect commands. Treat outputs as a verifiable first draft, not authoritative./lus/flare, xpu, PBS queues) won't transfer to Frontier,
Polaris, or other systems.1@misc{aurora-llms-2026,
2 title = { Gemma-3-270M-Aurora-ML v3 },
3 author = { Islam Mun, Shazzadul },
4 year = { 2026 },
5 url = { https://huggingface.co/shazzadulimun/gemma3-270m-aurora-ml-v3-gguf },
6 note = { LoRA fine-tune of gemma-3-270m-it; data distilled from gpt-oss-120b on docs.alcf.anl.gov/aurora }
7}unsloth/gemma-3-270m-it.