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
[MRG] MNT: Drop n_tasks in enet_coordinate_descent (#11712)
* MNT: Drop `n_tasks` in `enet_coordinate_descent`
In `enet_coordinate_descent`, `y` is always C-contiguous as it is
required by the function itself. So there is no need to compute the
stride length of `y`, `n_tasks`. Instead it can be treated as `1`, which
it is.
* MNT: Drop `n_tasks` in `enet_coordinate_descent`
In `sparse_enet_coordinate_descent`, `y` is always C-contiguous as it is
required by the function itself. So there is no need to compute the
stride length of `y`, `n_tasks`. Instead it can be treated as `1`, which
it is.
0 commit comments