Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KokkosKernels: Fix for spgemm unit_test mkl macro #3442

Merged
merged 1 commit into from
Sep 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -301,14 +301,14 @@ void test_spgemm(lno_t numRows, size_type nnz, lno_t bandwidth, lno_t row_size_v
case SPGEMM_CUSPARSE:
//TODO: add these test failure cases for cusparse too.
algo = "SPGEMM_CUSPARSE";
#ifndef KERNELS_HAVE_CUSPARSE
#if !defined(KERNELS_HAVE_CUSPARSE) && !defined(KOKKOSKERNELS_ENABLE_TPL_CUSPARSE)
is_expected_to_fail = true;
#endif
break;

case SPGEMM_MKL:
algo = "SPGEMM_MKL";
#ifndef HAVE_KOKKOSKERNELS_MKL
#if !defined(HAVE_KOKKOSKERNELS_MKL) && !defined(KOKKOSKERNELS_ENABLE_TPL_MKL)
is_expected_to_fail = true;
#endif
//MKL requires scalar to be either float or double
Expand Down