Views
No views yet


1from vllm import LLM, SamplingParams
2from transformers import AutoTokenizer
3
4model_id = "RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic"
5number_gpus = 4
6
7sampling_params = SamplingParams(temperature=0.7, top_p=0.8, max_tokens=256)
8
9tokenizer = AutoTokenizer.from_pretrained(model_id)
10
11prompt = "Give me a short introduction to large language model."
12
13llm = LLM(model=model_id, tensor_parallel_size=number_gpus)
14
15outputs = llm.generate(prompt, sampling_params)
16
17generated_text = outputs[0].outputs[0].text
18print(generated_text)1podman run --rm -it --device nvidia.com/gpu=all -p 8000:8000 \
2 --ipc=host \
3--env "HUGGING_FACE_HUB_TOKEN=$HF_TOKEN" \
4--env "HF_HUB_OFFLINE=0" -v ~/.cache/vllm:/home/vllm/.cache \
5--name=vllm \
6registry.access.redhat.com/rhaiis/rh-vllm-cuda \
7vllm serve \
8--tensor-parallel-size 8 \
9--max-model-len 32768 \
10--enforce-eager --model RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic1# Download model from Red Hat Registry via docker
2# Note: This downloads the model to ~/.cache/instructlab/models unless --model-dir is specified.
3ilab model download --repository docker://registry.redhat.io/rhelai1/llama-4-scout-17b-16e-instruct-fp8-dynamic:1.51# Serve model via ilab
2ilab model serve --model-path ~/.cache/instructlab/models/llama-4-scout-17b-16e-instruct-fp8-dynamic
3
4# Chat with model
5ilab model chat --model ~/.cache/instructlab/models/llama-4-scout-17b-16e-instruct-fp8-dynamic1# Setting up vllm server with ServingRuntime
2# Save as: vllm-servingruntime.yaml
3apiVersion: serving.kserve.io/v1alpha1
4kind: ServingRuntime
5metadata:
6 name: vllm-cuda-runtime # OPTIONAL CHANGE: set a unique name
7 annotations:
8 openshift.io/display-name: vLLM NVIDIA GPU ServingRuntime for KServe
9 opendatahub.io/recommended-accelerators: '["nvidia.com/gpu"]'
10 labels:
11 opendatahub.io/dashboard: 'true'
12spec:
13 annotations:
14 prometheus.io/port: '8080'
15 prometheus.io/path: '/metrics'
16 multiModel: false
17 supportedModelFormats:
18 - autoSelect: true
19 name: vLLM
20 containers:
21 - name: kserve-container
22 image: quay.io/modh/vllm:rhoai-2.20-cuda # CHANGE if needed. If AMD: quay.io/modh/vllm:rhoai-2.20-rocm
23 command:
24 - python
25 - -m
26 - vllm.entrypoints.openai.api_server
27 args:
28 - "--port=8080"
29 - "--model=/mnt/models"
30 - "--served-model-name={{.Name}}"
31 env:
32 - name: HF_HOME
33 value: /tmp/hf_home
34 ports:
35 - containerPort: 8080
36 protocol: TCP1# Attach model to vllm server. This is an NVIDIA template
2# Save as: inferenceservice.yaml
3apiVersion: serving.kserve.io/v1beta1
4kind: InferenceService
5metadata:
6 annotations:
7 openshift.io/display-name: Llama-4-Scout-17B-16E-Instruct-FP8-dynamic # OPTIONAL CHANGE
8 serving.kserve.io/deploymentMode: RawDeployment
9 name: Llama-4-Scout-17B-16E-Instruct-FP8-dynamic # specify model name. This value will be used to invoke the model in the payload
10 labels:
11 opendatahub.io/dashboard: 'true'
12spec:
13 predictor:
14 maxReplicas: 1
15 minReplicas: 1
16 model:
17 modelFormat:
18 name: vLLM
19 name: ''
20 resources:
21 limits:
22 cpu: '2' # this is model specific
23 memory: 8Gi # this is model specific
24 nvidia.com/gpu: '1' # this is accelerator specific
25 requests: # same comment for this block
26 cpu: '1'
27 memory: 4Gi
28 nvidia.com/gpu: '1'
29 runtime: vllm-cuda-runtime # must match the ServingRuntime name above
30 storageUri: oci://registry.redhat.io/rhelai1/modelcar-llama-4-scout-17b-16e-instruct-fp8-dynamic:1.5
31 tolerations:
32 - effect: NoSchedule
33 key: nvidia.com/gpu
34 operator: Exists1# make sure first to be in the project where you want to deploy the model
2# oc project <project-name>
3
4# apply both resources to run model
5
6# Apply the ServingRuntime
7oc apply -f vllm-servingruntime.yaml
8
9# Apply the InferenceService
10oc apply -f qwen-inferenceservice.yaml1# Replace <inference-service-name> and <cluster-ingress-domain> below:
2# - Run `oc get inferenceservice` to find your URL if unsure.
3
4# Call the server using curl:
5curl https://<inference-service-name>-predictor-default.<domain>/v1/chat/completions
6 -H "Content-Type: application/json" \
7 -d '{
8 "model": "Llama-4-Scout-17B-16E-Instruct-FP8-dynamic",
9 "stream": true,
10 "stream_options": {
11 "include_usage": true
12 },
13 "max_tokens": 1,
14 "messages": [
15 {
16 "role": "user",
17 "content": "How can a bee fly when its wings are so small?"
18 }
19 ]
20}'
211#!/usr/bin/env python3
2"""
3This script loads an LLM model and applies FP8 quantization to
4weights and activations. Activations are dynamically quantized, i.e. during
5actual runtime.
6"""
7
8import argparse
9import torch
10from transformers import AutoTokenizer, AutoModelForCausalLM, Llama4ForConditionalGeneration
11from llmcompressor.modifiers.quantization import QuantizationModifier
12from llmcompressor import oneshot
13from compressed_tensors.quantization import (
14 QuantizationScheme,
15 QuantizationArgs,
16 QuantizationType,
17 QuantizationStrategy,
18)
19
20
21def parse_arguments():
22 """Parse command line arguments."""
23 parser = argparse.ArgumentParser(description="Quantize a causal language model")
24 parser.add_argument(
25 "--model_path",
26 type=str,
27 required=True,
28 help="Path to the pre-trained model",
29 )
30 parser.add_argument(
31 "--quant_path",
32 type=str,
33 required=True,
34 help="Output path for the quantized model",
35 )
36 return parser.parse_args()
37
38
39def main():
40 """Main function to load and quantize the model."""
41 args = parse_arguments()
42
43 print(f"Loading model from {args.model_path}...")
44 model = Llama4ForConditionalGeneration.from_pretrained(
45 args.model_path,
46 device_map="auto",
47 torch_dtype="auto",
48 trust_remote_code=True,
49 )
50
51 quant_scheme = QuantizationScheme(
52 targets=["Linear"],
53 weights=QuantizationArgs(
54 num_bits=8,
55 type=QuantizationType.FLOAT,
56 strategy=QuantizationStrategy.CHANNEL,
57 symmetric=True,
58 observer="mse",
59 ),
60 input_activations=QuantizationArgs(
61 num_bits=8,
62 type=QuantizationType.FLOAT,
63 strategy=QuantizationStrategy.TOKEN,
64 symmetric=True,
65 dynamic=True,
66 ),
67 output_activations=None,
68 )
69
70 recipe = QuantizationModifier(
71 targets="Linear",
72 config_groups={"group_0": quant_scheme},
73 ignore=[
74 're:.*lm_head',
75 're:.*self_attn',
76 're:.*router',
77 're:.*vision_model',
78 're:.*multi_modal_projector',
79 ]
80 )
81
82 print("Applying quantization...")
83 oneshot(
84 model=model,
85 recipe=recipe,
86 trust_remote_code_model=True,
87 )
88
89 model.save_pretrained(args.quant_path, save_compressed=True, skip_compression_stats=True, disable_sparse_compression=True)
90 print(f"Quantized model saved to {args.quant_path}")
91
92
93if __name__ == "__main__":
94 main()lm_eval \
--model vllm \
--model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic",dtype=auto,add_bos_token=True,max_model_len=4096,tensor_parallel_size=8,gpu_memory_utilization=0.7,enable_chunked_prefill=True,trust_remote_code=True \
--tasks openllm \
--batch_size auto lm_eval \
--model vllm \
--model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic",dtype=auto,add_bos_token=False,max_model_len=16384,tensor_parallel_size=8,gpu_memory_utilization=0.5,enable_chunked_prefill=True,trust_remote_code=True \
--tasks leaderboard \
--apply_chat_template \
--fewshot_as_multiturn \
--batch_size auto lm_eval \
--model vllm \
--model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic",dtype=auto,add_bos_token=False,max_model_len=524288,tensor_parallel_size=8,gpu_memory_utilization=0.9,enable_chunked_prefill=True,trust_remote_code=True \
--tasks ruler \
--metadata='{"max_seq_lengths":[131072]}' \
--batch_size auto lm_eval \
--model vllm-vlm \
--model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic",dtype=auto,add_bos_token=False,max_model_len=1000000,tensor_parallel_size=8,gpu_memory_utilization=0.9,enable_chunked_prefill=True,trust_remote_code=True,max_images=10 \
--tasks mmmu_val \
--apply_chat_template \
--batch_size auto export VLLM_MM_INPUT_CACHE_GIB=8
lm_eval \
--model vllm-vlm \
--model_args pretrained="RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic",dtype=auto,add_bos_token=False,max_model_len=1000000,tensor_parallel_size=8,gpu_memory_utilization=0.9,enable_chunked_prefill=True,trust_remote_code=True,max_images=10 \
--tasks chartqa \
--apply_chat_template \
--batch_size auto | Recovery (%) | meta-llama/Llama-4-Scout-17B-16E-Instruct | RedHatAI/Llama-4-Scout-17B-16E-Instruct-FP8-dynamic (this model) | |
|---|---|---|---|
| ARC-Challenge 25-shot | 100.36 | 69.37 | 69.62 |
| GSM8k 5-shot | 99.24 | 90.45 | 89.76 |
| HellaSwag 10-shot | 99.94 | 85.23 | 85.18 |
| MMLU 5-shot | 99.94 | 80.54 | 80.49 |
| TruthfulQA 0-shot | 99.17 | 61.41 | 60.90 |
| WinoGrande 5-shot | 98.88 | 77.90 | 77.03 |
| OpenLLM v1 Average Score | 99.59 | 77.48 | 77.16 |
| IFEval 0-shot avg of inst and prompt acc | 100.91 | 86.90 | 87.69 |
| Big Bench Hard 3-shot | 99.82 | 65.13 | 65.01 |
| Math Lvl 5 4-shot | 98.82 | 57.78 | 57.10 |
| GPQA 0-shot | 100.53 | 31.88 | 32.05 |
| MuSR 0-shot | 102.18 | 42.20 | 43.12 |
| MMLU-Pro 5-shot | 99.82 | 55.70 | 55.60 |
| OpenLLM v2 Average Score | 100.28 | 56.60 | 56.76 |
| RULER seqlen = 131072 niah_multikey_1 | 101.36 | 88.20 | 89.40 |
| RULER seqlen = 131072 niah_multikey_2 | 100.72 | 83.60 | 84.20 |
| RULER seqlen = 131072 niah_multikey_3 | 96.19 | 78.80 | 75.80 |
| RULER seqlen = 131072 niah_multiquery | 100.79 | 95.40 | 96.15 |
| RULER seqlen = 131072 niah_multivalue | 97.22 | 73.75 | 71.70 |
| RULER seqlen = 131072 niah_single_1 | 100.00 | 100.00 | 100.00 |
| RULER seqlen = 131072 niah_single_2 | 100.00 | 99.80 | 99.80 |
| RULER seqlen = 131072 niah_single_3 | 100.00 | 99.80 | 99.80 |
| RULER seqlen = 131072 ruler_cwe | 96.19 | 39.42 | 37.92 |
| RULER seqlen = 131072 ruler_fwe | 98.86 | 92.93 | 91.87 |
| RULER seqlen = 131072 ruler_qa_hotpot | 100.00 | 48.20 | 48.20 |
| RULER seqlen = 131072 ruler_qa_squad | 98.81 | 53.57 | 52.93 |
| RULER seqlen = 131072 ruler_qa_vt | 100.35 | 92.28 | 92.60 |
| RULER seqlen = 131072 Average Score | 99.49 | 80.44 | 80.03 |
| MMMU 0-shot | 97.92 | 53.44 | 52.33 |
| ChartQA 0-shot exact_match | 100.12 | 65.88 | 65.96 |
| ChartQA 0-shot relaxed_accuracy | 99.69 | 88.92 | 88.64 |
| Multimodal Average Score | 99.38 | 69.41 | 68.98 |