From 969b6f72d16420ccb5d28b6f06dbee710bf64bac Mon Sep 17 00:00:00 2001 From: Paul Gessinger Date: Thu, 11 Jul 2024 16:16:01 +0200 Subject: [PATCH] nuke cugraph (needs closed source repo, can't compile from source apparently) --- ubuntu2204_exatrkx/Dockerfile | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/ubuntu2204_exatrkx/Dockerfile b/ubuntu2204_exatrkx/Dockerfile index 85cfc25..235bf58 100644 --- a/ubuntu2204_exatrkx/Dockerfile +++ b/ubuntu2204_exatrkx/Dockerfile @@ -60,13 +60,11 @@ ENV XXHASH_VERSION=0.7.3 ENV JSON_VERSION=3.11.2 ENV ROOT_VERSION=6.28.06 ENV TORCH_SCATTER_VERSION=2.1.2 -ENV CUGRAPH_VERSION=22.02.00 ENV ONNXRUNTIME_VERSION=1.13.1 # libtorch (unzip cannot be used in a pipe...) ENV LIBTORCH_URL_GPU https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Bcu121.zip - # xxHash RUN mkdir -p src \ && ${GET} https://github.com/Cyan4973/xxHash/archive/v${XXHASH_VERSION}.tar.gz \ @@ -129,20 +127,6 @@ RUN mkdir src \ && cmake --build build -- install \ && rm -rf build src -# cugraph -RUN mkdir src \ - && ${GET} https://github.com/rapidsai/cugraph/archive/refs/tags/v${CUGRAPH_VERSION}.tar.gz \ - | ${UNPACK_TO_SRC} \ - && cmake -B build -S src/cpp -GNinja \ - -DCMAKE_BUILD_TYPE=MinSizeRel \ - -DCMAKE_CXX_STANDARD=20 \ - -DCMAKE_INSTALL_PREFIX=${PREFIX} \ - -DCMAKE_CUDA_ARCHITECTURES=${CUDA_ARCH} \ - -DBUILD_TESTS=OFF \ - -DBUILD_CUGRAPH_MG_TESTS=OFF \ - && cmake --build build -- install \ - && rm -rf build src - # Onnx (download of tar.gz does not work out of the box, since the build.sh script requires a git repository) RUN git clone https://github.com/microsoft/onnxruntime src \ && (cd src && git checkout v${ONNXRUNTIME_VERSION}) \