Searched refs:num_teams (Results 1 - 11 of 11) sorted by relevance

/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/examples-4/
H A De.54.2.c30 int num_teams, int block_threads)
36 #pragma omp teams num_teams(num_teams) thread_limit(block_threads) \
29 dotprod(float B[], float C[], int n, int block_size, int num_teams, int block_threads) argument
H A De.54.4.c35 #pragma omp teams num_teams(8) thread_limit(16)
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/gomp/
H A Dpr61486-2.c17 #pragma omp target teams device (n + 1) num_teams (n + 4) thread_limit (n * 2) \
25 #pragma omp target teams distribute device (n + 1) num_teams (n + 4) collapse (2) \
36 #pragma omp target teams distribute device (n + 1) num_teams (n + 4) \
47 #pragma omp target teams distribute parallel for device (n + 1) num_teams (n + 4) \
63 #pragma omp target teams distribute parallel for device (n + 1) num_teams (n + 4) \
85 schedule (static, 8) num_teams (n + 4) safelen(8)
99 num_teams (n + 4) safelen(16) linear(i:1) aligned (pp:4)
111 lastprivate (s) num_teams (n + 4) safelen(8)
124 num_teams (n + 4) safelen(16) linear(i:1) aligned (pp:4)
133 #pragma omp teams num_teams (
[all...]
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.fortran/examples-4/
H A De.54.2.f9013 function dotprod (B, C, N, block_size, num_teams, block_threads) result (sum)
16 integer :: N, block_size, num_teams, block_threads, i, i0 local in function:dotprod
18 !$omp target map(to: B, C, block_size, num_teams, block_threads)
19 !$omp teams num_teams(num_teams) thread_limit(block_threads) &
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/
H A Dtarget-1.c38 #pragma omp teams num_teams(y) thread_limit(z) reduction(+:s) firstprivate(x)
/haiku-buildtools/gcc/libgomp/
H A Dtarget.c1081 GOMP_teams (unsigned int num_teams, unsigned int thread_limit) argument
1089 (void) num_teams;
/haiku-buildtools/gcc/gcc/fortran/
H A Dtrans-openmp.c2459 if (clauses->num_teams)
2461 tree num_teams; local
2464 gfc_conv_expr (&se, clauses->num_teams);
2466 num_teams = gfc_evaluate_now (se.expr, block);
2470 OMP_CLAUSE_NUM_TEAMS_EXPR (c) = num_teams;
3651 clausesa[GFC_OMP_SPLIT_TEAMS].num_teams
3652 = code->ext.omp_clauses->num_teams;
H A Dopenmp.c77 gfc_free_expr (c->num_teams);
1080 if ((mask & OMP_CLAUSE_NUM_TEAMS) && c->num_teams == NULL
1081 && gfc_match ("num_teams ( %e )", &c->num_teams) == MATCH_YES)
3412 if (omp_clauses->num_teams)
3414 gfc_expr *expr = omp_clauses->num_teams;
H A Dgfortran.h1233 struct gfc_expr *num_teams; member in struct:gfc_omp_clauses
H A Dfrontend-passes.c2342 WALK_SUBEXPR (co->ext.omp_clauses->num_teams);
/haiku-buildtools/gcc/gcc/
H A Domp-low.c11640 tree num_teams = find_omp_clause (gimple_omp_teams_clauses (teams_stmt),
11642 if (num_teams == NULL_TREE)
11643 num_teams = build_int_cst (unsigned_type_node, 0);
11646 num_teams = OMP_CLAUSE_NUM_TEAMS_EXPR (num_teams);
11647 num_teams = fold_convert (unsigned_type_node, num_teams);
11648 gimplify_expr (&num_teams, &bind_body, NULL, is_gimple_val, fb_rvalue);
11670 gimple call = gimple_build_call (decl, 2, num_teams, thread_limit);
11638 tree num_teams = find_omp_clause (gimple_omp_teams_clauses (teams_stmt), local

Completed in 300 milliseconds