mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
test: Waive test_llm cases (#4136)
* waive Signed-off-by: Enwei Zhu <21126786+syuoni@users.noreply.github.com> * Apply suggestions from code review Signed-off-by: Yanchao Lu <yanchaol@nvidia.com> --------- Signed-off-by: Enwei Zhu <21126786+syuoni@users.noreply.github.com> Signed-off-by: Yanchao Lu <yanchaol@nvidia.com> Co-authored-by: Yanchao Lu <yanchaol@nvidia.com>
This commit is contained in:
parent
389614ca99
commit
19eeef1ddd
@ -228,6 +228,7 @@ def test_llm_loading_from_hf():
|
||||
kv_cache_config=global_kvcache_config)
|
||||
|
||||
|
||||
@pytest.mark.skip(reason="https://nvbugs/5266240")
|
||||
@force_ampere
|
||||
@pytest.mark.part0
|
||||
def test_llm_loading_from_ckpt():
|
||||
@ -246,7 +247,11 @@ def test_llm_loading_from_ckpt():
|
||||
sampling_params=SamplingParams(max_tokens=8))
|
||||
|
||||
|
||||
@pytest.mark.parametrize('model_format', ['hf', 'ckpt'])
|
||||
@pytest.mark.parametrize('model_format', [
|
||||
'hf',
|
||||
pytest.param('ckpt',
|
||||
marks=pytest.mark.skip(reason="https://nvbugs/5266240"))
|
||||
])
|
||||
@pytest.mark.part0
|
||||
def test_llm_with_dummy_weights(model_format):
|
||||
# dummy_dir contains config.json and tokenizer files only
|
||||
|
||||
Loading…
Reference in New Issue
Block a user