Skip to content

Commit

Permalink
Fix clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksmesh committed Jun 27, 2023
1 parent ccfcfae commit 3d739d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/accessor/accessor_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -490,13 +490,13 @@ void check_zero_length_buffer_constructor(GetAccFunctorT get_accessor_functor) {
bool check_iterator_methods = false;
if constexpr (Target == sycl::target::host_task) {
cgh.host_task([=] {
check_empty_accessor_constructor_post_conditions(acc, res_acc,
check_iterator_methods);
check_empty_accessor_constructor_post_conditions(
acc, res_acc, check_iterator_methods);
});
} else if constexpr (Target == sycl::target::device) {
cgh.parallel_for_work_group(r, [=](sycl::group<Dimension>) {
check_empty_accessor_constructor_post_conditions(acc, res_acc,
check_iterator_methods);
check_empty_accessor_constructor_post_conditions(
acc, res_acc, check_iterator_methods);
});
}
})
Expand Down

0 comments on commit 3d739d5

Please sign in to comment.