Searched refs:team_id (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/gcclibs/libgomp/
H A Dordered.c52 ws->ordered_team_ids[index] = thr->ts.team_id;
58 gomp_sem_post (team->ordered_release[thr->ts.team_id]);
123 gomp_sem_post (team->ordered_release[thr->ts.team_id]);
135 ws->ordered_team_ids[index] = thr->ts.team_id;
175 unsigned id = thr->ts.team_id;
208 to us, concurrently with our check below. But our team_id is
215 if (ws->ordered_owner != thr->ts.team_id)
217 gomp_sem_wait (team->ordered_release[thr->ts.team_id]);
218 ws->ordered_owner = thr->ts.team_id;
H A Dparallel.c103 return gomp_thread ()->ts.team_id;
H A Dteam.c91 thr->ts.team->ordered_release[thr->ts.team_id] = &thr->release;
101 gomp_threads[thr->ts.team_id] = thr;
117 thr->ts.team_id = 0;
200 thr->ts.team_id = 0;
245 nthr->ts.team_id = i;
291 start_data->ts.team_id = i;
H A Dlibgomp.h110 /* This is the team_id of the currently acknoledged owner of the ordered
143 unsigned team_id; member in struct:gomp_team_state
H A Diter.c75 i = thr->ts.team_id;
112 i = thr->ts.team_id;
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_sched.cpp433 kmp_uint32 team_id; local
481 team_id = team->t.t_master_tid;
504 if (team_id < trip_count && tid == 0) {
505 *pupper = *pupperDist = *plower = *plower + team_id * incr;
511 *plastiter = (tid == 0 && team_id == trip_count - 1);
518 incr * (team_id * chunkD + (team_id < extras ? team_id : extras));
519 *pupperDist = *plower + chunkD * incr - (team_id < extras ? 0 : incr);
521 *plastiter = (team_id
[all...]
H A Dkmp_dispatch.cpp2149 kmp_uint32 team_id; local
2193 team_id = team->t.t_master_tid;
2214 if (team_id < trip_count) {
2215 *pupper = *plower = *plower + team_id * incr;
2220 *plastiter = (team_id == trip_count - 1);
2226 incr * (team_id * chunk + (team_id < extras ? team_id : extras));
2227 *pupper = *plower + chunk * incr - (team_id < extras ? 0 : incr);
2229 *plastiter = (team_id
[all...]
H A Dkmp_barrier.cpp1676 int team_id; local
1694 team_id = team->t.t_id;
1711 gtid, team_id, tid));
1747 team_id, tid));
1753 __kmp_gtid_from_thread(this_thr), team_id,
1890 gtid, team_id, tid, nproc));
1897 ("__kmp_join_barrier: T#%d(%d:%d) leaving\n", gtid, team_id, tid));
H A Dkmp_runtime.cpp488 int team_id, int num_thr) {
491 header, team_id);
496 "%s_%d.t_bar", header, team_id);
501 header, team_id);
506 "%s_%d.t_bar[forkjoin]", header, team_id);
512 "%s_%d.t_bar[reduction]", header, team_id);
517 sizeof(kmp_disp_t) * num_thr, "%s_%d.t_dispatch", header, team_id);
521 sizeof(kmp_info_t *) * num_thr, "%s_%d.t_threads", header, team_id);
526 "%s_%d.t_disp_buffer", header, team_id);
487 __kmp_print_team_storage_map(const char *header, kmp_team_t *team, int team_id, int num_thr) argument

Completed in 262 milliseconds