|
@@ -0,0 +1,96 @@
|
|
|
+# flake8: noqa
|
|
|
+"""Tests fp8 models against ground truth generation
|
|
|
+This verifies the flashinfer backend with fp8
|
|
|
+quantization and fp8 KV Cache without scaling
|
|
|
+factors Note: these tests will only pass on H100 GPU.
|
|
|
+"""
|
|
|
+import os
|
|
|
+from typing import List
|
|
|
+
|
|
|
+import pytest
|
|
|
+from transformers import AutoTokenizer
|
|
|
+
|
|
|
+from aphrodite import LLM, SamplingParams
|
|
|
+from tests.quantization.utils import is_quant_method_supported
|
|
|
+
|
|
|
+os.environ["TOKENIZERS_PARALLELISM"] = "true"
|
|
|
+
|
|
|
+MAX_MODEL_LEN = 1024
|
|
|
+
|
|
|
+MODELS = [
|
|
|
+ "nm-testing/Meta-Llama-3-8B-Instruct-FP8",
|
|
|
+]
|
|
|
+
|
|
|
+EXPECTED_STRS_MAP = {
|
|
|
+ "nm-testing/Meta-Llama-3-8B-Instruct-FP8": {
|
|
|
+ "auto": [
|
|
|
+ 'LLaMA is a high-throughput and memory-efficient inference and serving engine for Large Language Models (',
|
|
|
+ 'Here are the major milestones in the development of artificial intelligence (AI) from 1950 to ',
|
|
|
+ 'Artificial intelligence (AI) and human intelligence (HI) differ significantly in how they process information.',
|
|
|
+ 'A neural network is a complex system modeled after the human brain, consisting of interconnected nodes or "ne',
|
|
|
+ 'In the sterile, metallic halls of the robotics lab, a peculiar phenomenon occurred. Zeta-5',
|
|
|
+ 'The COVID-19 pandemic has had a profound impact on global economic structures and future business models. The',
|
|
|
+ 'The Mona Lisa, painted by Leonardo da Vinci in the early 16th century, is one of',
|
|
|
+ 'Here are the translations:\n\n**Japanese:** (Haya aki no tori, mushi o',
|
|
|
+ ],
|
|
|
+ "fp8": [
|
|
|
+ 'LLM (Large Language Model) is a type of artificial intelligence (AI) model that is trained',
|
|
|
+ 'Here are the major milestones in the development of artificial intelligence (AI) from 1950 to ',
|
|
|
+ 'Artificial intelligence (AI) and human intelligence (HI) differ significantly in how they process information.',
|
|
|
+ 'A neural network is a complex system modeled after the human brain, composed of interconnected nodes or "ne',
|
|
|
+ 'Zeta-5, a highly advanced robot designed for menial labor, whirred and beep',
|
|
|
+ 'The COVID-19 pandemic has had a profound impact on global economic structures and future business models. Here',
|
|
|
+ 'The Mona Lisa, painted by Leonardo da Vinci in the early 16th century, is one of',
|
|
|
+ 'Here are the translations:\n\n**Japanese:** (Haya aki no tori, guri o',
|
|
|
+ ]
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+# This test compares against golden strings for exact match since
|
|
|
+# there is no baseline implementation to compare against
|
|
|
+# and is unstable w.r.t specifics of the fp8 implementation or
|
|
|
+# the hardware being run on.
|
|
|
+# No assert to prevent it from breaking the build
|
|
|
+@pytest.mark.skipif(not is_quant_method_supported("fp8"),
|
|
|
+ reason="fp8 is not supported on this GPU type.")
|
|
|
+@pytest.mark.parametrize("model_name", MODELS)
|
|
|
+@pytest.mark.parametrize("kv_cache_dtype", ["auto", "fp8"])
|
|
|
+@pytest.mark.parametrize("backend", ["XFORMERS", "FLASHINFER"])
|
|
|
+def test_models(example_prompts, model_name, kv_cache_dtype, backend) -> None:
|
|
|
+ # Note that the golden strings may not work for FLASHINFER Backend.
|
|
|
+ # The intention is to test the path
|
|
|
+ os.environ["VLLM_ATTENTION_BACKEND"] = backend
|
|
|
+ model = LLM(model=model_name,
|
|
|
+ max_model_len=MAX_MODEL_LEN,
|
|
|
+ trust_remote_code=True,
|
|
|
+ quantization="fp8",
|
|
|
+ kv_cache_dtype=kv_cache_dtype)
|
|
|
+
|
|
|
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
|
|
|
+ formatted_prompts = [
|
|
|
+ tokenizer.apply_chat_template([{
|
|
|
+ "role": "user",
|
|
|
+ "content": prompt
|
|
|
+ }],
|
|
|
+ tokenize=False,
|
|
|
+ add_generation_prompt=True)
|
|
|
+ for prompt in example_prompts
|
|
|
+ ]
|
|
|
+
|
|
|
+ params = SamplingParams(max_tokens=20, temperature=0)
|
|
|
+ generations: List[str] = []
|
|
|
+ # Note: these need to be run 1 at a time due to numerical precision,
|
|
|
+ # since the expected strs were generated this way.
|
|
|
+ for prompt in formatted_prompts:
|
|
|
+ outputs = model.generate(prompt, params)
|
|
|
+ generations.append(outputs[0].outputs[0].text)
|
|
|
+ del model
|
|
|
+
|
|
|
+ print(f"Testing: {model_name} with kv_cache_dtype: {kv_cache_dtype}")
|
|
|
+ expected_strs = EXPECTED_STRS_MAP[model_name][kv_cache_dtype]
|
|
|
+ for i in range(len(example_prompts)):
|
|
|
+ generated_str = generations[i]
|
|
|
+ expected_str = expected_strs[i]
|
|
|
+ print(f"generated_str\n: {generated_str}")
|
|
|
+ print(f"expected_str\n: {expected_str}")
|