Views
No views yet
group_size=16, packed in the llm-compressor
(compressed-tensors) format for direct serving in
vLLM. Both weights and activations are
quantized to 4-bit floating point.
Requires NVIDIA Blackwell. NVFP4 relies on the FP4 tensor cores introduced in the Blackwell architecture (e.g. B200 / GB200), so inference must run on a Blackwell-class GPU. Earlier architectures (Hopper, Ada, Ampere) do not support NVFP4 execution.
Solar-MyModel-v1).| Precision | Weight footprint |
|---|---|
| BF16 | 500.6 GB |
| Nota NVFP4 | 153.3 GB |
| Benchmark | BF16 | Nota NVFP4 |
|---|---|---|
| Tau2-Bench | 75.20 | 75.08 |
| HLE | 27.88 | 27.66 |
| GPQA Diamond | 86.26 | 85.45 |
| IFBench | 80.00 | 81.02 |
| LiveCodeBench (v5–v6) | 87.03 | 88.55 |
| MMLU-Pro | 86.19 | 86.15 |
| AIME 2026 (EN) | 95.67 | 96.67 |
| IFEval (EN) | 94.09 | 92.61 |
| HMMT | 92.05 | 90.15 |
| KMMLU-Pro | 78.38 | 77.93 |
| HAE-RAE Bench v1.1 | 73.84 | 72.84 |
| AIME (KO) | 97.67 | 97.00 |
| KBL | 75.51 | 75.40 |
| KBank-MMLU | 80.80 | 80.68 |
| KorMedMCQA | 92.99 | 93.05 |
| Avg. | 81.57 | 81.35 |
v0.1.dev16959+g00907fc9b on 4×NVIDIA B300 SXM6 (TP=4).
Long-context serving workload: 32,768 input tokens / 2,048 output tokens per request.
All latency figures are p50 (median).| Model | Output tok/s | TTFT (ms) | TPOT (ms) | tok/s/user | E2E latency (s) |
|---|---|---|---|---|---|
| Solar-Open-2 (BF16) | 119.8 | 975 | 7.87 | 127.0 | 17.1 |
| Solar-Open-2-Nota-NVFP4 | 144.5 | 734 | 6.56 | 152.5 | 14.2 |
| Solar-Open-2-Nota-NVFP4-Global-Pruned | 146.9 | 741 | 6.45 | 155.1 | 13.9 |
| Model | Output tok/s (all 32 users) | Total tok/s (all 32 users) | Req/s | tok/s/user (per user) | TTFT (ms) | TPOT (ms) | E2E latency (s) |
|---|---|---|---|---|---|---|---|
| Solar-Open-2 (BF16) | 1,010.8 | 17,183.6 | 0.49 | 35.2 | 4,856 | 28.44 | 62.4 |
| Solar-Open-2-Nota-NVFP4 | 1,468.2 | 24,958.6 | 0.72 | 53.7 | 4,893 | 18.62 | 42.4 |
| Solar-Open-2-Nota-NVFP4-Global-Pruned | 1,503.5 | 25,560.2 | 0.73 | 56.2 | 5,337 | 17.79 | 41.6 |
Reading the numbers. Output tok/s and Total tok/s are aggregate across all concurrent users (server capacity). tok/s/user, TTFT, TPOT, and E2E latency are what a single user experiences (tok/s/user = 1000 / TPOT).
1uv venv --python 3.12 --seed solar_open2_venv
2source .venv/bin/activate
3
4VLLM_PRECOMPILED_WHEEL_LOCATION="https://github.com/vllm-project/vllm/releases/download/v0.22.0/vllm-0.22.0%2Bcu129-cp38-abi3-manylinux_2_28_x86_64.whl" \
5VLLM_USE_PRECOMPILED=1 \
6uv pip install --reinstall-package vllm --torch-backend=cu129 \
7 "git+https://github.com/UpstageAI/vllm.git@v0.22.0-solar-open2"1vllm serve nota-ai/Solar-Open2-250B-Nota-NVFP4 \
2 --served-model-name solar-open2-250b \
3 --tensor-parallel-size 4 \
4 --default-chat-template-kwargs '{"think_render_option":"preserved"}' \
5 --reasoning-parser solar_open2 \
6 --tool-call-parser solar_open2 \
7 --enable-auto-tool-choice \
8 --logits-processors vllm.v1.sample.logits_processor.solar_open2:SolarOpen2TemplateLogitsProcessor--tensor-parallel-size according to the number of GPUs available in your serving environment.1curl http://localhost:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "solar-open2-250b",
5 "messages": [
6 {"role": "user", "content": "What is Upstage?"}
7 ],
8 "max_tokens": 131584,
9 "temperature": 1.0,
10 "top_p": 1.0,
11 "reasoning_effort": "high"
12 }'1@inproceedings{park2026dreammoe,
2 title = {{DREAM-MoE}: Downstream Routing Error-Aware Margin-Preserving Quantization for Mixture-of-Experts Large Language Models},
3 author = {Park, Hancheol and Lee, Geonho and Kim, Tae-Ho},
4 booktitle = {ICML 2026 Workshop on Resource-Adaptive Foundation Model Inference (AdaptFM)},
5 year = {2026},
6 url = {https://openreview.net/forum?id=Wyhqwjl51A},
7}
8
9@inproceedings{lee2026sramoe,
10 title = {{SRA-MoE}: Output-Aware Selective Router Alignment for MoE Quantization},
11 author = {Lee, Geonho and Park, Hancheol and Lee, Seunghyun and Choi, Jungwook and Kim, Tae-Ho},
12 booktitle = {ICML 2026 Workshop on Resource-Adaptive Foundation Model Inference (AdaptFM)},
13 year = {2026},
14 url = {https://openreview.net/forum?id=H0NoX02erJ},
15}