Home
last modified time | relevance | path

Searched refs:team (Results 1 – 25 of 92) sorted by relevance

1234

/src/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_barrier.cpp210 void __kmp_dist_barrier_wakeup(enum barrier_type bt, kmp_team_t *team, in __kmp_dist_barrier_wakeup() argument
217 kmp_info_t **other_threads = team->t.t_threads; in __kmp_dist_barrier_wakeup()
230 kmp_team_t *team; in __kmp_dist_barrier_gather() local
237 team = this_thr->th.th_team; in __kmp_dist_barrier_gather()
239 other_threads = team->t.t_threads; in __kmp_dist_barrier_gather()
240 b = team->t.b; in __kmp_dist_barrier_gather()
247 gtid, team->t.t_id, tid, bt)); in __kmp_dist_barrier_gather()
372 gtid, team->t.t_id, tid, bt)); in __kmp_dist_barrier_gather()
379 kmp_team_t *team; in __kmp_dist_barrier_release() local
439 team = this_thr->th.th_team; in __kmp_dist_barrier_release()
[all …]
H A Dkmp_runtime.cpp88 static void __kmp_initialize_team(kmp_team_t *team, int new_nproc,
92 static void __kmp_partition_places(kmp_team_t *team,
98 void __kmp_setup_icv_copy(kmp_team_t *team, int new_nproc,
112 void __kmp_resize_dist_barrier(kmp_team_t *team, int old_nthreads,
114 void __kmp_add_threads_to_team(kmp_team_t *team, int new_nthreads);
536 static void __kmp_print_team_storage_map(const char *header, kmp_team_t *team, in __kmp_print_team_storage_map() argument
538 int num_disp_buff = team->t.t_max_nproc > 1 ? __kmp_dispatch_num_buffers : 2; in __kmp_print_team_storage_map()
539 __kmp_print_storage_map_gtid(-1, team, team + 1, sizeof(kmp_team_t), "%s_%d", in __kmp_print_team_storage_map()
542 __kmp_print_storage_map_gtid(-1, &team->t.t_bar[0], in __kmp_print_team_storage_map()
543 &team->t.t_bar[bs_last_barrier], in __kmp_print_team_storage_map()
[all …]
H A Dompt-specific.cpp36 #define LWT_FROM_TEAM(team) (team)->t.ompt_serialized_team_info argument
55 kmp_team *team = thr->th.th_team; in __ompt_get_teaminfo() local
56 if (team == NULL) in __ompt_get_teaminfo()
59 ompt_lw_taskteam_t *next_lwt = LWT_FROM_TEAM(team), *lwt = NULL; in __ompt_get_teaminfo()
68 if (!lwt && team) { in __ompt_get_teaminfo()
73 team = team->t.t_parent; in __ompt_get_teaminfo()
74 if (team) { in __ompt_get_teaminfo()
75 next_lwt = LWT_FROM_TEAM(team); in __ompt_get_teaminfo()
90 } else if (team) { in __ompt_get_teaminfo()
93 *size = team->t.t_nproc; in __ompt_get_teaminfo()
[all …]
H A Dkmp_csupport.cpp882 kmp_team_t *team = this_thr->th.th_team; in __kmpc_master() local
886 ompt_scope_begin, &(team->t.ompt_team_info.parallel_data), in __kmpc_master()
887 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), in __kmpc_master()
926 kmp_team_t *team = this_thr->th.th_team; in __kmpc_end_master() local
930 ompt_scope_end, &(team->t.ompt_team_info.parallel_data), in __kmpc_end_master()
931 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), in __kmpc_end_master()
972 kmp_team_t *team = this_thr->th.th_team; in __kmpc_masked() local
974 ompt_scope_begin, &(team->t.ompt_team_info.parallel_data), in __kmpc_masked()
975 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), in __kmpc_masked()
1013 kmp_team_t *team = this_thr->th.th_team; in __kmpc_end_masked() local
[all …]
H A Dkmp_tasking.cpp634 void __kmp_push_current_task_to_thread(kmp_info_t *this_thr, kmp_team_t *team, argument
642 team->t.t_implicit_task_taskdata[tid].td_parent));
647 if (this_thr->th.th_current_task != &team->t.t_implicit_task_taskdata[0]) {
648 team->t.t_implicit_task_taskdata[0].td_parent =
650 this_thr->th.th_current_task = &team->t.t_implicit_task_taskdata[0];
653 team->t.t_implicit_task_taskdata[tid].td_parent =
654 team->t.t_implicit_task_taskdata[0].td_parent;
655 this_thr->th.th_current_task = &team->t.t_implicit_task_taskdata[tid];
662 team->t.t_implicit_task_taskdata[tid].td_parent));
1332 kmp_team_t *team, int tid, int set_curr_task) { argument
[all …]
H A Dkmp_itt.inl110 * __kmp_itt_region_forking should be called by primary thread of a team.
112 thread of this team calls __kmp_itt_region_starting.
113 * __kmp_itt_region_starting should be called by each thread of a team just
115 * __kmp_itt_region_finished should be called by each thread of a team right
117 * __kmp_itt_region_joined should be called by primary thread of a team, after
128 kmp_team_t *team = __kmp_team_from_gtid(gtid); local
129 if (team->t.t_active_level > 1) {
194 kmp_team_t *team = __kmp_team_from_gtid(gtid); local
196 if (team->t.t_active_level + serialized > 1) {
369 kmp_team_t *team = __kmp_team_from_gtid(gtid); local
[all …]
H A Dkmp_dispatch.cpp105 __kmp_initialize_self_buffer(kmp_team_t *team, T id, in __kmp_initialize_self_buffer() argument
113 kmp_info_t *th = __kmp_threads[__kmp_gtid_from_tid((int)id, team)]; in __kmp_initialize_self_buffer()
199 kmp_team_t *team; in __kmp_dispatch_init_algorithm() local
220 team = th->th.th_team; in __kmp_dispatch_init_algorithm()
221 active = !team->t.t_serialized; in __kmp_dispatch_init_algorithm()
227 team->t.t_active_level == 1; in __kmp_dispatch_init_algorithm()
267 schedule = team->t.t_sched.r_sched_type; in __kmp_dispatch_init_algorithm()
281 chunk = team->t.t_sched.chunk; in __kmp_dispatch_init_algorithm()
336 schedule = team->t.t_sched.r_sched_type; in __kmp_dispatch_init_algorithm()
348 chunk = team->t.t_sched.chunk * chunk; in __kmp_dispatch_init_algorithm()
[all …]
H A Dkmp_sched.cpp99 kmp_team_t *team; in __kmp_for_static_init() local
205 team = th->th.th_team; in __kmp_for_static_init()
208 team = th->th.th_team->t.t_parent; in __kmp_for_static_init()
212 team = th->th.th_team; in __kmp_for_static_init()
216 if (team->t.t_serialized) { in __kmp_for_static_init()
248 nth = team->t.t_nproc; in __kmp_for_static_init()
421 team->t.t_active_level == 1) { in __kmp_for_static_init()
500 kmp_team_t *team; in __kmp_dist_for_static_init() local
543 team = th->th.th_team; in __kmp_dist_for_static_init()
546 team_id = team->t.t_master_tid; in __kmp_dist_for_static_init()
[all …]
H A Dkmp_wait_release.h391 kmp_team_t *team = this_thr->th.th_team;
392 if (team && team->t.t_cancel_request == cancel_parallel)
464 ompt_lw_taskteam_t *team = NULL;
466 team = this_thr->th.th_team->t.ompt_serialized_team_info;
467 if (team) {
468 tId = &(team->ompt_task_info.task_data);
585 kmp_team_t *team = this_thr->th.th_team;
586 if (team && team->t.t_cancel_request == cancel_parallel)
693 kmp_team_t *team = this_thr->th.th_team;
694 if (team && team->t.t_cancel_request == cancel_parallel) {
H A Dkmp_gsupport.cpp226 kmp_team_t *team = this_thr->th.th_team; in KMP_API_NAME_GOMP_SINGLE_START() local
234 &(team->t.ompt_team_info.parallel_data), in KMP_API_NAME_GOMP_SINGLE_START()
235 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), in KMP_API_NAME_GOMP_SINGLE_START()
242 &(team->t.ompt_team_info.parallel_data), in KMP_API_NAME_GOMP_SINGLE_START()
243 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), in KMP_API_NAME_GOMP_SINGLE_START()
247 &(team->t.ompt_team_info.parallel_data), in KMP_API_NAME_GOMP_SINGLE_START()
248 &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), in KMP_API_NAME_GOMP_SINGLE_START()
466 kmp_team_t *team = thr->th.th_team; in __kmp_GOMP_fork_call() local
482 __kmp_run_before_invoked_task(gtid, tid, thr, team); in __kmp_GOMP_fork_call()
2114 kmp_team_t *team = thr->th.th_team; in __kmp_GOMP_init_reductions() local
[all …]
H A Dkmp.h1263 #define KMP_BLOCKTIME(team, tid) \ argument
1264 (get__bt_set(team, tid) ? get__blocktime(team, tid) : __kmp_dflt_blocktime)
1274 #define KMP_BLOCKTIME_INTERVAL(team, tid) \ argument
1275 ((kmp_uint64)KMP_BLOCKTIME(team, tid) * __kmp_ticks_per_usec)
1281 #define KMP_BLOCKTIME_INTERVAL(team, tid) \ argument
1282 ((kmp_uint64)KMP_BLOCKTIME(team, tid) * (kmp_uint64)KMP_NSEC_PER_USEC)
2216 kmp_team_t *team; member
3633 static inline int __kmp_gtid_from_tid(int tid, const kmp_team_t *team) { in __kmp_gtid_from_tid() argument
3634 KMP_DEBUG_ASSERT(tid >= 0 && team); in __kmp_gtid_from_tid()
3635 return team->t.t_threads[tid]->th.th_info.ds.ds_gtid; in __kmp_gtid_from_tid()
[all …]
H A Dkmp_ftn_entry.h133 kmp_team_p *team; in FTN_GET_BLOCKTIME()
137 team = __kmp_threads[gtid]->th.th_team; in FTN_GET_BLOCKTIME()
142 team->t.t_id, tid, KMP_MAX_BLOCKTIME, __kmp_blocktime_units)); in FTN_GET_BLOCKTIME()
146 else if (__kmp_zero_bt && !get__bt_set(team, tid)) { in FTN_GET_BLOCKTIME()
148 team->t.t_id, tid, 0, __kmp_blocktime_units)); in FTN_GET_BLOCKTIME()
153 int bt = get__blocktime(team, tid); in FTN_GET_BLOCKTIME()
157 team->t.t_id, tid, bt, __kmp_blocktime_units)); in FTN_GET_BLOCKTIME()
/src/contrib/ldns/drill/
H A DChangeLog.22-nov-20057 1.0-pre3: to be released: drill-team
16 1.0-pre2: 20 Jun 2005: drill-team
20 1.0-pre1: 1 Jun 2005: drill-team
29 0.9.2: Feb 3 2005: drill-team
39 0.9.1: Jan 5 2005: drill-team
45 0.9: Dec 6 2004: drill-team
/src/sys/contrib/openzfs/contrib/debian/
H A Dcopyright20 [2] https://salsa.debian.org/zfsonlinux-team/zfs/-/blob/master/debian/copyright
21 [3] https://salsa.debian.org/zfsonlinux-team/zfs/-/blob/master/debian/changelog
H A Dchangelog.in16 (source: https://salsa.debian.org/zfsonlinux-team/zfs)
/src/crypto/krb5/src/plugins/kdb/db2/libdb2/
H A DREADME7 Kerberos team via email to krb5-bugs@mit.edu, as usual.
10 and was further modified by Cygnus and the MIT Kerberos team. Some
/src/share/misc/
H A Dorganization.dot59 # Here are the team relationships.
60 # Group together all the entries for the superior team.
61 # Keep the list sorted by the superior team entry.
/src/contrib/smbfs/
H A DCREDITS8 Special thanks to the Samba team for permission to use their source
/src/usr.bin/at/
H A DLEGAL6 The FreeBSD team does have my permission to use at, version 2.9,
/src/libexec/atrun/
H A DLEGAL7 The FreeBSD team does have my permission to use at, version 2.9,
/src/crypto/openssl/doc/
H A Dfingerprints.txt4 the fingerprints of team members who are "authorized" to sign the
/src/contrib/ldns/
H A DREADME50 ldns is developed by the ldns team at NLnet Labs. This team currently
/src/contrib/dialog/po/
H A Dja.po14 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
H A Dfa.po13 "Language-Team: Persian <translation-team-fa@lists.sourceforge.net>\n"
H A Del.po13 "Language-Team: Greek <team@lists.gnome.gr>\n"

1234