test_example_convolution.py 208 Bytes
Newer Older
1
2
3
4
5
6
7
import tilelang.testing

import example_convolution


@tilelang.testing.requires_cuda
def test_example_convolution():
8
    example_convolution.main([])
9
10
11
12


if __name__ == "__main__":
    tilelang.testing.main()