Skip to content

Commit b7f65d1

Browse files
authored
add new unittest (#77)
# Description Please include a brief summary of the changes, relevant motivation and context. Fixes # (issue) ## Type of change - [ ] Documentation change (change only to the documentation, either a fix or a new content) - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Infra/Build change - [ ] Code refactoring ## Changes Please list the changes introduced in this PR: - Change A - Change B # Checklist: - [ ] I have read and followed the [contributing guidelines](https://github.com/NVIDIA/TransformerEngine/blob/main/CONTRIBUTING.rst) - [ ] The functionality is complete - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes
1 parent 23b5013 commit b7f65d1

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

transformer_engine/plugin/tests/run_all_tests.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
from test_softmax import SoftmaxTests
1111
from test_optimizer import OptimizerTests
1212
from test_flash_attention import FlashAttentionTests
13+
from test_te_general_grouped import grouped_gemmTests
14+
from test_policy import run_all_tests
1315

1416

1517
def main():
@@ -27,6 +29,7 @@ def main():
2729
SoftmaxTests(device=device),
2830
OptimizerTests(device=device),
2931
FlashAttentionTests(device=device),
32+
grouped_gemmTests(device=device),
3033
]
3134

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

55+
run_all_tests()
56+
5257
return 0 if all(success for _, success in results) else 1
5358

5459

0 commit comments

Comments
 (0)