Skip to content

Commit 375a86d

Browse files
committed
Fix clang format
1 parent f506ac6 commit 375a86d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test-e2e/syclcompat/helloworld.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ int main(int argc, char **argv) {
111111
std::cout << "Computing result using SYCL Kernel... ";
112112
if (block_size == 16) {
113113
syclcompat::launch<slope_intercept<16>>(grid, threads, d_Y, d_X, m, b,
114-
n_points);
114+
n_points);
115115
} else {
116116
syclcompat::launch<slope_intercept<32>>(grid, threads, d_Y, d_X, m, b,
117-
n_points);
117+
n_points);
118118
}
119119
syclcompat::wait();
120120
std::cout << "DONE" << "\n";

0 commit comments

Comments
 (0)