• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/

Lines Matching refs:team

339 @param num_threads number of threads per team requested for the teams construct
541 /* If necessary, pop the internal control stack values and replace the team
596 // Copy the task team from the new child / old parent team to the thread.
601 "team %p\n",
607 "depth of serial team %p to %d\n",
731 // 2) set to 0 when a new team is created
769 kmp_team_t *team = this_thr->th.th_team;
773 ompt_scope_begin, &(team->t.ompt_team_info.parallel_data),
774 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data),
813 kmp_team_t *team = this_thr->th.th_team;
817 ompt_scope_end, &(team->t.ompt_team_info.parallel_data),
818 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data),
859 kmp_team_t *team;
864 team = __kmp_team_from_gtid(gtid);
865 lck = (ompt_wait_id_t)(uintptr_t)&team->t.t_ordered.dt.t_value;
1185 // team we have to check this even if we are in a serialized team.
1735 kmp_team_t *team = this_thr->th.th_team;
1743 &(team->t.ompt_team_info.parallel_data),
1744 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data),
1751 &(team->t.ompt_team_info.parallel_data),
1752 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data),
1756 &(team->t.ompt_team_info.parallel_data),
1757 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data),
1782 kmp_team_t *team = this_thr->th.th_team;
1788 &(team->t.ompt_team_info.parallel_data),
1789 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), 1,
2035 address (cpy_data) to a team-private location, then the other threads will each
3312 kmp_team_t *team;
3316 *team_p = team = th->th.th_team;
3317 if (team->t.t_level == th->th.th_teams_level) {
3321 th->th.th_info.ds.ds_tid = team->t.t_master_tid;
3322 th->th.th_team = team->t.t_parent;
3335 __kmp_restore_swapped_teams(kmp_info_t *th, kmp_team_t *team, int task_state) {
3338 th->th.th_team = team;
3339 th->th.th_team_nproc = team->t.t_nproc;
3340 th->th.th_task_team = team->t.t_task_team[task_state];
3355 @result 1 for the master thread, 0 for all other team threads, 2 for all team
3370 kmp_team_t *team;
3395 teams_swapped = __kmp_swap_teams_for_teams_reduction(th, &team, &task_state);
3400 // property, not a team specific property
3405 // (if both construct-specific and team-specific variables were shared,
3429 // usage: if team size == 1, no synchronization is required ( Intel
3502 __kmp_restore_swapped_teams(th, team, task_state);
3538 // usage: if team size == 1, no synchronization is required ( on Intel
3583 @result 1 for the master thread, 0 for all other team threads, 2 for all team
3596 kmp_team_t *team;
3622 teams_swapped = __kmp_swap_teams_for_teams_reduction(th, &team, &task_state);
3639 // usage: if team size == 1, no synchronization is required ( Intel
3690 __kmp_restore_swapped_teams(th, team, task_state);
3714 kmp_team_t *team;
3720 teams_swapped = __kmp_swap_teams_for_teams_reduction(th, &team, &task_state);
3757 // usage: if team size==1, no synchronization is required (Intel platforms only)
3814 __kmp_restore_swapped_teams(th, team, task_state);
3877 kmp_team_t *team = th->th.th_team;
3885 gtid, num_dims, !team->t.t_serialized));
3889 if (team->t.t_serialized) {
3890 KA_TRACE(20, ("__kmpc_doacross_init() exit: serialized team\n"));
3891 return; // no dependencies if team is serialized
3893 KMP_DEBUG_ASSERT(team->t.t_nproc > 1);
3896 sh_buf = &team->t.t_disp_buffer[idx % __kmp_dispatch_num_buffers];
3997 kmp_team_t *team = th->th.th_team;
4002 if (team->t.t_serialized) {
4003 KA_TRACE(20, ("__kmpc_doacross_wait() exit: serialized team\n"));
4004 return; // no dependencies if team is serialized
4107 kmp_team_t *team = th->th.th_team;
4112 if (team->t.t_serialized) {
4113 KA_TRACE(20, ("__kmpc_doacross_post() exit: serialized team\n"));
4114 return; // no dependencies if team is serialized
4176 kmp_team_t *team = th->th.th_team;
4180 if (team->t.t_serialized) {
4181 KA_TRACE(20, ("__kmpc_doacross_fini() exit: serialized team %p\n", team));
4189 &team->t.t_disp_buffer[idx % __kmp_dispatch_num_buffers];