Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ mistralai/Mistral-Small-3.1-24B-Instruct-2503:
- accuracy: 29.20
- quant_algo: FP8
kv_cache_quant_algo: FP8
accuracy: 29.0
accuracy: 27.0
mistralai/Mistral-Nemo-Base-2407:
- quant_algo: FP8
kv_cache_quant_algo: FP8
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/defs/accuracy/test_llm_api_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,8 @@ class TestMistralSmall24B(LlmapiAccuracyTestHarness):
],
)
def test_auto_dtype(self, model_path, expected_quant_algo):
with LLM(model_path) as llm:
kv_cache_config = KvCacheConfig(free_gpu_memory_fraction=0.75)
Comment thread
brb-nv marked this conversation as resolved.
with LLM(model_path, kv_cache_config=kv_cache_config) as llm:
assert llm.args.quant_config.quant_algo == expected_quant_algo
task = CnnDailymail(self.MODEL_NAME)
task.evaluate(llm)
Expand Down