Lines Matching full:teams
37 #pragma omp teams
40 #pragma omp teams default(none), private(argc,b) firstprivate(argv) shared (d) reduction(+:c) reduction(max:e) num_teams(C) thread_limit(d*C)
43 #pragma omp teams reduction(^:e, f) reduction(&& : g)
53 // CHECK-NEXT: #pragma omp teams
56 // CHECK-NEXT: #pragma omp teams default(none) private(argc,b) firstprivate(argv) shared(d) reduction(+: c) reduction(max: e) num_teams(5) thread_limit(d * 5)
59 // CHECK-NEXT: #pragma omp teams reduction(^: e,f) reduction(&&: g)
66 // CHECK-NEXT: #pragma omp teams
69 // CHECK-NEXT: #pragma omp teams default(none) private(argc,b) firstprivate(argv) shared(d) reduction(+: c) reduction(max: e) num_teams(1) thread_limit(d * 1)
72 // CHECK-NEXT: #pragma omp teams reduction(^: e,f) reduction(&&: g)
79 // CHECK-NEXT: #pragma omp teams
82 // CHECK-NEXT: #pragma omp teams default(none) private(argc,b) firstprivate(argv) shared(d) reduction(+: c) reduction(max: e) num_teams(C) thread_limit(d * C)
85 // CHECK-NEXT: #pragma omp teams reduction(^: e,f) reduction(&&: g)
98 #pragma omp teams
100 // CHECK-NEXT: #pragma omp teams
104 #pragma omp teams default(none), private(argc,b) num_teams(f) firstprivate(argv) reduction(| : c, d) reduction(* : e) thread_limit(f+g)
106 // CHECK-NEXT: #pragma omp teams default(none) private(argc,b) num_teams(f) firstprivate(argv) reduction(|: c,d) reduction(*: e) thread_limit(f + g)