Configure Kokkos Kernels:
cmake -S kokkos-kernels -B build-kokkos-kernels \
-DKokkos_ROOT=...
See all components are enabled
Kokkos Kernels components
COMMON: ON
BATCHED: ON
BLAS: ON
LAPACK: ON
GRAPH: ON
SPARSE: ON
ODE: ON
Configure again with a component disabled:
cmake -S kokkos-kernels -B build-kokkos-kernels \
-DKokkos_ROOT=...
-DKokkosKernels_ENABLE_COMPONENT_BATCHED=OFF
See all components are still enabled:
Kokkos Kernels components
COMMON: ON
BATCHED: ON
BLAS: ON
LAPACK: ON
GRAPH: ON
SPARSE: ON
ODE: ON
At best this is surprising behavior.
Configure Kokkos Kernels:
See all components are enabled
Configure again with a component disabled:
See all components are still enabled:
At best this is surprising behavior.