From 04bdcdeae48ffb6f22aeb3e7d9c15526a183b80f Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Wed, 26 Feb 2025 12:01:46 +0100 Subject: [PATCH] Update dependencies to chameleon v1.3.0 --- Packages/docker/dockerfile-ubuntu | 6 +++--- README.md | 4 ++-- Scripts/ci/chameleon.rb | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Packages/docker/dockerfile-ubuntu b/Packages/docker/dockerfile-ubuntu index ed4aded..8856060 100644 --- a/Packages/docker/dockerfile-ubuntu +++ b/Packages/docker/dockerfile-ubuntu @@ -11,9 +11,9 @@ RUN apt-get install -y git python-is-python3 cmake build-essential gfortran pkg- RUN apt-get autoremove -y #RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 -RUN wget https://gitlab.inria.fr/api/v4/projects/616/packages/generic/source/v1.2.0/chameleon-1.2.0.tar.gz && \ - tar xvf chameleon-1.2.0.tar.gz && \ - cd chameleon-1.2.0 && \ +RUN wget https://gitlab.inria.fr/api/v4/projects/616/packages/generic/source/v1.3.0/chameleon-1.3.0.tar.gz && \ + tar xvf chameleon-1.3.0.tar.gz && \ + cd chameleon-1.3.0 && \ mkdir build && \ cd build && \ cmake .. -DCHAMELEON_USE_MPI=ON -DBLA_VENDOR=Intel10_64lp -DCHAMELEON_KERNELS_MT=ON -DBUILD_SHARED_LIBS=ON && \ diff --git a/README.md b/README.md index 642ae09..771d2a6 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ To get fmr * Blas/Lapack * zlib and bzip2 * optional - * [Chameleon-v1.2.0](https://gitlab.inria.fr/solverstack/chameleon), MPI, StarPU + * [Chameleon-v1.3.0](https://gitlab.inria.fr/solverstack/chameleon), MPI, StarPU * MKL random generators * HDF5 @@ -76,7 +76,7 @@ To get fmr FMR was tested on Linux system and MacosX (10.15) with * compilers (Intel, clang, GNU) - * Blas/Lapack: openblas and MKL, Chameleon (release v1.2.0) + * Blas/Lapack: openblas and MKL, Chameleon (release v1.3.0) * MPI and runtime: OpenMPI and StarPU latest release * zlib and bzip2 * HDF5 1.10 or later (with the `--with-default-api-version=v110` configure flag) diff --git a/Scripts/ci/chameleon.rb b/Scripts/ci/chameleon.rb index aaea416..87e0c36 100644 --- a/Scripts/ci/chameleon.rb +++ b/Scripts/ci/chameleon.rb @@ -1,8 +1,8 @@ class Chameleon < Formula desc "Dense linear algebra subroutines for heterogeneous and distributed architectures" homepage "https://gitlab.inria.fr/solverstack/chameleon" - url "https://gitlab.inria.fr/api/v4/projects/616/packages/generic/source/v1.2.0/chameleon-1.2.0.tar.gz" - sha256 "b8988ecbff19c603ae9f61441653c21bba18d040bee9bb83f7fc9077043e50b4" + url "https://gitlab.inria.fr/api/v4/projects/616/packages/generic/source/v1.3.0/chameleon-1.3.0.tar.gz" + sha256 "2725d2d2a9885e619e0c8d41306b9b9dc6d5df635b710cf8d077a14803ea26cd" license "CeCILL-C" depends_on "cmake" => :build -- GitLab