teams.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Copyright (C) 2018-2022 Free Software Foundation, Inc.
  2. Contributed by Jakub Jelinek <jakub@redhat.com>.
  3. This file is part of the GNU Offloading and Multi Processing Library
  4. (libgomp).
  5. Libgomp is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3, or (at your option)
  8. any later version.
  9. Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. more details.
  13. Under Section 7 of GPL version 3, you are granted additional
  14. permissions described in the GCC Runtime Library Exception, version
  15. 3.1, as published by the Free Software Foundation.
  16. You should have received a copy of the GNU General Public License and
  17. a copy of the GCC Runtime Library Exception along with this program;
  18. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. <http://www.gnu.org/licenses/>. */
  20. /* This file handles the host TEAMS construct. */
  21. #include "libgomp.h"
  22. #include <limits.h>
  23. void
  24. GOMP_teams_reg (void (*fn) (void *), void *data, unsigned int num_teams,
  25. unsigned int thread_limit, unsigned int flags)
  26. {
  27. struct gomp_thread *thr = gomp_thread ();
  28. (void) flags;
  29. unsigned old_thread_limit_var = 0;
  30. if (thread_limit == 0)
  31. thread_limit = gomp_teams_thread_limit_var;
  32. if (thread_limit)
  33. {
  34. struct gomp_task_icv *icv = gomp_icv (true);
  35. old_thread_limit_var = icv->thread_limit_var;
  36. icv->thread_limit_var
  37. = thread_limit > INT_MAX ? UINT_MAX : thread_limit;
  38. }
  39. if (num_teams == 0)
  40. num_teams = gomp_nteams_var ? gomp_nteams_var : 3;
  41. thr->num_teams = num_teams - 1;
  42. for (thr->team_num = 0; thr->team_num < num_teams; thr->team_num++)
  43. fn (data);
  44. thr->num_teams = 0;
  45. thr->team_num = 0;
  46. if (thread_limit)
  47. {
  48. struct gomp_task_icv *icv = gomp_icv (true);
  49. icv->thread_limit_var = old_thread_limit_var;
  50. }
  51. }
  52. int
  53. omp_get_num_teams (void)
  54. {
  55. struct gomp_thread *thr = gomp_thread ();
  56. return thr->num_teams + 1;
  57. }
  58. int
  59. omp_get_team_num (void)
  60. {
  61. struct gomp_thread *thr = gomp_thread ();
  62. return thr->team_num;
  63. }
  64. ialias (omp_get_num_teams)
  65. ialias (omp_get_team_num)