File: test7.c

package info (click to toggle)
opari2 2.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,808 kB
  • sloc: cpp: 8,533; sh: 5,755; ansic: 5,129; f90: 530; fortran: 341; makefile: 227; awk: 179
file content (88 lines) | stat: -rw-r--r-- 1,666 bytes parent folder | download | duplicates (4)
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
78
79
80
81
82
83
84
85
86
87
88
/*
 * This file is part of the Score-P software (http://www.score-p.org)
 *
 * Copyright (c) 2009-2011,
 * RWTH Aachen University, Germany
 *
 * Copyright (c) 2009-2011,
 * Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
 *
 * Copyright (c) 2009-2011,
 * Technische Universitaet Dresden, Germany
 *
 * Copyright (c) 2009-2011,
 * University of Oregon, Eugene, USA
 *
 * Copyright (c) 2009-2011, 2014
 * Forschungszentrum Juelich GmbH, Germany
 *
 * Copyright (c) 2009-2011,
 * German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
 *
 * Copyright (c) 2009-2011,
 * Technische Universitaet Muenchen, Germany
 *
 * This software may be modified and distributed under the terms of
 * a BSD-style license. See the COPYING file in the package base
 * directory for details.
 *
 * Testfile for automated testing of OPARI2
 *
 *
 * @brief Tests user instrumentation directives and selective instrumentation.
 */

int main() {
  int i;
  int b = 1;

#pragma pomp inst init

#pragma pomp inst off

#pragma pomp inst begin(foo)

#pragma omp parallel
  i = 1;

#pragma pomp inst on

#pragma pomp noinstrument
#pragma omp parallel
#pragma omp for
  for ( i = 0; i < 2; ++i)
    b = b + i;

#pragma omp parallel for
  for ( i = 0; i < 2; ++i)
    b = b + i;
#pragma pomp instrument

#pragma omp parallel
  i = 3;

  if (b) {
#pragma pomp inst altend(foo)
    return 0;
  }

#pragma omp parallel
  {
#pragma pomp inst begin(phase1)
    i = 4;
#pragma omp barrier
    i = 5;
#pragma pomp inst end(phase1)
  }

  if (b) {
#pragma pomp inst altend(foo)
    return 0;
  }

#pragma pomp inst end(foo)

#pragma pomp inst finalize

  return 0;
}