Skip to content

Commit

Permalink
KokkosKernels - remove cusparse testing in spgemm.
Browse files Browse the repository at this point in the history
  • Loading branch information
kyungjoo-kim committed Sep 18, 2018
1 parent 0699921 commit f6d4f8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,9 @@ void test_spgemm(lno_t numRows, size_type nnz, lno_t bandwidth, lno_t row_size_v
crsMat_t output_mat2;
run_spgemm<crsMat_t, device>(input_mat, input_mat, SPGEMM_DEBUG, output_mat2);

SPGEMMAlgorithm algorithms [] = {SPGEMM_KK_MEMORY, SPGEMM_KK_SPEED, SPGEMM_KK_MEMSPEED, SPGEMM_CUSPARSE,SPGEMM_MKL};
SPGEMMAlgorithm algorithms [] = {SPGEMM_KK_MEMORY, SPGEMM_KK_SPEED, SPGEMM_KK_MEMSPEED, /* SPGEMM_CUSPARSE, */SPGEMM_MKL};

for (int ii = 0; ii < 5; ++ii){
for (int ii = 0; ii < 4; ++ii){

SPGEMMAlgorithm spgemm_algorithm = algorithms[ii];

Expand Down

0 comments on commit f6d4f8a

Please sign in to comment.