aboutsummaryrefslogtreecommitdiff
path: root/final/libomptarget/deviceRTLs/nvptx/test/parallel/thread_limit.c
blob: 5e40bb564aa0f3931f8417e0f2546c3e9c35f493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// RUN: %compile-run-and-check

#include <stdio.h>
#include <omp.h>

const int WarpSize = 32;
const int ThreadLimit = 1 * WarpSize;
const int NumThreads2 = 2 * WarpSize;
const int NumThreads3 = 3 * WarpSize;
const int MaxThreads = 1024;

int main(int argc, char *argv[]) {
  int check1[MaxThreads];
  int check2[MaxThreads];
  int check3[MaxThreads];
  for (int i = 0; i < MaxThreads; i++) {
    check1[i] = check2[i] = check3[i] = 0;
  }

  int threadLimit = -1;

  #pragma omp target teams num_teams(1) thread_limit(ThreadLimit) \
                           map(check1[:], check2[:], check3[:], threadLimit)
  {
    threadLimit = omp_get_thread_limit();

    // All parallel regions should get as many threads as specified by the
    // thread_limit() clause.
    #pragma omp parallel
    {
      check1[omp_get_thread_num()] += omp_get_num_threads();
    }

    omp_set_num_threads(NumThreads2);
    #pragma omp parallel
    {
      check2[omp_get_thread_num()] += omp_get_num_threads();
    }

    #pragma omp parallel num_threads(NumThreads3)
    {
      check3[omp_get_thread_num()] += omp_get_num_threads();
    }
  }

  // CHECK: threadLimit = 32
  printf("threadLimit = %d\n", threadLimit);

  // CHECK-NOT: invalid
  for (int i = 0; i < MaxThreads; i++) {
    if (i < ThreadLimit) {
      if (check1[i] != ThreadLimit) {
        printf("invalid: check1[%d] should be %d, is %d\n", i, ThreadLimit, check1[i]);
      }
    } else if (check1[i] != 0) {
      printf("invalid: check1[%d] should be 0, is %d\n", i, check1[i]);
    }

    if (i < ThreadLimit) {
      if (check2[i] != ThreadLimit) {
        printf("invalid: check2[%d] should be %d, is %d\n", i, ThreadLimit, check2[i]);
      }
    } else if (check2[i] != 0) {
      printf("invalid: check2[%d] should be 0, is %d\n", i, check2[i]);
    }

    if (i < ThreadLimit) {
      if (check3[i] != ThreadLimit) {
        printf("invalid: check3[%d] should be %d, is %d\n", i, ThreadLimit, check3[i]);
      }
    } else if (check3[i] != 0) {
      printf("invalid: check3[%d] should be 0, is %d\n", i, check3[i]);
    }
  }

  return 0;
}