Skip to content

Commit

Permalink
Update par_matrix.cpp
Browse files Browse the repository at this point in the history
Debugging ParCSR transpose
  • Loading branch information
bienz2 authored Nov 22, 2023
1 parent c0fe871 commit 90bade4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions raptor/core/par_matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@ ParCSRMatrix* ParCSRMatrix::transpose()
send_mat = off_proc->to_CSC();
recv_mat = new CSCMatrix(local_num_rows, comm->send_data->size_msgs);

/*
// Add off_proc cols of matrix to send buffer
ctr = 0;
send_ptr[0] = 0;
Expand Down Expand Up @@ -823,6 +824,8 @@ ParCSRMatrix* ParCSRMatrix::transpose()
delete recv_mat;
return T;
*/
return NULL;
}
ParCOOMatrix* ParCOOMatrix::transpose()
{
Expand Down

0 comments on commit 90bade4

Please sign in to comment.