From commits-return-10515-archive-asf-public=cust-asf.ponee.io@tvm.apache.org Mon Apr 6 06:38:36 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 1745C180647 for ; Mon, 6 Apr 2020 08:38:35 +0200 (CEST) Received: (qmail 25583 invoked by uid 500); 6 Apr 2020 06:38:35 -0000 Mailing-List: contact commits-help@tvm.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tvm.apache.org Delivered-To: mailing list commits@tvm.apache.org Received: (qmail 25574 invoked by uid 99); 6 Apr 2020 06:38:35 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Apr 2020 06:38:35 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 31BA8819F7; Mon, 6 Apr 2020 06:38:35 +0000 (UTC) Date: Mon, 06 Apr 2020 06:38:34 +0000 To: "commits@tvm.apache.org" Subject: [incubator-tvm] branch master updated: [CI] Update MxNet to 1.6.0 with MKL (#5240) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158615511481.11663.9366440384773025966@gitbox.apache.org> From: haichen@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-tvm X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 799ff356b9308da9c06b61c214508851a35c3b93 X-Git-Newrev: 41b8fd1ead60e6f41594f6b3690cb1fff6feeef9 X-Git-Rev: 41b8fd1ead60e6f41594f6b3690cb1fff6feeef9 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. haichen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git The following commit(s) were added to refs/heads/master by this push: new 41b8fd1 [CI] Update MxNet to 1.6.0 with MKL (#5240) 41b8fd1 is described below commit 41b8fd1ead60e6f41594f6b3690cb1fff6feeef9 Author: Haichen Shen AuthorDate: Sun Apr 5 23:38:24 2020 -0700 [CI] Update MxNet to 1.6.0 with MKL (#5240) --- docker/install/ubuntu_install_mxnet.sh | 2 +- tests/python/frontend/mxnet/test_forward.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/install/ubuntu_install_mxnet.sh b/docker/install/ubuntu_install_mxnet.sh index 0ce2e8d..d587843 100755 --- a/docker/install/ubuntu_install_mxnet.sh +++ b/docker/install/ubuntu_install_mxnet.sh @@ -20,4 +20,4 @@ set -e set -u set -o pipefail -pip3 install mxnet==1.5.0 +pip3 install mxnet-mkl==1.6.0 diff --git a/tests/python/frontend/mxnet/test_forward.py b/tests/python/frontend/mxnet/test_forward.py index f015447..eb308c5 100644 --- a/tests/python/frontend/mxnet/test_forward.py +++ b/tests/python/frontend/mxnet/test_forward.py @@ -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')