Skip to content
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

Remove raft/matrix/matrix.cuh includes #1498

Merged
merged 13 commits into from
May 11, 2023
Prev Previous commit
Next Next commit
fix
  • Loading branch information
benfred committed May 9, 2023
commit 1d91909e4c81ea057b25cffa7f49e241089914f1
6 changes: 3 additions & 3 deletions cpp/include/raft/linalg/detail/matrix_vector_op.cuh
Original file line number Diff line number Diff line change
@@ -39,11 +39,11 @@ void matrixVectorOp(MatT* out,
if (rowMajor) {
matrix::linewise_op<MatT, IdxType, row_major, Lambda>(
handle,
make_device_matrix_view<const MatT, IdxType, row_major>(matrix, D, N),
make_device_matrix_view<MatT, IdxType, row_major>(out, D, N),
make_device_matrix_view<const MatT, IdxType, row_major>(matrix, N, D),
make_device_matrix_view<MatT, IdxType, row_major>(out, N, D),
along_lines,
op,
make_device_vector_view<const VecT, IdxType>(vec, along_lines ? D : N));
make_device_vector_view<const VecT, IdxType>(vec, along_lines ? N : D));
} else {
matrix::linewise_op<MatT, IdxType, col_major, Lambda>(
handle,