Searched refs:thread_limit (Results 1 - 13 of 13) sorted by relevance

/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/
H A Dthread-limit-3.c8 #pragma omp teams thread_limit (1)
H A Dthread-limit-2.c21 #pragma omp teams thread_limit (6)
H A Dtarget-6.c46 #pragma omp teams thread_limit (2)
H A Dtarget-1.c38 #pragma omp teams num_teams(y) thread_limit(z) reduction(+:s) firstprivate(x)
/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) \
28 thread_limit (n * 2) dist_schedule (static, 4)
39 thread_limit (n * 2) dist_schedule (static, 4)
50 thread_limit (n * 2) dist_schedule (static, 4) collapse (2) \
66 thread_limit (n * 2) dist_schedule (static, 4) num_threads (n + 4) \
83 thread_limit (n * 2) dist_schedule (static, 4) collapse (2) \
97 thread_limit (n * 2) dist_schedule (static, 4) num_threads (n + 4) \
110 thread_limit (n * 2) dist_schedule (static, 4) collapse (2) \
123 thread_limit (n * 2) dist_schedule (static, 4) lastprivate (s) \
133 #pragma omp teams num_teams (n + 4) thread_limit (
[all...]
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/examples-4/
H A De.54.4.c35 #pragma omp teams num_teams(8) thread_limit(16)
H A De.54.2.c36 #pragma omp teams num_teams(num_teams) thread_limit(block_threads) \
/haiku-buildtools/gcc/libgomp/
H A Dtarget.c1081 GOMP_teams (unsigned int num_teams, unsigned int thread_limit) argument
1083 if (thread_limit)
1087 = thread_limit > INT_MAX ? UINT_MAX : thread_limit;
/haiku-buildtools/gcc/gcc/fortran/
H A Dtrans-openmp.c2489 if (clauses->thread_limit)
2491 tree thread_limit; local
2494 gfc_conv_expr (&se, clauses->thread_limit);
2496 thread_limit = gfc_evaluate_now (se.expr, block);
2500 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = thread_limit;
3653 clausesa[GFC_OMP_SPLIT_TEAMS].thread_limit
3654 = code->ext.omp_clauses->thread_limit;
H A Dopenmp.c79 gfc_free_expr (c->thread_limit);
1086 if ((mask & OMP_CLAUSE_THREAD_LIMIT) && c->thread_limit == NULL
1087 && gfc_match ("thread_limit ( %e )", &c->thread_limit) == MATCH_YES)
3436 if (omp_clauses->thread_limit)
3438 gfc_expr *expr = omp_clauses->thread_limit;
H A Dgfortran.h1235 struct gfc_expr *thread_limit; member in struct:gfc_omp_clauses
H A Dfrontend-passes.c2344 WALK_SUBEXPR (co->ext.omp_clauses->thread_limit);
/haiku-buildtools/gcc/gcc/
H A Domp-low.c11650 tree thread_limit = find_omp_clause (gimple_omp_teams_clauses (teams_stmt),
11652 if (thread_limit == NULL_TREE)
11653 thread_limit = build_int_cst (unsigned_type_node, 0);
11656 thread_limit = OMP_CLAUSE_THREAD_LIMIT_EXPR (thread_limit);
11657 thread_limit = fold_convert (unsigned_type_node, thread_limit);
11658 gimplify_expr (&thread_limit, &bind_body, NULL, is_gimple_val,
11670 gimple call = gimple_build_call (decl, 2, num_teams, thread_limit);
11648 tree thread_limit = find_omp_clause (gimple_omp_teams_clauses (teams_stmt), local

Completed in 121 milliseconds