-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
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
Fix bug with mkl impl of spgemm #1167
Conversation
Matching fix to trilinos/Trilinos#9891. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
THanks, @ndellingwood ! Please see questions below.
@@ -425,12 +424,6 @@ void mkl_symbolic( | |||
MKL\n"); return; | |||
} | |||
*/ | |||
if (std::is_same<idx, int>::value) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see where this if-block ends; is there a matching }
for it? Should the if-block just be converted to a block -- {
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@e10harvey there is not a matching brace to close this if block, that was what was causing the compilation error. There was an apparent copy+paste error in a past update to this file that duplicated the lines of code that I removed in this PR (and so removing the mismatch in open-closed braces)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@e10harvey See lines 433-448 of this file which had mistaken duplication to lines 428-431, removed by this PR
@ndellingwood, @lucbv: Shall I enable the auto-tester for pull requests targeting |
No description provided.