LLVM OpenMP
20.0.0git
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
c
d
e
g
h
i
m
n
p
r
s
t
u
Functions
c
d
e
g
i
m
n
p
r
s
u
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
w
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
_
a
b
c
d
e
i
k
l
m
n
o
p
r
t
u
Enumerations
_
b
c
d
f
k
l
n
o
s
t
Enumerator
_
a
b
c
d
e
f
k
l
n
o
p
r
s
t
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
runtime
test
ompt
misc
threads.c
Go to the documentation of this file.
1
// RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s
2
// REQUIRES: ompt
3
#include "
callback.h
"
4
#include <omp.h>
5
6
int
main
() {
7
int
x = 0;
8
#pragma omp parallel num_threads(4)
9
{
10
#pragma omp atomic
11
x++;
12
}
13
14
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
15
16
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_thread_begin:
17
// CHECK-SAME: thread_type=ompt_thread_initial=1, thread_id=[[MASTER_ID]]
18
// CHECK: {{^}}[[MASTER_ID]]: ompt_event_thread_end:
19
// CHECK-SAME: thread_id=[[MASTER_ID]]
20
// CHECK: {{^}}[[WORKER_ID1:[0-9]+]]: ompt_event_thread_begin:
21
// CHECK-SAME: thread_type=ompt_thread_worker=2, thread_id=[[WORKER_ID1]]
22
// CHECK: {{^}}[[WORKER_ID1]]: ompt_event_thread_end:
23
// CHECK-SAME: thread_id=[[WORKER_ID1]]
24
// CHECK: {{^}}[[WORKER_ID2:[0-9]+]]: ompt_event_thread_begin:
25
// CHECK-SAME: thread_type=ompt_thread_worker=2, thread_id=[[WORKER_ID2]]
26
// CHECK: {{^}}[[WORKER_ID2]]: ompt_event_thread_end:
27
// CHECK-SAME: thread_id=[[WORKER_ID2]]
28
// CHECK: {{^}}[[WORKER_ID3:[0-9]+]]: ompt_event_thread_begin:
29
// CHECK-SAME: thread_type=ompt_thread_worker=2, thread_id=[[WORKER_ID3]]
30
// CHECK: {{^}}[[WORKER_ID3]]: ompt_event_thread_end:
31
// CHECK-SAME: thread_id=[[WORKER_ID3]]
32
33
return
0;
34
}
callback.h
main
int main()
Definition:
threads.c:6
Generated on Wed Jun 18 2025 02:28:07 for LLVM OpenMP by
1.9.6