From 29017f7f33e2b10ccfed4873d779e93d4674d471 Mon Sep 17 00:00:00 2001 From: Yuuichi Asahi Date: Tue, 15 Oct 2024 11:14:00 +0900 Subject: [PATCH] update dminimum kokkos version in docs and CMake --- CMakeLists.txt | 2 +- README.md | 2 +- docs/intro/quick_start.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f1eeb385..c172ceb5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ set(KOKKOSFFT_VERSION_MAJOR ${PROJECT_VERSION_MAJOR}) set(KOKKOSFFT_VERSION_MINOR ${PROJECT_VERSION_MINOR}) set(KOKKOSFFT_VERSION_PATCH ${PROJECT_VERSION_PATCH}) -set(KOKKOS_REQUIRED_VERSION 4.2.0) +set(KOKKOS_REQUIRED_VERSION 4.4.0) if (NOT KokkosFFT_ENABLE_INTERNAL_KOKKOS) # First check, Kokkos is added as subdirectory or not diff --git a/README.md b/README.md index 6bf68c7d..932368f9 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ git clone --recursive https://github.com/kokkos/kokkos-fft.git ### Prerequisites To use Kokkos-fft, we need the followings: * `CMake 3.22+` -* `Kokkos 4.2+` +* `Kokkos 4.4+` * `gcc 8.3.0+` (CPUs) * `IntelLLVM 2023.0.0+` (CPUs, Intel GPUs) * `nvcc 11.0.0+` (NVIDIA GPUs) diff --git a/docs/intro/quick_start.rst b/docs/intro/quick_start.rst index ae1af1d2..0ca9c325 100644 --- a/docs/intro/quick_start.rst +++ b/docs/intro/quick_start.rst @@ -20,7 +20,7 @@ If CMake fails to find a backend FFT library, see :doc:`How to find fft librarie Requirements ------------ -Kokkos-fft requires ``Kokkos 4.2+`` and dedicated compilers for CPUs or GPUs. +Kokkos-fft requires ``Kokkos 4.4+`` and dedicated compilers for CPUs or GPUs. It employs ``CMake 3.22+`` for building. Here are list of compilers we frequently use for testing.