Skip to content
Merged
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
5 changes: 5 additions & 0 deletions transformer_engine/plugin/tests/run_all_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
from test_softmax import SoftmaxTests
from test_optimizer import OptimizerTests
from test_flash_attention import FlashAttentionTests
from test_te_general_grouped import grouped_gemmTests
from test_policy import run_all_tests


def main():
Expand All @@ -27,6 +29,7 @@ def main():
SoftmaxTests(device=device),
OptimizerTests(device=device),
FlashAttentionTests(device=device),
grouped_gemmTests(device=device),
]

results = []
Expand All @@ -49,6 +52,8 @@ def main():
print(f"Total: {total_passed}/{total_tests} test suites passed")
print("=" * 70)

run_all_tests()

return 0 if all(success for _, success in results) else 1


Expand Down
Loading