Skip to content

Commit

Permalink
Removed commented out code.
Browse files Browse the repository at this point in the history
oseikuffuor1 authored and nicolasbock committed Nov 30, 2022
1 parent bbbde9c commit 9b59350
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/C-interface/ellpack/bml_transpose_ellpack_typed.c
Original file line number Diff line number Diff line change
@@ -307,21 +307,6 @@ void TYPED_FUNC(
omp_target_free(dBuffer, omp_get_default_device());
}

/*
// DEBUG:
#pragma omp target update from(csrRowPtrA[:N+1])
#pragma omp target update from(csrValA[:nnzA])
#pragma omp target update from(csrColIndA[:nnzA])
printf("From cuSPARSE: \n\n");
for(int i=0; i<N; i++)
{
for(int j=csrRowPtrA[i]; j<csrRowPtrA[i+1]; j++)
{
printf(" %f ", csrValA[j]);
}
printf("\n");
}
*/
// Done with matrix transpose operation.
// Update ellpack matrix (on device): copy from csr to ellpack format
TYPED_FUNC(bml_cucsr2ellpack_ellpack) (A);

0 comments on commit 9b59350

Please sign in to comment.