Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Rbiessy committed Oct 25, 2024
1 parent b4f553c commit a2177f7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions tests/unit_tests/sparse_blas/include/test_spmm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ void test_helper_with_format_with_transpose(
}
// In-order queue
EXPECT_TRUE_OR_FUTURE_SKIP(
test_functor_i32(dev, { sycl::property::queue::in_order{} }, format, nrows_A,
ncols_A, ncols_C, density_A_matrix, index_zero, col_major, transpose_A,
test_functor_i32(dev, { sycl::property::queue::in_order{} }, format, nrows_A, ncols_A,
ncols_C, density_A_matrix, index_zero, col_major, transpose_A,
transpose_B, fp_one, fp_zero, ldb, ldc, default_alg, default_A_view,
default_properties, no_reset_data, no_scalars_on_device),
num_passed, num_skipped);
Expand Down
7 changes: 3 additions & 4 deletions tests/unit_tests/sparse_blas/include/test_spmv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,9 @@ void test_helper_with_format_with_transpose(
}
// In-order queue
EXPECT_TRUE_OR_FUTURE_SKIP(
test_functor_i32(dev, { sycl::property::queue::in_order{} }, format, nrows_A,
ncols_A, density_A_matrix, index_zero, transpose_val, fp_one, fp_zero,
default_alg, default_A_view, default_properties, no_reset_data,
no_scalars_on_device),
test_functor_i32(dev, { sycl::property::queue::in_order{} }, format, nrows_A, ncols_A,
density_A_matrix, index_zero, transpose_val, fp_one, fp_zero, default_alg,
default_A_view, default_properties, no_reset_data, no_scalars_on_device),
num_passed, num_skipped);
}

Expand Down
6 changes: 3 additions & 3 deletions tests/unit_tests/sparse_blas/include/test_spsv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ void test_helper_with_format(testFunctorI32 test_functor_i32, testFunctorI64 tes
}
// In-order queue
EXPECT_TRUE_OR_FUTURE_SKIP(
test_functor_i32(dev, { sycl::property::queue::in_order{} }, format, m,
density_A_matrix, index_zero, transpose_val, alpha, default_alg,
default_A_view, default_properties, no_reset_data, no_scalars_on_device),
test_functor_i32(dev, { sycl::property::queue::in_order{} }, format, m, density_A_matrix,
index_zero, transpose_val, alpha, default_alg, default_A_view,
default_properties, no_reset_data, no_scalars_on_device),
num_passed, num_skipped);
}

Expand Down

0 comments on commit a2177f7

Please sign in to comment.