| /netbsd/src/external/gpl3/gcc/dist/libgomp/ |
| D | teams.c | 32 GOMP_teams_reg (void (*fn) (void *), void *data, unsigned int num_teams, in GOMP_teams_reg() argument 47 if (num_teams == 0) in GOMP_teams_reg() 48 num_teams = gomp_nteams_var ? gomp_nteams_var : 3; in GOMP_teams_reg() 49 thr->num_teams = num_teams - 1; in GOMP_teams_reg() 50 for (thr->team_num = 0; thr->team_num < num_teams; thr->team_num++) in GOMP_teams_reg() 52 thr->num_teams = 0; in GOMP_teams_reg() 65 return thr->num_teams + 1; in omp_get_num_teams()
|
| D | icv.c | 152 omp_set_num_teams (int num_teams) in omp_set_num_teams() argument 154 if (num_teams >= 0) in omp_set_num_teams() 155 gomp_nteams_var = num_teams; in omp_set_num_teams()
|
| D | team.c | 59 unsigned int num_teams; member 93 thr->num_teams = data->num_teams; in gomp_thread_start() 657 nthr->num_teams = thr->num_teams; in gomp_team_start() 847 start_data->num_teams = thr->num_teams; in gomp_team_start()
|
| D | fortran.c | 486 omp_set_num_teams_ (const int32_t *num_teams) in omp_set_num_teams_() argument 488 omp_set_num_teams (*num_teams); in omp_set_num_teams_() 492 omp_set_num_teams_8_ (const int64_t *num_teams) in omp_set_num_teams_8_() argument 494 omp_set_num_teams (TO_INT (*num_teams)); in omp_set_num_teams_8_()
|
| D | omp_lib.f90.in | 568 subroutine omp_set_num_teams (num_teams) 569 integer (4), intent (in) :: num_teams local 571 subroutine omp_set_num_teams_8 (num_teams) 572 integer (8), intent (in) :: num_teams local
|
| D | affinity-fmt.c | 253 AFFINITY_TYPE (num_teams, 'T'),
|
| D | libgomp.h | 776 unsigned int num_teams; member
|
| D | target.c | 3244 GOMP_teams (unsigned int num_teams, unsigned int thread_limit) in GOMP_teams() argument 3252 (void) num_teams; in GOMP_teams() 3271 thr->num_teams = num_teams_low - 1; in GOMP_teams4() 3274 else if (thr->team_num == thr->num_teams) in GOMP_teams4()
|
| D | libgomp.texi | 696 that does not use the clause @code{num_teams}. 1296 which does not specify a @code{num_teams} clause. The 1301 @item @emph{Prototype}: @tab @code{void omp_set_num_teams(int num_teams);} 1306 @item @emph{Interface}: @tab @code{subroutine omp_set_num_teams(num_teams)} 1307 @item @tab @code{integer, intent(in) :: num_teams} 1964 without explicit @code{num_teams} clause. The value of this variable shall
|
| D | libgomp.info | 677 does not use the clause 'num_teams'. 1200 construct which does not specify a 'num_teams' clause. The 1204 _Prototype_: 'void omp_set_num_teams(int num_teams);' 1207 _Interface_: 'subroutine omp_set_num_teams(num_teams)' 1208 'integer, intent(in) :: num_teams' 1799 regions without explicit 'num_teams' clause. The value of this
|
| D | ChangeLog | 1177 * libgomp.h (struct gomp_thread): Add num_teams and team_num members. 1179 (gomp_thread_start): Initialize thr->num_teams and thr->team_num. 1180 (gomp_team_start): Initialize start_data->num_teams and 1181 start_data->team_num. Update nthr->num_teams and nthr->team_num. 1183 (GOMP_teams_reg): Set and restore thr->num_teams and thr->team_num 1185 (omp_get_num_teams): Use thr->num_teams + 1 instead of gomp_num_teams. 1456 gomp_teams_thread_limit_var as fallback if not zero. If num_teams 10690 (GOMP_target_ext): ... this. Add num_teams and thread_limit 10726 (GOMP_target_ext): ... this. Add num_teams and thread_limit
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | omp-low.cc | 14037 tree num_teams = omp_find_clause (gimple_omp_teams_clauses (teams_stmt), in lower_omp_teams() local 14040 if (num_teams == NULL_TREE) in lower_omp_teams() 14041 num_teams = build_int_cst (unsigned_type_node, 0); in lower_omp_teams() 14044 num_teams_lower = OMP_CLAUSE_NUM_TEAMS_LOWER_EXPR (num_teams); in lower_omp_teams() 14051 num_teams = OMP_CLAUSE_NUM_TEAMS_UPPER_EXPR (num_teams); in lower_omp_teams() 14052 num_teams = fold_convert (unsigned_type_node, num_teams); in lower_omp_teams() 14053 gimplify_expr (&num_teams, &bind_body, NULL, is_gimple_val, fb_rvalue); in lower_omp_teams() 14056 num_teams_lower = num_teams; in lower_omp_teams() 14077 = gimple_build_call (decl, 4, num_teams_lower, num_teams, thread_limit, in lower_omp_teams()
|
| D | omp-expand.cc | 936 tree num_teams = omp_find_clause (clauses, OMP_CLAUSE_NUM_TEAMS); in expand_teams_call() local 937 if (num_teams == NULL_TREE) in expand_teams_call() 938 num_teams = build_int_cst (unsigned_type_node, 0); in expand_teams_call() 941 num_teams = OMP_CLAUSE_NUM_TEAMS_UPPER_EXPR (num_teams); in expand_teams_call() 942 num_teams = fold_convert (unsigned_type_node, num_teams); in expand_teams_call() 966 args->quick_push (num_teams); in expand_teams_call()
|
| D | ChangeLog-2015 | 8495 to GOMP_target_ext. Add num_teams and thread_limit arguments. 8582 (expand_omp_target): Likewise. Pass num_teams and thread_limit
|
| D | ChangeLog-2021 | 4658 GOMP_teams, pass to it also num_teams lower-bound expression
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | ChangeLog-2015 | 1006 (cp_parser_omp_target): Likewise. Evaluate num_teams and 1023 (tsubst_expr): Evaluate num_teams and thread_limit expressions on
|