@@ -162,7 +162,7 @@ int main(void) {
162
162
//
163
163
// Test: lastprivate clause on omp target teams distribute parallel for with nested parallel.
164
164
//
165
- TESTD ("omp target teams distribute parallel for num_teams(tms) num_threads(th)" , {
165
+ TESTD ("omp target teams distribute parallel for num_teams(tms) num_threads(th)" ,
166
166
for (int idx = 0 ; idx < tms * th ; idx ++ ) {
167
167
double q0 [1 ];
168
168
double q1 [1 ];
@@ -198,7 +198,7 @@ int main(void) {
198
198
}
199
199
S [idx ] += tmp ;
200
200
}
201
- } , VERIFY (0 , tms * th , S [i ], (double ) 2 * (N + (N /2 * (N + 1 ))) ));
201
+ , VERIFY (0 , tms * th , S [i ], (double ) 2 * (N + (N /2 * (N + 1 ))) ));
202
202
203
203
//
204
204
// Test: private clause on omp target teams distribute parallel for with nested parallel.
@@ -312,7 +312,7 @@ int main(void) {
312
312
// Test: Ensure coalesced scheduling on GPU.
313
313
//
314
314
if (!cpuExec ) {
315
- TESTD ("omp target teams distribute parallel for num_teams(tms) num_threads(th)" , {
315
+ TESTD ("omp target teams distribute parallel for num_teams(tms) num_threads(th)" ,
316
316
for (int idx = 0 ; idx < tms * th ; idx ++ ) {
317
317
S [idx ] = 0 ;
318
318
for (int i = 0 ; i < 96 ; i ++ ) {
@@ -336,7 +336,7 @@ int main(void) {
336
336
}
337
337
S [idx ] = tmp ;
338
338
}
339
- } , VERIFY (0 , tms * th , S [i ], (double ) 3 * 95 * 48 ));
339
+ , VERIFY (0 , tms * th , S [i ], (double ) 3 * 95 * 48 ));
340
340
} else {
341
341
DUMP_SUCCESS (1 );
342
342
}
0 commit comments