amk227

Results 1 issues of amk227

Hi, I'm seeing a hang (infinite loop) in SerialSVD in Kokkos v4.6: ``` TEST(KokkosSerialSVD, does_not_solve2) { Kokkos::View A(Kokkos::ViewAllocateWithoutInitializing("A")); Kokkos::View U(Kokkos::ViewAllocateWithoutInitializing("U")); Kokkos::View V(Kokkos::ViewAllocateWithoutInitializing("V")); Kokkos::View S(Kokkos::ViewAllocateWithoutInitializing("S")); Kokkos::View work(Kokkos::ViewAllocateWithoutInitializing("work")); A(0, 0) = -2.3588494081694974e-03;...