================================
CS 560 OpenMP Reduction  Example
================================

The code in this directory was copied from
https://computing.llnl.gov/tutorials/openMP/exercise.html, 
which has a lot of great OpenMP examples.

--------------------- veges
To compile and run this program on the veges do the following:
    gcc -fopenmp omp_reduction.c
    setenv OMP_NUM_THREADS 8
    ./a.out

--------------------- cray
To compile and run this program on the cray do the following:
    cc reduction.c
    setenv OMP_NUM_THREADS 8
    ./a.out
