This is an automated email from the ASF dual-hosted git repository.
ashutoshp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 5d2a947204 [TOPI] Making test_strided_set require a GPU for testing
(#13804)
5d2a947204 is described below
commit 5d2a94720481ce2e065822229bcd4355c6e3945c
Author: neildhickey <[email protected]>
AuthorDate: Wed Jan 18 22:05:00 2023 +0000
[TOPI] Making test_strided_set require a GPU for testing (#13804)
* [TOPI] Making test_strided_set require a GPU for testing
Skipping test_strided_set with ci_cpu docker image
due to an issue reported in https://github.com/apache/tvm/pull/13724.
---
tests/python/topi/python/test_topi_transform.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/python/topi/python/test_topi_transform.py
b/tests/python/topi/python/test_topi_transform.py
index 0f64b486f3..e34905f153 100644
--- a/tests/python/topi/python/test_topi_transform.py
+++ b/tests/python/topi/python/test_topi_transform.py
@@ -859,6 +859,7 @@ def test_dynamic_strided_slice():
verify_dynamic_strided_slice((3, 4, 3), [0, 2, 0], [1, 2, 3])
[email protected]_gpu
@tvm.testing.uses_gpu
def test_strided_set():
verify_strided_set((3, 4, 3), (3, 2, 2), [0, 3, 0], [4, 1, 4], [1, -1, 2])