This recipe shows how to serve and benchmark the Qwen3-30B-A3B model using NVIDIA TensorRT-LLM on a single GCP VM with G4 GPUs. For more information on G4 machine types, see the GCP documentation.
First, we will create a Google Cloud Platform (GCP) Virtual Machine (VM) that has the necessary GPU resources.
Make sure you have the following prerequisites:
- Google Cloud SDK is initialized.
- You have a project with a GPU quota. See Request a quota increase.
- Enable required APIs.
The following commands set up environment variables and create a GCE instance. The MACHINE_TYPE is set to g4-standard-384 for a multi-GPU VM (8 GPUs). The boot disk is set to 200GB to accommodate the models and dependencies.
export VM_NAME="${USER}-g4-trtllm-qwen3-30b"
export PROJECT_ID="your-project-id"
export ZONE="your-zone"
export MACHINE_TYPE="g4-standard-384"
export IMAGE_PROJECT="ubuntu-os-accelerator-images"
export IMAGE_FAMILY="ubuntu-accelerator-2404-amd64-with-nvidia-570"
gcloud compute instances create ${VM_NAME} \
--machine-type=${MACHINE_TYPE} \
--project=${PROJECT_ID} \
--zone=${ZONE} \
--image-project=${IMAGE_PROJECT} \
--image-family=${IMAGE_FAMILY} \
--maintenance-policy=TERMINATE \
--boot-disk-size=200GBUse gcloud compute ssh to connect to the newly created instance.
gcloud compute ssh ${VM_NAME?} --project=${PROJECT_ID?} --zone=${ZONE?}# Run NVIDIA smi to verify the driver installation and see the available GPUs.
nvidia-smiBefore you can serve the model, you need to have Docker installed on your VM. You can follow the official documentation to install Docker on Ubuntu: Install Docker Engine on Ubuntu
After installing Docker, make sure the Docker daemon is running.
To enable Docker containers to access the GPU, you need to install the NVIDIA Container Toolkit.
You can follow the official NVIDIA documentation to install the container toolkit: NVIDIA Container Toolkit Install Guide
sudo apt-get update
sudo apt-get -y install git git-lfs
git clone https://github.com/NVIDIA/TensorRT-LLM.git
cd TensorRT-LLM
git checkout v1.2.0rc3
git submodule update --init --recursive
git lfs install
git lfs pull
# Build the Docker image
make -C docker release_build
# Run the Docker container
mkdir -p /scratch/cache
make -C docker release_run DOCKER_RUN_ARGS="-v /scratch:/scratch -v /scratch/cache:/root/.cache --ipc=host"Now you are inside the container.
# Inside the container
# Download the base model from Hugging Face
apt-get update && apt-get install -y huggingface-cli
huggingface-cli download Qwen/Qwen3-30B-A3B --local-dir /scratch/models/Qwen3-30B-A3B
# Quantize the model using NVFP4
python examples/llm_ptq/hf_ptq.py \
--pyt_ckpt_path /scratch/models/Qwen3-30B-A3B \
--qformat nvfp4 \
--export_path /scratch/models/exported_model_qwen3_30b_a3b_nvfp4 \
--trust_remote_code
# You can also quantize to FP8 by changing --qformat nvfp8Create a script to run the benchmarks with different configurations.
# Inside the container
cat << 'EOF' > /scratch/run_benchmark.sh
#!/bin/bash
# Function to run benchmarks
run_benchmark() {
local model_name=$1
local isl=$2
local osl=$3
local num_requests=$4
local tp_size=$5
local pp_size=$6
local ep_size=$7
echo "Running benchmark for $model_name with ISL=$isl, OSL=$osl, TP=$tp_size, PP=$pp_size, EP=$ep_size"
dataset_file="/scratch/token-norm-dist_${model_name##*/}_${isl}_${osl}.json"
python benchmarks/cpp/prepare_dataset.py --tokenizer=$model_name --stdout token-norm-dist --num-requests=$num_requests --input-mean=$isl --output-mean=$osl --input-stdev=0 --output-stdev=0 > $dataset_file
# Save throughput output to a file
trtllm-bench --model $model_name --model_path ${model_name} throughput --concurrency 128 --dataset $dataset_file --tp $tp_size --pp $pp_size --ep $ep_size --backend pytorch > "/scratch/output_${model_name##*/}_isl${isl}_osl${osl}_tp${tp_size}_pp${pp_size}_ep${ep_size}_throughput.txt"
rm -f $dataset_file
}
model_name="/scratch/models/exported_model_qwen3_30b_a3b_nvfp4"
# Adjust TP/PP/EP sizes based on the number of GPUs (e.g., 8 for g4-standard-384)
TP_SIZE=8
PP_SIZE=1
EP_SIZE=1
run_benchmark "$model_name" 128 128 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 128 2048 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 128 4096 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 500 2000 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 1000 1000 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 2048 128 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 2048 2048 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 5000 500 1024 $TP_SIZE $PP_SIZE $EP_SIZE
run_benchmark "$model_name" 20000 2000 1024 $TP_SIZE $PP_SIZE $EP_SIZE
EOF
chmod +x /scratch/run_benchmark.sh
/scratch/run_benchmark.shThe benchmark results will be saved to files like /scratch/output_exported_model_qwen3_30b_a3b_nvfp4_isl128_osl128_tp8_pp1_ep1_throughput.txt.
exitThis command will delete the GCE instance and all its disks.
gcloud compute instances delete ${VM_NAME?} --zone=${ZONE?} --project=${PROJECT_ID} --quiet --delete-disks=all