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

/freebsd-13-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.cpp2155 kmp_uint32 team_id; local
2199 team_id = team->t.t_master_tid;
2220 if (team_id < trip_count) {
2221 *pupper = *plower = *plower + team_id * incr;
2226 *plastiter = (team_id == trip_count - 1);
2232 incr * (team_id * chunk + (team_id < extras ? team_id : extras));
2233 *pupper = *plower + chunk * incr - (team_id < extras ? 0 : incr);
2235 *plastiter = (team_id
[all...]
H A Dkmp_barrier.cpp1678 int team_id; local
1696 team_id = team->t.t_id;
1713 gtid, team_id, tid));
1749 team_id, tid));
1755 __kmp_gtid_from_thread(this_thr), team_id,
1892 gtid, team_id, tid, nproc));
1899 ("__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 77 milliseconds