On Thu, Jun 16, 2022 at 06:00:47PM +0200, Mohamed Atef wrote: > I cant't get the value of "gomp_affinity_format_let" I used the plugin but > it only gives 0 value. if you noticed in the gompd_get_affinity_format i > used 100 for the length of the affinity format.
gomp_affinity_format_len is just an internal var holding how many bytes have been allocated for the gomp_affinity_format pointer. Unless you use OMP_AFFINITY_FORMAT env var or call omp_set_affinity_format, it will be 0. Jakub