[CI] Update MxNet to 1.6.0 with MKL (#5240)
authorHaichen Shen <shenhaichen@gmail.com>
Mon, 6 Apr 2020 06:38:24 +0000 (23:38 -0700)
committerGitHub <noreply@github.com>
Mon, 6 Apr 2020 06:38:24 +0000 (23:38 -0700)
docker/install/ubuntu_install_mxnet.sh
tests/python/frontend/mxnet/test_forward.py

index 0ce2e8d..d587843 100755 (executable)
@@ -20,4 +20,4 @@ set -e
 set -u
 set -o pipefail
 
-pip3 install mxnet==1.5.0
+pip3 install mxnet-mkl==1.6.0
index f015447..eb308c5 100644 (file)
@@ -125,7 +125,7 @@ def test_forward_rrelu():
     data = mx.sym.var('data')
     data = mx.sym.concat(data, -data, dim=1)  # negative part explicitly
     mx_sym = mx.sym.LeakyReLU(data, act_type='rrelu', lower_bound=0.3, upper_bound=0.7)
-    verify_mxnet_frontend_impl(mx_sym, (1, 3, 100, 100), (1, 6, 100, 100))
+    verify_mxnet_frontend_impl(mx_sym[0], (1, 3, 100, 100), (1, 6, 100, 100))
 
 def test_forward_prelu():
     data = mx.sym.var('data')