Commit dfb84db5 by Zhixun Tan Committed by Tianqi Chen

temporarily disable opengl in test_runtime_ndarray.py (#804)

parent 88c22c36
...@@ -7,8 +7,7 @@ def enabled_ctx_list(): ...@@ -7,8 +7,7 @@ def enabled_ctx_list():
('cl', tvm.opencl(0)), ('cl', tvm.opencl(0)),
('metal', tvm.metal(0)), ('metal', tvm.metal(0)),
('rocm', tvm.rocm(0)), ('rocm', tvm.rocm(0)),
('vpi', tvm.vpi(0)), ('vpi', tvm.vpi(0))]
('opengl', tvm.opengl(0))]
for k, v in ctx_list: for k, v in ctx_list:
assert tvm.context(k, 0) == v assert tvm.context(k, 0) == v
ctx_list = [x[1] for x in ctx_list if x[1].exist] ctx_list = [x[1] for x in ctx_list if x[1].exist]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment