TensorRT-LLMs/tests/integration/test_lists/test-db
Yiqing Yan 108248ece1
[TRTLLM-7999][infra] Add B300/GB300 single gpu test (#7951)
Signed-off-by: Yiqing Yan <yiqingy@nvidia.com>
2025-09-26 09:59:11 +08:00
..
l0_a10.yml [TRTLLM-5235][feat] Enable regex and EBNF grammar in trtllm-serve (#7925) 2025-09-24 18:30:23 +08:00
l0_a30.yml [None][ci] move some test cases from l40s to a30 (#7684) 2025-09-11 07:22:34 +08:00
l0_a100.yml [None][chore] move some cases from post-merge to pre-merge to detect errors in early stage (#7699) 2025-09-15 15:37:58 +08:00
l0_b200.yml [None][ci] move qwen3 tests from GB200 to B200 (#7733) 2025-09-16 08:12:28 +08:00
l0_b300.yml [TRTLLM-7999][infra] Add B300/GB300 single gpu test (#7951) 2025-09-26 09:59:11 +08:00
l0_dgx_b200.yml [https://nvbugs/5516710][fix] fix Llama 3.3 TP PP case (#7717) 2025-09-25 21:02:35 +08:00
l0_dgx_b300.yml [TRTLLM-4629] [feat] Add support of CUDA13 and sm103 devices (#7568) 2025-09-16 09:56:18 +08:00
l0_dgx_h100.yml [None][feat] support gpt-oss with fp8 kv cache (#7612) 2025-09-15 02:17:37 +08:00
l0_dgx_h200.yml [None][ci] move some test cases of DGX H100 to post merge (#7569) 2025-09-06 01:03:38 -04:00
l0_gb200_multi_gpus.yml [https://nvbugs/5516665][fix] Fix CUTLASS moe fake impl errors (#7714) 2025-09-22 11:08:39 -07:00
l0_gb200_multi_nodes.yml [None][fix] Fix and add test for TRTLLM MoE backend (#7755) 2025-09-23 11:26:25 +08:00
l0_gb202.yml [None][ci] move unittests to sub-directories (#6635) 2025-08-20 05:42:22 -04:00
l0_gb203.yml [TRTLLM-5277] chore: refine llmapi examples for 1.0 (part1) (#5431) 2025-07-01 19:06:41 +08:00
l0_gb300_multi_gpus.yml [TRTLLM-4629] [feat] Add support of CUDA13 and sm103 devices (#7568) 2025-09-16 09:56:18 +08:00
l0_gb300.yml [TRTLLM-7999][infra] Add B300/GB300 single gpu test (#7951) 2025-09-26 09:59:11 +08:00
l0_gh200.yml [None][test] Update llm_models_root to improve path handling on BareMetal environment (#7876) 2025-09-24 17:35:57 +08:00
l0_h100.yml [None][test] Update llm_models_root to improve path handling on BareMetal environment (#7876) 2025-09-24 17:35:57 +08:00
l0_l40s.yml [TRTLLM-7385][feat] Optimize Qwen2/2.5-VL performance (#7250) 2025-09-22 03:40:02 -07:00
l0_perf.yml CI: Performance regression tests update (#3531) 2025-06-01 09:47:55 +03:00
l0_rtx_pro_6000.yml [TRTLLM-7399][test] Add DS-R1/Qwen3 test cases for RTX 6000 (#7662) 2025-09-24 11:40:26 -04:00
l0_sanity_check.yml [TRTLLM-7989][infra] Bundle UCX and NIXL libs in the TRTLLM python package (#7766) 2025-09-22 16:43:35 +08:00
README.md Update (#2978) 2025-03-23 16:39:35 +08:00

Description

This folder contains test definition which is consumed by trt-test-db tool based on system specifications.

Installation

Install trt-test-db using the following command:

pip3 install --extra-index-url https://urm.nvidia.com/artifactory/api/pypi/sw-tensorrt-pypi/simple --ignore-installed trt-test-db==1.8.5+bc6df7

Test Definition

Test definitions are stored in YAML files located in ${TRT_LLM_ROOT}/tests/integration/test_lists/test-db/. These files define test conditions and the tests to be executed.

Example YAML Structure

version: 0.0.1
l0_e2e:
  - condition:
      terms:
        supports_fp8: true
      ranges:
        system_gpu_count:
          gte: 4
          lte: 4
      wildcards:
        gpu:
          - '*h100*'
        linux_distribution_name: ubuntu*
    tests:
      - examples/test_llama.py::test_llm_llama_v3_1_1node_multi_gpus[llama-3.1-8b-enable_fp8]
      - examples/test_llama.py::test_llm_llama_v3_1_1node_multi_gpus[llama-3.1-70b-enable_fp8]

Generating Test Lists

Use trt-test-db to generate a test list based on the system configuration:

trt-test-db -d /TensorRT-LLM/src/tests/integration/test_lists/test-db \
            --context l0_e2e \
            --test-names \
            --output /TensorRT-LLM/src/l0_e2e.txt \
            --match-exact '{"chip":"ga102gl-a","compute_capability":"8.6","cpu":"x86_64","gpu":"A10","gpu_memory":"23028.0","host_mem_available_mib":"989937","host_mem_total_mib":"1031949","is_aarch64":false,"is_linux":true,"linux_distribution_name":"ubuntu","linux_version":"22.04","supports_fp8":false,"supports_int8":true,"supports_tf32":true,"sysname":"Linux","system_gpu_count":"1",...}'

This command generates a test list file (l0_e2e.txt) based on the specified context and system configuration.

Running Tests

Execute the tests using pytest with the generated test list:

pytest -v --test-list=/TensorRT-LLM/src/l0_e2e.txt --output-dir=/tmp/logs

This command runs the tests specified in the test list and outputs the results to the specified directory.

Additional Information

  • The --context parameter in the trt-test-db command specifies which context to search in the YAML files.
  • The --match-exact parameter provides system information used to filter tests based on the conditions defined in the YAML files.
  • Modify the YAML files to add or update test conditions and test cases as needed. For more detailed information on trt-test-db and pytest usage, refer to their respective documentation.