Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TOPI] Intel graphics conv2d autotvm template added #3839

Merged
merged 15 commits into from
Sep 7, 2019
15 changes: 8 additions & 7 deletions python/tvm/autotvm/tophub.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,16 @@

# the version of each package
PACKAGE_VERSION = {
'arm_cpu': "v0.04",
'llvm': "v0.03",
'arm_cpu': "v0.04",
'llvm': "v0.03",

'cuda': "v0.05",
'rocm': "v0.03",
'opencl': "v0.03",
'mali': "v0.05",
'cuda': "v0.05",
'rocm': "v0.03",
'opencl': "v0.03",
'mali': "v0.05",
'intel_graphics': "v0.01",

'vta': "v0.06",
'vta': "v0.06",
}

logger = logging.getLogger('autotvm')
Expand Down
2 changes: 2 additions & 0 deletions tests/python/frontend/nnvm_to_relay/test_alter_conv2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def convnet():
targets=['cuda',
'opencl -device=mali',
'opencl -device=intel_graphics',

'llvm -device=arm_cpu',
'llvm -device=core-avx-ii']

Expand All @@ -83,5 +84,6 @@ def convnet():
assert not relay.analysis.alpha_equal(N, O)

if __name__ == "__main__":
import numpy as np
np.random.seed(42)
test_alter_layout_conv2d()
Loading