cutlass/tools/library/scripts/pycutlass/test/gemm/run_all_tests.py

10 lines
263 B
Python
Raw Normal View History

import pycutlass
import unittest
if __name__ == '__main__':
pycutlass.get_memory_pool(2**26, 2**26)
loader = unittest.TestLoader()
tests = loader.discover('./', 'gemm_*.py')
testRunner = unittest.runner.TextTestRunner()
testRunner.run(tests)