]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Export the KOKKOS version numbers.
authorWolfgang Bangerth <bangerth@colostate.edu>
Mon, 10 Mar 2025 22:09:44 +0000 (16:09 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Wed, 26 Mar 2025 16:21:07 +0000 (10:21 -0600)
bundled/setup_bundled.cmake
cmake/modules/FindDEAL_II_KOKKOS.cmake
include/deal.II/base/config.h.in

index f514af70fc2d2671df7e2da31da954805f0c9dc2..60106c434eb784e6d1e690fa8d2ccecadc3e6df3 100644 (file)
@@ -78,6 +78,9 @@ set(KOKKOS_FOLDER "${CMAKE_SOURCE_DIR}/bundled/kokkos-3.7.00")
 macro(feature_kokkos_configure_bundled)
   set(Kokkos_VERSION "3.7.0")
   set(KOKKOS_VERSION "3.7.0")
+  set(KOKKOS_VERSION_MAJOR "3")
+  set(KOKKOS_VERSION_MINOR "7")
+  set(KOKKOS_VERSION_SUBMINOR "0")
   set(Kokkos_DEVICES "Serial")
   set(Kokkos_ARCH " ")
 
index ac27fe1b626909b05a2667355bc9fff03031cfd5..e5266c783d820adab885fe541dbeb8dc0e330bcd 100644 (file)
@@ -20,6 +20,9 @@
 #   KOKKOS_INCLUDE_DIRS
 #   KOKKOS_INTERFACE_LINK_FLAGS
 #   KOKKOS_VERSION
+#   KOKKOS_VERSION_MAJOR
+#   KOKKOS_VERSION_MINOR
+#   KOKKOS_VERSION_SUBMINOR
 #
 
 set(KOKKOS_DIR "" CACHE PATH "An optional hint to a Kokkos installation")
@@ -162,4 +165,34 @@ if(KOKKOS_FOUND)
     # warning #940-D: missing return statement at end of non-void function
     enable_if_supported(DEAL_II_CXX_FLAGS "-Xcudafe --diag_suppress=940")
   endif()
+
+  #
+  # Extract version numbers:
+  #
+  if(NOT KOKKOS_VERSION)
+    if(Kokkos_VERSION)
+      set(KOKKOS_VERSION "${Kokkos_VERSION}")
+    else()
+      message(FATAL_ERROR "FindPackage(Kokkos) did not set KOKKOS_VERSION!")
+    endif()
+  endif()
+
+  string(REGEX REPLACE
+    "^([0-9]+).*$" "\\1"
+    KOKKOS_VERSION_MAJOR "${KOKKOS_VERSION}")
+
+  string(REGEX REPLACE
+    "^[0-9]+\\.([0-9]+).*$" "\\1"
+    KOKKOS_VERSION_MINOR "${KOKKOS_VERSION}")
+
+  # If there is no subminor number, KOKKOS_VERSION_SUBMINOR is set to an
+  # empty string. If that is the case, set the subminor number to zero
+  string(REGEX REPLACE
+    "^[0-9]+\\.[0-9]+\\.?(([0-9]+)?).*$" "\\1"
+    KOKKOS_VERSION_SUBMINOR "${KOKKOS_VERSION}")
+  if("${KOKKOS_VERSION_SUBMINOR}" STREQUAL "")
+    set(KOKKOS_VERSION_SUBMINOR "0")
+  endif()
+
+
 endif()
index 865ccf190ae93c36813ae054cefc5f05a597713e..c4e53dacdd095beec36bb65cbe0494d5a5de1a52 100644 (file)
@@ -429,6 +429,25 @@ DEAL_II_NAMESPACE_CLOSE
 #  define DEAL_II_GMSH_EXECUTABLE_PATH "@GMSH_EXECUTABLE@"
 #endif
 
+
+/**
+ * Kokkos:
+ */
+
+#ifdef DEAL_II_WITH_KOKKOS
+#  define DEAL_II_KOKKOS_VERSION_MAJOR @KOKKOS_VERSION_MAJOR@
+#  define DEAL_II_KOKKOS_VERSION_MINOR @KOKKOS_VERSION_MINOR@
+#  define DEAL_II_KOKKOS_VERSION_SUBMINOR @KOKKOS_VERSION_SUBMINOR@
+
+#  define DEAL_II_KOKKOS_VERSION_GTE(major,minor,subminor) \
+ ((DEAL_II_KOKKOS_VERSION_MAJOR * 10000 + \
+    DEAL_II_KOKKOS_VERSION_MINOR * 100 + \
+      DEAL_II_KOKKOS_VERSION_SUBMINOR) \
+    >=  \
+    (major)*10000 + (minor)*100 + (subminor))
+#endif
+
+
 /**
  * OpenCASCADE:
  */

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.