Lines Matching full:parallel
17 !$omp target parallel device(0)
21 !$omp end target parallel
23 !ERROR: At most one DEVICE clause can appear on the TARGET PARALLEL directive
24 !$omp target parallel device(0) device(1)
28 !$omp end target parallel
30 !$omp target parallel defaultmap(tofrom:scalar)
34 !$omp end target parallel
37 !$omp target parallel defaultmap(tofrom)
41 !$omp end target parallel
43 !ERROR: At most one DEFAULTMAP clause can appear on the TARGET PARALLEL directive
44 !$omp target parallel defaultmap(tofrom:scalar) defaultmap(tofrom:scalar)
48 !$omp end target parallel
50 !$omp target parallel map(tofrom:a)
54 !$omp end target parallel
56 !ERROR: COPYIN clause is not allowed on the TARGET PARALLEL directive
58 !$omp target parallel copyin(a)
62 !$omp end target parallel
64 !$omp target parallel do device(0)
68 !$omp end target parallel do
70 !ERROR: At most one DEVICE clause can appear on the TARGET PARALLEL DO directive
71 !$omp target parallel do device(0) device(1)
75 !$omp end target parallel do
77 !$omp target parallel do defaultmap(tofrom:scalar)
81 !$omp end target parallel do
84 !$omp target parallel do defaultmap(tofrom)
88 !$omp end target parallel do
90 !ERROR: At most one DEFAULTMAP clause can appear on the TARGET PARALLEL DO directive
91 !$omp target parallel do defaultmap(tofrom:scalar) defaultmap(tofrom:scalar)
95 !$omp end target parallel do
97 !$omp target parallel do map(tofrom:a)
101 !$omp end target parallel do
103 !ERROR: COPYIN clause is not allowed on the TARGET PARALLEL DO directive
105 !$omp target parallel do copyin(a)
109 !$omp end target parallel do
317 !$omp target teams distribute parallel do device(0)
321 !$omp end target teams distribute parallel do
323 !ERROR: At most one DEVICE clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO directive
324 !$omp target teams distribute parallel do device(0) device(1)
328 !$omp end target teams distribute parallel do
330 !$omp target teams distribute parallel do defaultmap(tofrom:scalar)
334 !$omp end target teams distribute parallel do
337 !$omp target teams distribute parallel do defaultmap(tofrom)
341 !$omp end target teams distribute parallel do
343 !ERROR: At most one DEFAULTMAP clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO directive
344 !$omp target teams distribute parallel do defaultmap(tofrom:scalar) defaultmap(tofrom:scalar)
348 !$omp end target teams distribute parallel do
350 !$omp target teams distribute parallel do num_teams(3) thread_limit(10) default(shared) private(i) shared(a)
354 !$omp end target teams distribute parallel do
356 !ERROR: At most one NUM_TEAMS clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO directive
357 !$omp target teams distribute parallel do num_teams(2) num_teams(3)
361 !$omp end target teams distribute parallel do
364 !$omp target teams distribute parallel do num_teams(-1)
368 !$omp end target teams distribute parallel do
370 !ERROR: At most one THREAD_LIMIT clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO directive
371 !$omp target teams distribute parallel do thread_limit(2) thread_limit(3)
375 !$omp end target teams distribute parallel do
378 !$omp target teams distribute parallel do thread_limit(-1)
382 !$omp end target teams distribute parallel do
384 !ERROR: At most one DEFAULT clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO directive
385 !$omp target teams distribute parallel do default(shared) default(private)
389 !$omp end target teams distribute parallel do
391 !$omp target teams distribute parallel do num_teams(2) defaultmap(tofrom:scalar)
395 !$omp end target teams distribute parallel do
397 !$omp target teams distribute parallel do map(tofrom:a)
401 !$omp end target teams distribute parallel do
403 !ERROR: Only the TO, FROM, TOFROM, ALLOC map types are permitted for MAP clauses on the TARGET TEAMS DISTRIBUTE PARALLEL DO directive
404 !$omp target teams distribute parallel do map(delete:a)
408 !$omp end target teams distribute parallel do
411 !$omp target teams distribute parallel do simd map(a)
415 !$omp end target teams distribute parallel do simd
417 !$omp target teams distribute parallel do simd device(0)
421 !$omp end target teams distribute parallel do simd
423 !ERROR: At most one DEVICE clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD directive
424 !$omp target teams distribute parallel do simd device(0) device(1)
428 !$omp end target teams distribute parallel do simd
430 !$omp target teams distribute parallel do simd defaultmap(tofrom:scalar)
434 !$omp end target teams distribute parallel do simd
437 !$omp target teams distribute parallel do simd defaultmap(tofrom)
441 !$omp end target teams distribute parallel do simd
443 !ERROR: At most one DEFAULTMAP clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD directive
444 !$omp target teams distribute parallel do simd defaultmap(tofrom:scalar) defaultmap(tofrom:scalar)
448 !$omp end target teams distribute parallel do simd
450 !$omp target teams distribute parallel do simd num_teams(3) thread_limit(10) default(shared) private(i) shared(a)
454 !$omp end target teams distribute parallel do simd
456 !ERROR: At most one NUM_TEAMS clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD directive
457 !$omp target teams distribute parallel do simd num_teams(2) num_teams(3)
461 !$omp end target teams distribute parallel do simd
464 !$omp target teams distribute parallel do simd num_teams(-1)
468 !$omp end target teams distribute parallel do simd
470 !ERROR: At most one THREAD_LIMIT clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD directive
471 !$omp target teams distribute parallel do simd thread_limit(2) thread_limit(3)
475 !$omp end target teams distribute parallel do simd
478 !$omp target teams distribute parallel do simd thread_limit(-1)
482 !$omp end target teams distribute parallel do simd
484 !ERROR: At most one DEFAULT clause can appear on the TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD directive
485 !$omp target teams distribute parallel do simd default(shared) default(private)
489 !$omp end target teams distribute parallel do simd
491 !$omp target teams distribute parallel do simd num_teams(2) defaultmap(tofrom:scalar)
495 !$omp end target teams distribute parallel do simd
497 !$omp target teams distribute parallel do simd map(tofrom:a)
501 !$omp end target teams distribute parallel do simd
503 !ERROR: Only the TO, FROM, TOFROM, ALLOC map types are permitted for MAP clauses on the TARGET TEAMS DISTRIBUTE PARALLEL DO SIMD directive
504 !$omp target teams distribute parallel do simd map(delete:a)
508 !$omp end target teams distribute parallel do simd