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
The added check for compatible dimensions in spmv #1301 seems to have exposed an incompatibility within Ifpack2 unit test Ifpack2_SGSMT_compare_with_Jacobi_MPI_4:
...
07:57:09 Test multiple threaded SGS sweeps compared w.r.t. Jacobi
07:57:09 Test that code {prec_mt_sgs.initialize ();} does not throw : passed
07:57:09 Test that code {prec_mt_sgs.compute ();} does not throw : passed
07:57:09 Test that code {prec_sgs2.initialize ();} does not throw : passed
07:57:09 Test that code {prec_sgs2.compute ();} does not throw : passed
07:57:09
07:57:09 p=0: *** Caught standard std::exception of type 'std::runtime_error' :
07:57:09
07:57:09 KokkosSparse::spmv (Generic): Dimensions do not match: , A: 250 x 250, x: 287 x 1, y: 250 x 1
07:57:09 [FAILED] (0.0245 sec) SGS_MT_double_int_longlong_JacobiComparison_UnitTest
07:57:09 Location: /home/jenkins/weaver-new/workspace/KokkosEco_Trilinos_Weaver_Gcc720_OpenMP_RelDbg/Trilinos/packages/ifpack2/test/unit_tests/Ifpack2_UnitTestSGSMT.cpp:59
07:57:09
07:57:09
07:57:09 The following tests FAILED:
07:57:09 0. SGS_MT_double_int_longlong_JacobiComparison_UnitTest ...
Reproducer:
This can be reproduced for various build types with Ifpack2 enabled, for example a Serial build on Blake. I'm posting a full configuration script used on Blake, but I think the key options to enable are Ifpack2 and MPI.
For source override, you can add symbolic links to the kokkos and kokkos-kernels repositories in the Trilinos source directory and add the cmake options:
-DKokkos_SOURCE_DIR_OVERRIDE:STRING=kokkos
-DKokkosKernels_SOURCE_DIR_OVERRIDE:STRING=kokkos-kernels \
The text was updated successfully, but these errors were encountered:
The added check for compatible dimensions in spmv #1301 seems to have exposed an incompatibility within Ifpack2 unit test
Ifpack2_SGSMT_compare_with_Jacobi_MPI_4
:@brian-kelley can you investigate this failure following #1301?
Reproducer:
This can be reproduced for various build types with Ifpack2 enabled, for example a Serial build on Blake. I'm posting a full configuration script used on Blake, but I think the key options to enable are Ifpack2 and MPI.
kokkos/kokkos@72efefa
4b9e29b
trilinos/Trilinos@05d2d86 (kokkos-promotion branch)
For source override, you can add symbolic links to the kokkos and kokkos-kernels repositories in the Trilinos source directory and add the cmake options:
-DKokkos_SOURCE_DIR_OVERRIDE:STRING=kokkos
-DKokkosKernels_SOURCE_DIR_OVERRIDE:STRING=kokkos-kernels \
The text was updated successfully, but these errors were encountered: