From c7903c0ec8143c7ac39e09072fd8125fb7a48d0b Mon Sep 17 00:00:00 2001 From: Ivy Date: Wed, 16 Feb 2022 14:37:11 +0800 Subject: [PATCH] update dnnl version from v1.5 to v2.2 --- docker/install/ubuntu_install_dnnl.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/install/ubuntu_install_dnnl.sh b/docker/install/ubuntu_install_dnnl.sh index fb0efd52a2c1..34f917ce6606 100755 --- a/docker/install/ubuntu_install_dnnl.sh +++ b/docker/install/ubuntu_install_dnnl.sh @@ -21,9 +21,9 @@ set -u set -o pipefail cd /usr/local/ -wget -q https://github.com/oneapi-src/oneDNN/releases/download/v1.5/dnnl_lnx_1.5.0_cpu_gomp.tgz -tar -xzf dnnl_lnx_1.5.0_cpu_gomp.tgz -mv dnnl_lnx_1.5.0_cpu_gomp/include/* /usr/local/include/ -mv dnnl_lnx_1.5.0_cpu_gomp/lib/libdnnl* /usr/local/lib/ -rm -rf dnnl_lnx_1.5.0_cpu_gomp.tgz dnnl_lnx_1.5.0_cpu_gomp +wget -q https://github.com/oneapi-src/oneDNN/releases/download/v2.2/dnnl_lnx_2.2.0_cpu_gomp.tgz +tar -xzf dnnl_lnx_2.2.0_cpu_gomp.tgz +mv dnnl_lnx_2.2.0_cpu_gomp/include/* /usr/local/include/ +mv dnnl_lnx_2.2.0_cpu_gomp/lib/libdnnl* /usr/local/lib/ +rm -rf dnnl_lnx_2.2.0_cpu_gomp.tgz dnnl_lnx_2.2.0_cpu_gomp cd -