Skip to content

Commit

Permalink
Fix clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
vqd8a committed Nov 15, 2022
1 parent cb8b19e commit b654103
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void sptrsvcuSPARSE_symbolic(KernelHandle* sptrsv_handle,
h->vecXDescr_dummy, cudaValueType, CUSPARSE_SPSV_ALG_DEFAULT,
h->spsvDescr, h->pBuffer));

//Destroy dummy dense vector descriptors
// Destroy dummy dense vector descriptors
KOKKOS_CUSPARSE_SAFE_CALL(cusparseDestroyDnVec(h->vecBDescr_dummy));
KOKKOS_CUSPARSE_SAFE_CALL(cusparseDestroyDnVec(h->vecXDescr_dummy));
}
Expand Down Expand Up @@ -366,7 +366,7 @@ void sptrsvcuSPARSE_solve(KernelHandle* sptrsv_handle,
h->handle, h->transpose, &alpha, h->matDescr, h->vecBDescr,
h->vecXDescr, cudaValueType, CUSPARSE_SPSV_ALG_DEFAULT, h->spsvDescr));

//Destroy dense vector descriptors
// Destroy dense vector descriptors
KOKKOS_CUSPARSE_SAFE_CALL(cusparseDestroyDnVec(h->vecBDescr));
KOKKOS_CUSPARSE_SAFE_CALL(cusparseDestroyDnVec(h->vecXDescr));
}
Expand Down

0 comments on commit b654103

Please sign in to comment.