-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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 typeinfo for sparse-matrix/vector display #30589
Conversation
Looks like an unrelated CI failure for Travis OSX: |
Travis mac is facing the issue of brew trying to compile GCC. #30599 should fix it. |
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.
May be good to add a test, an easy one would be with the Bool
after #30575 is merged.
e382f3f
to
b86e7c2
Compare
Added tests using bool arrays. |
Co-Authored-By: stevengj <[email protected]>
Fixed bug where |
Pushed more test fixes. |
CI is green, finally. Okay to merge? |
Should this also be backported to 1.0? |
Probably not so essential to backport; most people wouldn't even notice it before the modified |
When implementing #30575, I noticed that sparse matrices and vectors were not setting the
typeinfo
property of theIOContext
, despite the fact that they print the element type. This PR fixes that.