b2640260cd06e9e48c4713407e60218f66e337c4,tests/python/unittest/test_tir_transform_instrument_bound_checkers.py,,test_out_of_bounds_const_loop_partition_llvm,#Any#Any#,207
Before Change
@pytest.mark.xfail
def test_out_of_bounds_const_loop_partition_llvm(index_a, index_b):
with tvm.target.build_config(instrument_bound_checkers=True, partition_const_loop=True):
n = 21
A = te.placeholder((n, ), name="A")
B = te.placeholder((n, ), name="B")
After Change
@pytest.mark.xfail
def test_out_of_bounds_const_loop_partition_llvm(index_a, index_b):
with tvm.transform.PassContext(config={
"tir.instrument_bound_checkers": True,
"tir.LoopPartition": {"partition_const_loop": True}
}):
n = 21
A = te.placeholder((n, ), name="A")
B = te.placeholder((n, ), name="B")
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances
Project Name: apache/incubator-tvm
Commit Name: b2640260cd06e9e48c4713407e60218f66e337c4
Time: 2020-05-25
Author: tqchen@users.noreply.github.com
File Name: tests/python/unittest/test_tir_transform_instrument_bound_checkers.py
Class Name:
Method Name: test_out_of_bounds_const_loop_partition_llvm
Project Name: apache/incubator-tvm
Commit Name: b2640260cd06e9e48c4713407e60218f66e337c4
Time: 2020-05-25
Author: tqchen@users.noreply.github.com
File Name: tests/python/unittest/test_tir_transform_instrument_bound_checkers.py
Class Name:
Method Name: test_in_bounds_const_loop_partition_ir
Project Name: apache/incubator-tvm
Commit Name: b2640260cd06e9e48c4713407e60218f66e337c4
Time: 2020-05-25
Author: tqchen@users.noreply.github.com
File Name: tests/python/unittest/test_tir_transform_instrument_bound_checkers.py
Class Name:
Method Name: test_in_bounds_const_loop_partition_llvm
Project Name: apache/incubator-tvm
Commit Name: b2640260cd06e9e48c4713407e60218f66e337c4
Time: 2020-05-25
Author: tqchen@users.noreply.github.com
File Name: tests/python/unittest/test_tir_transform_instrument_bound_checkers.py
Class Name:
Method Name: test_out_of_bounds_const_loop_partition_llvm