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
Currently par_column_iter_mut (and its non-mutable variant, although that one is less relevant here) is only implemented for T: Scalar, which makes it impossible to use on matrices created via DMatrix::uninit.
I don't think this bound is necessary, and it makes it impossible to safely fill out an uninitialized matrix in parallel before marking it as initialized.
The text was updated successfully, but these errors were encountered:
Currently
par_column_iter_mut
(and its non-mutable variant, although that one is less relevant here) is only implemented forT: Scalar
, which makes it impossible to use on matrices created viaDMatrix::uninit
.I don't think this bound is necessary, and it makes it impossible to safely fill out an uninitialized matrix in parallel before marking it as initialized.
The text was updated successfully, but these errors were encountered: