-
Notifications
You must be signed in to change notification settings - Fork 233
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
[CUSOLVER] Interface XsyevBatched #2577
Conversation
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.
Thank you @amontoison! 🙏
I need to learn how to do this myself 🙃
@testset "syevBatched!" begin | ||
batch_size = 5 | ||
for uplo in ('L', 'U') | ||
(uplo == 'L') && (elty == ComplexF32) && continue |
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.
Should this have a @test_broken
or something similar to avoid forgetting about it in the future?
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.
The issue is that one EVD in the batch randomly fails.
Maybe I should return an error directly in the function if someone wants to use it with this combinaison of parameters (uplo = 'L'
and T = ComplexF32
).
c29a227
to
dfac79d
Compare
b4813c1
to
2e38fc6
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2577 +/- ##
==========================================
+ Coverage 73.60% 73.65% +0.05%
==========================================
Files 156 156
Lines 15002 15030 +28
==========================================
+ Hits 11042 11071 +29
+ Misses 3960 3959 -1 ☔ View full report in Codecov by Sentry. |
Requested by @mtanneau.
I found a bug with
uplo = 'L'
and the precisionComplexF32
, I should open a ticket.I commented the related tests.