From 537c869d26009f599ba0e9d87677d7c6b8add6e2 Mon Sep 17 00:00:00 2001 From: DvirDukhan Date: Sun, 21 Feb 2021 13:24:07 +0200 Subject: [PATCH] dlpack v0.3 --- get_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get_deps.sh b/get_deps.sh index fc8a6d438..36a9c3854 100755 --- a/get_deps.sh +++ b/get_deps.sh @@ -70,13 +70,13 @@ MKL=mkl ONNXRUNTIME=onnxruntime ######################################################################################## DLPACK - +DLPACK_VERSION="v0.3" if [[ $WITH_DLPACK != 0 ]]; then [[ $FORCE == 1 ]] && rm -rf $DLPACK if [[ ! -d $DLPACK ]]; then echo "Cloning dlpack ..." - git clone --depth 1 https://github.com/dmlc/dlpack.git $DLPACK + git clone --depth 1 --branch $DLPACK_VERSION https://github.com/dmlc/dlpack.git $DLPACK echo "Done." else echo "dlpack is in place."