Views
No views yet
1CUDA_VISIBLE_DEVICES=0
2vllm serve /path/to/.cache/huggingface/hub/models--compute1--Agents-A1-GPTQ-INT4-Sym/snapshots/somestring/
3--served-model-name compute1/Agents-A1-GPTQ-INT4-Sym
4--host 0.0.0.0
5--port 8000
6--tensor-parallel-size 1
7--max-model-len 196608
8--gpu-memory-utilization 0.87
9--kv-cache-dtype fp8_e5m2
10--max-num-seqs 2
11--tool-call-parser qwen3_coder
12--reasoning-parser qwen3
13--enable-auto-tool-choice
14--trust-remote-codecompute1/Agents-A1-GPTQ-INT4-Sym
1CUDA_VISIBLE_DEVICES=0
2VLLM_USE_FLASHINFER_SAMPLER=0
3vllm serve /path/to/.cache/huggingface/hub/models--cyankiwi--Agents-A1-AWQ-NVFP4/snapshots/somestring/
4--served-model-name cyankiwi/Agents-A1-AWQ-NVFP4
5--host 0.0.0.0
6--port 8000
7--moe-backend marlin
8--tensor-parallel-size 1
9--max-model-len 172032
10--gpu-memory-utilization 0.88
11--kv-cache-dtype fp8
12--max-num-seqs 2
13--tool-call-parser qwen3_coder
14--reasoning-parser qwen3
15--enable-auto-tool-choice
16--trust-remote-codecyankiwi/Agents-A1-AWQ-NVFP4
1CUDA_VISIBLE_DEVICES=0
2vllm serve groxaxo/Qwen-AgentWorld-35B-A3B-GPTQ-Pro-Int4
3--host 0.0.0.0
4--port 8000
5--tensor-parallel-size 1
6--max-model-len 131072
7--gpu-memory-utilization 0.73
8--dtype auto
9--max-num-seqs 2
10--language-model-only
11--tool-call-parser qwen3_coder
12--reasoning-parser qwen3
13--enable-auto-tool-choice
14--trust-remote-codegroxaxo/Qwen-AgentWorld-35B-A3B-GPTQ-Pro-Int4
1sudo apt update
2sudo mkdir -p /etc/apt/keyrings
3# Correct Add-Cuda-Repo Method:
4deb [signed-by=/etc/apt/keyrings/cuda-wsl.gpg] https://developer.download.nvidia.com/compute/cuda/repos/wsl-ubuntu/x86_64/ /
5# Verify your keyring file exists
6ls -l /etc/apt/keyrings/cuda-wsl.gpg
7# If it’s missing, recreate it..
8curl -fsSL https://developer.download.nvidia.com/compute/cuda/repos/wsl-ubuntu/x86_64/3bf863cc.pub \
9| sudo gpg --dearmor -o /etc/apt/keyrings/cuda-wsl.gpg
10# Fix the repo file cleanly
11sudo nano /etc/apt/sources.list.d/cuda-wsl.list
12# Replace the contents with:
13deb [signed-by=/etc/apt/keyrings/cuda-wsl.gpg] https://developer.download.nvidia.com/compute/cuda/repos/wsl-ubuntu/x86_64/ /
14# Save → exit → then run:
15sudo apt update
16# This installs the **WSL‑optimized CUDA toolkit**, not the generic Linux one:
17sudo apt install -y cuda
18# Policy against SHA1 warning?
19# https://neilzone.co.uk/2026/01/dealing-with-apts-warning-policy-will-reject-signature-within-a-year-see---audit-for-details/
20# "The “correct” way of solving this is for the repository provider to update their signing key to something which is compliant.
21# However, I have no control over what a repository provider does, or when they will do it. For instance, the warning message above
22# suggests to me that I will have a problem on 1 February 2026, so under a month away. I can suppress this warning - and tell apt to accept
23# the key - by adding -o APT::Key::GPGVCommand=1 to apt update: apt update -o APT::Key::GPGVCommand=1 Or, to avoid having to add
24# that each time, I can added a slightly-tweaked version of it to an apt config file, in /etc/apt/apt.conf.d. For instance, I can put this into
25# /etc/apt/apt.conf.d/25keypolicy: APT::Key::GPGVCommand "1"; Hopefully though, repository providers will update their keys (which will
26# then need re-importing)."
27sudo nano /etc/apt/apt.conf.d/25keypolicy
28# Add line, save and exit:
29APT::Key::GPGVCommand "1";
30
31nvidia-smi