From 74d9a3b68d31470fa19baff4b2b2a3b98fa225bc Mon Sep 17 00:00:00 2001 From: Evan Harvey Date: Tue, 12 Oct 2021 09:49:21 -0600 Subject: [PATCH] Revert "gmres: disable examples for builds with ibm/xl" This reverts commit adaa5510f9db1c9fbac8fef8e13afa6f23f0d383. --- example/gmres/CMakeLists.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/example/gmres/CMakeLists.txt b/example/gmres/CMakeLists.txt index 15bfaac95d..05b712af18 100644 --- a/example/gmres/CMakeLists.txt +++ b/example/gmres/CMakeLists.txt @@ -1,8 +1,6 @@ KOKKOSKERNELS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}) KOKKOSKERNELS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}) -# Workaround https://github.com/kokkos/kokkos/issues/4376 for ibm/xl -IF (NOT ${KOKKOS_COMPILER_IBM}) KOKKOSKERNELS_ADD_EXECUTABLE( gmres_ex_real_A SOURCES ex_real_A.cpp @@ -23,7 +21,3 @@ KOKKOSKERNELS_ADD_EXECUTABLE_AND_TEST( SOURCES test_prec.cpp ) -ELSE () - MESSAGE (STATUS "SKIPPING gmres examples - Kokkos::complex unsupported with ibm/xlC as host compiler") -ENDIF () -