Skip to content

Commit

Permalink
[TOPI] Intel graphics conv2d autotvm template added (apache#3839)
Browse files Browse the repository at this point in the history
* update lint

* lint fixed

* lint updated

* lint fixed

* lint fixed

* lint fixed

* updates

* add intel graphics as a package

* remove print info

* depthwise conv2d schedule added for intel graphics

* asdf

* fix lint

* fix lint

* fix ci

* add channels
  • Loading branch information
Laurawly authored and wweic committed Sep 16, 2019
1 parent 574d24b commit 0758a37
Show file tree
Hide file tree
Showing 4 changed files with 611 additions and 154 deletions.
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

0 comments on commit 0758a37

Please sign in to comment.