Loading src/Benchmarks/SpMV/spmv.h +2 −1 Original line number Diff line number Diff line Loading @@ -180,10 +180,11 @@ benchmarkSpMV( Benchmark& benchmark, auto spmvHost = [&]() { hostMatrix.vectorProduct( hostVector, hostVector2 ); }; #ifdef HAVE_CUDA auto spmvCuda = [&]() { deviceMatrix.vectorProduct( deviceVector, deviceVector2 ); }; #ifdef HAVE_CUDA auto spmvCusparse = [&]() { cusparseCSR.vectorProduct( deviceVector, deviceVector2 ); }; Loading Loading
src/Benchmarks/SpMV/spmv.h +2 −1 Original line number Diff line number Diff line Loading @@ -180,10 +180,11 @@ benchmarkSpMV( Benchmark& benchmark, auto spmvHost = [&]() { hostMatrix.vectorProduct( hostVector, hostVector2 ); }; #ifdef HAVE_CUDA auto spmvCuda = [&]() { deviceMatrix.vectorProduct( deviceVector, deviceVector2 ); }; #ifdef HAVE_CUDA auto spmvCusparse = [&]() { cusparseCSR.vectorProduct( deviceVector, deviceVector2 ); }; Loading