Unverified Commit 3516cbe0 by Tianqi Chen Committed by GitHub

[TEST] Setup frontend stage (#2347)

parent 021099f8
...@@ -215,7 +215,7 @@ stage('Unit Test') { ...@@ -215,7 +215,7 @@ stage('Unit Test') {
stage('Integration Test') { stage('Integration Test') {
parallel 'topi: GPU': { parallel 'topi: GPU': {
node('GPU') { node('GPU') {
ws('workspace/tvm/it-python-gpu') { ws('workspace/tvm/topi-python-gpu') {
init_git() init_git()
unpack_lib('gpu', tvm_multilib) unpack_lib('gpu', tvm_multilib)
timeout(time: max_time, unit: 'MINUTES') { timeout(time: max_time, unit: 'MINUTES') {
...@@ -225,13 +225,13 @@ stage('Integration Test') { ...@@ -225,13 +225,13 @@ stage('Integration Test') {
} }
} }
}, },
'nnvm: GPU': { 'frontend: GPU': {
node('GPU') { node('GPU') {
ws('workspace/tvm/it-python-gpu') { ws('workspace/tvm/frontend-python-gpu') {
init_git() init_git()
unpack_lib('gpu', tvm_multilib) unpack_lib('gpu', tvm_multilib)
timeout(time: max_time, unit: 'MINUTES') { timeout(time: max_time, unit: 'MINUTES') {
sh "${docker_run} tvmai/ci-gpu ./tests/scripts/task_python_nnvm.sh" sh "${docker_run} tvmai/ci-gpu ./tests/scripts/task_python_frontend.sh"
} }
} }
} }
......
...@@ -13,7 +13,6 @@ python -m nose -v nnvm/tests/python/unittest || exit -1 ...@@ -13,7 +13,6 @@ python -m nose -v nnvm/tests/python/unittest || exit -1
python3 -m nose -v nnvm/tests/python/unittest || exit -1 python3 -m nose -v nnvm/tests/python/unittest || exit -1
echo "Running compiler test..." echo "Running compiler test..."
python -m nose -v nnvm/tests/python/compiler || exit -1
python3 -m nose -v nnvm/tests/python/compiler || exit -1 python3 -m nose -v nnvm/tests/python/compiler || exit -1
echo "Running ONNX frontend test..." echo "Running ONNX frontend test..."
......
...@@ -19,6 +19,7 @@ TVM_FFI=cython python -m nose -v tests/python/integration || exit -1 ...@@ -19,6 +19,7 @@ TVM_FFI=cython python -m nose -v tests/python/integration || exit -1
TVM_FFI=ctypes python3 -m nose -v tests/python/integration || exit -1 TVM_FFI=ctypes python3 -m nose -v tests/python/integration || exit -1
TVM_FFI=cython python -m nose -v tests/python/contrib || exit -1 TVM_FFI=cython python -m nose -v tests/python/contrib || exit -1
TVM_FFI=ctypes python3 -m nose -v tests/python/contrib || exit -1 TVM_FFI=ctypes python3 -m nose -v tests/python/contrib || exit -1
TVM_FFI=cython python -m nose -v tests/python/relay || exit -1 TVM_FFI=cython python -m nose -v tests/python/relay || exit -1
TVM_FFI=ctypes python3 -m nose -v tests/python/relay || exit -1 TVM_FFI=ctypes python3 -m nose -v tests/python/relay || exit -1
......
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