test_example_elementwise.py 310 Bytes
Newer Older
root's avatar
init  
root committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import tilelang.testing
import example_elementwise_add
import example_elementwise_add_tma_1d


def test_example_elementwise_add():
    example_elementwise_add.main()


def test_example_elementwise_add_tma_1d():
    example_elementwise_add_tma_1d.main()


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