From 90bade4a34677f13072683195c27c4a4ba5d64c9 Mon Sep 17 00:00:00 2001 From: Amanda Bienz Date: Wed, 22 Nov 2023 13:27:35 -0700 Subject: [PATCH] Update par_matrix.cpp Debugging ParCSR transpose --- raptor/core/par_matrix.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/raptor/core/par_matrix.cpp b/raptor/core/par_matrix.cpp index 8d88694a..c12f9d6b 100644 --- a/raptor/core/par_matrix.cpp +++ b/raptor/core/par_matrix.cpp @@ -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; @@ -823,6 +824,8 @@ ParCSRMatrix* ParCSRMatrix::transpose() delete recv_mat; return T; + */ + return NULL; } ParCOOMatrix* ParCOOMatrix::transpose() {