test.sh 1.27 KB
Newer Older
1
# Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
Przemek Tredak's avatar
Przemek Tredak committed
2
3
4
5
6
7
8
#
# See LICENSE for license information.

set -e

: ${TE_PATH:=/opt/transformerengine}

9
pip install pytest==8.2.1 onnxruntime==1.13.1
10
pytest -v -s $TE_PATH/tests/pytorch/test_sanity.py
11
pytest -v -s $TE_PATH/tests/pytorch/test_recipe.py
12
pytest -v -s $TE_PATH/tests/pytorch/test_deferred_init.py
13
14
PYTORCH_JIT=0 NVTE_TORCH_COMPILE=0 NVTE_ALLOW_NONDETERMINISTIC_ALGO=0 pytest -v -s $TE_PATH/tests/pytorch/test_numerics.py
PYTORCH_JIT=0 NVTE_TORCH_COMPILE=0 NVTE_ALLOW_NONDETERMINISTIC_ALGO=0 pytest -v -s $TE_PATH/tests/pytorch/test_cuda_graphs.py
15
pytest -v -s $TE_PATH/tests/pytorch/test_jit.py
16
NVTE_TORCH_COMPILE=0 pytest -v -s $TE_PATH/tests/pytorch/fused_attn/test_fused_attn.py
17
pytest -v -s $TE_PATH/tests/pytorch/test_fused_rope.py
18
NVTE_TORCH_COMPILE=0 pytest -v -s $TE_PATH/tests/pytorch/test_onnx_export.py
19
pytest -v -s $TE_PATH/tests/pytorch/test_float8tensor.py
20
21
pytest -v -s $TE_PATH/tests/pytorch/test_torch_save_load.py
pytest -v -s $TE_PATH/tests/pytorch/test_gqa.py
22
23
pytest -v -s $TE_PATH/tests/pytorch/test_fused_optimizer.py
pytest -v -s $TE_PATH/tests/pytorch/test_multi_tensor.py
24
25
pytest -v -s $TE_PATH/tests/pytorch/test_fusible_ops.py
pytest -v -s $TE_PATH/tests/pytorch/test_fusible_ops_distributed.py