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
I'm not 100% sure this is actually the problem, but I think it is: this causes the implicitly-defined copy-ctor for this (called internally by Kokkos in e.g. parallel_for) to initialize this bool field from whatever happens to be in memory, which is usually not technically a valid boolean value (e.g. 157).
In Trilinos/packages/kokkos-kernels/sparse/impl/KokkosSparse_twostage_gauss_seidel_impl.hpp
The text was updated successfully, but these errors were encountered:
An example failure here: https://github.com/kokkos/kokkos-kernels/actions/runs/11695504241/job/32571033270
I'm not 100% sure this is actually the problem, but I think it is: this causes the implicitly-defined copy-ctor for this (called internally by Kokkos in e.g.
parallel_for
) to initialize thisbool
field from whatever happens to be in memory, which is usually not technically a valid boolean value (e.g.157
).In
Trilinos/packages/kokkos-kernels/sparse/impl/KokkosSparse_twostage_gauss_seidel_impl.hpp
The text was updated successfully, but these errors were encountered: