1 /* Copyright (C) 2015-2025 Free Software Foundation, Inc.
2 Contributed by Sebastian Huber <sebastian.huber@embedded-brains.de>.
4 This file is part of the GNU Offloading and Multi Processing Library
7 Libgomp is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 /* This file contains RTEMS specific routines related to counting
27 online processors and dynamic load balancing. */
36 struct gomp_thread_pool_reservoir
**gomp_thread_pool_reservoirs
;
38 __thread
struct gomp_tls_rtems_data gomp_tls_rtems_data
;
41 allocate_thread_pool_reservoirs (void)
43 struct gomp_thread_pool_reservoir
**reservoirs
;
44 size_t size
= _Sched_Count () * sizeof (*reservoirs
);
45 reservoirs
= gomp_malloc (size
);
46 gomp_thread_pool_reservoirs
= reservoirs
;
47 memset (reservoirs
, 0, size
);
51 allocate_thread_pool_reservoir (unsigned long count
, unsigned long priority
,
52 unsigned long scheduler
)
54 struct gomp_thread_pool_reservoir
*res
;
55 struct gomp_thread_pool
*pools
;
59 res
= gomp_thread_pool_reservoirs
[scheduler
];
61 gomp_fatal ("Multiple thread pool reservoir initialization");
62 size
= sizeof (*res
) + count
* (sizeof(pools
) + sizeof(*pools
));
63 pools
= gomp_malloc (size
);
64 memset (pools
, 0, size
);
65 res
= (struct gomp_thread_pool_reservoir
*) (pools
+ count
);
67 res
->priority
= priority
;
68 gomp_sem_init (&res
->available
, count
);
69 pthread_spin_init (&res
->lock
, PTHREAD_PROCESS_PRIVATE
);
70 for (i
= 0; i
< count
; ++i
)
71 res
->pools
[i
] = &pools
[i
];
72 gomp_thread_pool_reservoirs
[scheduler
] = res
;
76 parse_thread_pools (char *env
, unsigned long *count
, unsigned long *priority
,
77 unsigned long *scheduler
)
87 *count
= strtoul (env
, &end
, 10);
88 if (errno
!= 0 || end
== env
)
89 gomp_fatal ("Invalid thread pool count");
96 *priority
= strtoul (env
, &end
, 10);
97 if (errno
!= 0 || end
== env
)
98 gomp_fatal ("Invalid thread pool priority");
105 gomp_fatal ("Invalid thread pool scheduler prefix");
109 while (env
[len
] != '\0' && env
[len
] != ':')
111 i
= _Sched_Name_to_index (env
, len
);
113 gomp_fatal ("Invalid thread pool scheduler");
121 init_thread_pool_reservoirs (void)
123 char *env
= getenv ("GOMP_RTEMS_THREAD_POOLS");
126 allocate_thread_pool_reservoirs ();
130 unsigned long priority
;
131 unsigned long scheduler
;
132 env
= parse_thread_pools (env
, &count
, &priority
, &scheduler
);
133 allocate_thread_pool_reservoir (count
, priority
, scheduler
);
139 gomp_init_num_threads (void)
141 gomp_global_icv
.nthreads_var
= omp_get_num_procs();
142 init_thread_pool_reservoirs ();
146 gomp_dynamic_max_threads (void)
148 unsigned n_onln
= (unsigned) omp_get_num_procs();
149 unsigned nthreads_var
= gomp_icv (false)->nthreads_var
;
151 if (n_onln
> nthreads_var
)
158 omp_get_num_procs (void)
160 return sysconf (_SC_NPROCESSORS_ONLN
);
163 ialias (omp_get_num_procs
)