reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
// RUN: %libomp-compile-and-run
#include <stdio.h>
#include "omp_testsuite.h"

int test_omp_parallel_for_lastprivate()
{
  int sum;
  int i;
  int i0;
  int known_sum;

  sum =0;
  i0 = -1;

  #pragma omp parallel for reduction(+:sum) \
    schedule(static,7) private(i) lastprivate(i0)
  for (i = 1; i <= LOOPCOUNT; i++) {
    sum = sum + i;
    i0 = i;
  } /* end of parallel for */

  known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2;
  return ((known_sum == sum) && (i0 == LOOPCOUNT));
} /* end of check_parallel_for_lastprivate */

int main()
{
  int i;
  int num_failed=0;

  for(i = 0; i < REPETITIONS; i++) {
    if(!test_omp_parallel_for_lastprivate()) {
      num_failed++;
    }
  }
  return num_failed;
}