test_example_elementwise.py 310 Bytes
Newer Older
1
2
import tilelang.testing
import example_elementwise_add
3
import example_elementwise_add_tma_1d
4
5
6
7
8
9


def test_example_elementwise_add():
    example_elementwise_add.main()


10
11
12
13
def test_example_elementwise_add_tma_1d():
    example_elementwise_add_tma_1d.main()


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