test_example_convolution.py 206 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
import tilelang.testing

import example_convolution


@tilelang.testing.requires_cuda
def test_example_convolution():
    example_convolution.main()


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