We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This bug was detected by @uhetmaniuk while working on PR #1313. The bug is in kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:
CrsMatrix(const std::string& /*label*/, OrdinalType nrows, OrdinalType ncols, size_type annz, ScalarType* val, OrdinalType* rowmap, OrdinalType* cols) {
the sixth argument should be: size_type* rowmap instead of OrdinalType* rowmap
size_type* rowmap
OrdinalType* rowmap
The text was updated successfully, but these errors were encountered:
lucbv
No branches or pull requests
This bug was detected by @uhetmaniuk while working on PR #1313.
The bug is in kokkos-kernels/src/sparse/KokkosSparse_CrsMatrix.hpp:
the sixth argument should be:
size_type* rowmap
instead ofOrdinalType* rowmap
The text was updated successfully, but these errors were encountered: