You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trilinos nightly builds are failing to compile in ifpack2 (all backends) with the following errors:
17:51:07 /home/jenkins/blake-new/workspace/KokkosEco_Trilinos_Blake_LLVM1507_Serial_debug/Trilinos/packages/ifpack2/src/Ifpack2_IlukGraph.hpp:598:98: error: too few arguments to function call, expected 4, have 3
17:51:07 KernelHandle->get_spiluk_handle()->get_nnzU());
17:51:07 ^
17:51:07 /home/jenkins/blake-new/workspace/KokkosEco_Trilinos_Blake_LLVM1507_Serial_debug/Trilinos/packages/ifpack2/src/Ifpack2_RILUK_def.hpp:620:17: note: in instantiation of member function 'Ifpack2::IlukGraph<Tpetra::CrsGraph<>, KokkosKernels::Experimental::KokkosKernelsHandle<const unsigned long, const int, double, Kokkos::Serial, Kokkos::HostSpace, Kokkos::HostSpace>>::initialize' requested here
17:51:07 Graph_->initialize (KernelHandle_); // this calls spiluk_symbolic
17:51:07 ^
17:51:07 /home/jenkins/blake-new/workspace/KokkosEco_Trilinos_Blake_LLVM1507_Serial_debug/Trilinos/kokkos-kernels/sparse/src/KokkosSparse_spiluk_handle.hpp:134:8: note: 'reset_handle' declared here
17:51:07 void reset_handle(const size_type nrows_, const size_type nnzL_,
17:51:07 ^
17:51:07 In file included from /home/jenkins/blake-new/workspace/KokkosEco_Trilinos_Blake_LLVM1507_Serial_debug/Build/packages/ifpack2/src/Ifpack2_RILUK_DOUBLE_INT_LONG_LONG_SERIAL.cpp:49:
17:51:07 In file included from /home/jenkins/blake-new/workspace/KokkosEco_Trilinos_Blake_LLVM1507_Serial_debug/Trilinos/packages/ifpack2/src/Ifpack2_RILUK_decl.hpp:55:
17:51:07 /home/jenkins/blake-new/workspace/KokkosEco_Trilinos_Blake_LLVM1507_Serial_debug/Trilinos/packages/ifpack2/src/Ifpack2_IlukGraph.hpp:618:76: error: too few arguments to function call, expected 4, have 3
17:51:07 KernelHandle->get_spiluk_handle()->reset_handle(NumMyRows, nnzL, nnzU);
17:51:07 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
17:51:07 /home/jenkins/blake-new/workspace/KokkosEco_Trilinos_Blake_LLVM1507_Serial_debug/Trilinos/kokkos-kernels/sparse/src/KokkosSparse_spiluk_handle.hpp:134:8: note: 'reset_handle' declared here
17:51:07 void reset_handle(const size_type nrows_, const size_type nnzL_,
This follows from merge of #2064 , @jgfouca can you take a look? It's not clear to me if the changes introduced a compatibility-breaking change which will need to be addressed and guarded (by version) in Trilinos, or perhaps a missing overload to handle function calls with fewer args (I'm guessing exec space instance maybe)?
Trilinos nightly builds are failing to compile in ifpack2 (all backends) with the following errors:
This follows from merge of #2064 , @jgfouca can you take a look? It's not clear to me if the changes introduced a compatibility-breaking change which will need to be addressed and guarded (by version) in Trilinos, or perhaps a missing overload to handle function calls with fewer args (I'm guessing exec space instance maybe)?
Reproducer (Blake, all queue):
Most of the packages enabled can be removed, probably only need to enable ifpack2 and its tests (snip above is from the nightly job)
The text was updated successfully, but these errors were encountered: