Index: openmp/trunk/testsuite/LICENSE =================================================================== --- openmp/trunk/testsuite/LICENSE +++ openmp/trunk/testsuite/LICENSE @@ -1,34 +0,0 @@ - Copyright (c) 2011, 2012 - University of Houston System - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - o Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - o Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - o Neither the name of the University of Houston System nor the names of its - contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Index: openmp/trunk/testsuite/LLVM-IR/lit.cfg =================================================================== --- openmp/trunk/testsuite/LLVM-IR/lit.cfg +++ openmp/trunk/testsuite/LLVM-IR/lit.cfg @@ -1,78 +0,0 @@ -# -*- Python -*- - -# Configuration file for the 'lit' test runner. - -import os -import sys -import re -import platform - -try: - import lit.util - import lit.formats -except ImportError: - pass - -# name: The name of this test suite. -config.name = 'OpenMPValidationSuite' - -# testFormat: The test format to use to interpret tests. -config.test_format = lit.formats.ShTest(execute_external=False) - -# suffixes: A list of file extensions to treat as test files -# Note this can be overridden by lit.local.cfg files -config.suffixes = ['.ll'] - -# test_source_root: The root path where tests are located. -#config.test_source_root = "/home/ichoyjx/install/openmp/testsuite/bin" -#os.path.dirname(__file__) - -# test_exec_root: The root path where tests should be run. -#mpvs_obj_root = getattr(config, 'mpvs_obj_root', None) -#if mpvs_obj_root is not None: -config.test_exec_root = "./" -#os.path.join(mpvs_obj_root, 'src') - -# Discover the 'clang' and 'clangcc' to use. - -import os - -def inferClang(PATH): - # Determine which clang to use. - clang = os.getenv('CLANG') - - # If the user set clang in the environment, definitely use that and don't - # try to validate. - if clang: - return clang - - # Otherwise look in the path. - clang = lit.util.which('clang', PATH) - - if not clang: - lit_config.fatal("couldn't find 'clang' program, try setting " - "CLANG in your environment") - - return clang - -config.clang = inferClang(config.environment['PATH']).replace('\\', '/') -config.substitutions.append( ('%clang', ' ' + config.clang + ' ') ) - -# Propogate some environment variable to test environment. -def addEnv(name): - if name in os.environ: - config.environment[name] = os.environ[name] - -addEnv('HOME') -addEnv('PWD') - - -addEnv('C_INCLUDE_PATH') -addEnv('CPLUS_INCLUDE_PATH') -addEnv('LIBRARY_PATH') -addEnv('LD_LIBRARY_PATH') -addEnv('DYLD_LIBRARY_PATH') - -# Check that the object root is known. -if config.test_exec_root is None: - lit.fatal('test execution root not set!') Index: openmp/trunk/testsuite/LLVM-IR/lit.site.cfg.in =================================================================== --- openmp/trunk/testsuite/LLVM-IR/lit.site.cfg.in +++ openmp/trunk/testsuite/LLVM-IR/lit.site.cfg.in @@ -1,30 +0,0 @@ -## Autogenerated by LLVM/Clang configuration. -#config.mpvs_src_root = "/home/ichoyjx/install/openmp/testsuite/bin/c" -config.mpvs_obj_root = "/tmp" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" - - -# Needed to check if a hack needs to be applied -config.llvm_version_major = "@LLVM_VERSION_MAJOR@" - -# Compilers -# FIXME: use llvmcc not llvmgcc -config.llvmclang = "clang" - -# Features -config.enable_uclibc = True if @ENABLE_UCLIBC@ == 1 else False -config.enable_posix_runtime = True if @ENABLE_POSIX_RUNTIME@ == 1 else False -config.have_selinux = True if @HAVE_SELINUX@ == 1 else False - -# Current target -config.target_triple = "@TARGET_TRIPLE@" - -# Let the main config do the real work. -try: - lit -except NameError: - # Use lit_config class - lit_config.load_config(config, "@MPVS_SOURCE_DIR@/lit.cfg") -else: - # Use old lit class - lit.load_config(config, "@MPVS_SOURCE_DIR@/lit.cfg") Index: openmp/trunk/testsuite/LLVM-IR/lit.tmp =================================================================== --- openmp/trunk/testsuite/LLVM-IR/lit.tmp +++ openmp/trunk/testsuite/LLVM-IR/lit.tmp @@ -1 +0,0 @@ -../LLVM-IR/lin_32e/ Index: openmp/trunk/testsuite/Makefile =================================================================== --- openmp/trunk/testsuite/Makefile +++ openmp/trunk/testsuite/Makefile @@ -1,254 +0,0 @@ -# General Makefile containing all the necessary compiler flags for the tests - -# modify CC and CFLAGS for OpenMP C compilers -# modify FC and FFLAGS for OpenMP Fortran compilers - - -# Content: -######################################################### - -# 1. Basic usage -# 2. General testsuite settings -# 3. Compiler selection and Flags - -######################################################### - - -######################################################### -# 1. Basic usage -######################################################### -# make ctest generate c test "ctest" -# make ftest generate fortran test "ftest" -# make clean removes all sources and binaries -# make cleanall removes sources,binaries and logfiles - - -######################################################### -# 2. General testsuite settings -######################################################### - -# For general testsuite settings see the configuration file -# ompts.conf - -######################################################### -# 3. Compiler selection and Flags -######################################################### - -# CLANG Compiler -CC = clang -CFLAGS = -fopenmp -S -emit-llvm -FC = gfortran -FFLAGS = -fopenmp -lm -FFLAGS = -fopenmp -lm -O3 - -# GNU Compiler -# CC = gcc -# CFLAGS = -fopenmp -lm -O3 -# FC = gfortran -# FFLAGS = -fopenmp -lm -# FFLAGS = -fopenmp -lm -O3 - -# Fujitsu Compilers: -#CC = fcc -#CFLAGS = -KOMP,fast_GP2=2 -#FC=frt -#FFLAGS=-KOMP,fast_GP2=2 -w -Am -X9 -Fixed - - -# PGI compilers -#CC = pgcc -#CFLAGS = -mp -#CFLAGS = -mp -DVERBOSE -#CFLAGS = -fast -mp - -#FC = pgf90 -#FFLAGS = -fast -mp -#FFLAGS = -mp -g - - -# Intel compilers: -#CC = icc -#CFLAGS = -O3 -ip -openmp -#CFLAGS = -Wall -O0 -openmp -#CFLAGS = -openmp -lm -#CFLAGS = -openmp -lm -DVERBOSE - -#FC = ifort -#FFLAGS = -openmp -lm -fpp - -# Omni compilers: -#CC = ompcc -#CFLAGS = -O3 -lm - - -# Assure compilers: -#CC = assurec -#CFLAGS = -O3 -WApname=project -DUSE_ASSURE=1 -#FC = -#FFLAGS = - -# NEC: -#CC = c++ -#CC = sxc++ -#CFLAGS = -Popenmp - -#FC=sxf90 -#FFLAGS= -Popenmp - - -# Hitachi: -#CC = xcc -#CFLAGS = -O4 -pvec +Op -parallel -omp -#FC = -#FFLAGS = - - -# SGI: -#CC = cc -#CFLAGS = -mp -lm -#FC = -#FFLAGS = - - -# IBM compilers: -#CC = xlc_r -#CFLAGS = -qsmp=omp -lm - - -#FC=xlf90_r -#FFLAGS=-qsmp=omp -qfixed=132 -qlanglvl=extended - - -# SUN compilers -#CC = cc -#CFLAGS = -fast -xopenmp -lm - -#FC =f90 -#FFLAGS = -xopenmp -fast -lm - - -# open64 compilers -# remark: -I. was a workaround because the installation came without omp.h file -#CC = opencc -#CFLAGS = -O0 -openmp -lm -I. -lomp -lpthread -#CFLAGS = -O0 -openmp -lm -I /home/matthew/opt/usr/include -lpthread -#CFLAGS = -openmp -lm - -#FC = openf90 -#FFLAGS = -O0 -openmp -lm -lomp -lpthread - - -#Pathscale Compiler -#CC = pathcc -#CFLAGS = -mp -Ofast -lm - -#FC=pathf90 -#FFLAGS= -mp -Ofast -lm - - -#OpenUH Compiler -#CC = uhcc -#CFLAGS = -mp - -#FC = uhf90 -#FFLAGS = -mp - -# Check path -FILE=LLVM-IR/lit.tmp -CHECK_PATH=`cat $(FILE)` - -######################################################################### - -help: - @echo "OpenMP Validation Suite, v3.0" - @echo "(C) University of Stuttgart, University of Houston" - @echo "" - @echo "Do make [rule], where rule may be one of:" - @echo " ctest" - @echo " Build and run the OpenMP/C validation tests." - @echo " ftest" - @echo " Build and run the OpenMP/Fortran validation tests." - @echo " print_compile_options" - @echo " Display the default compiler and compiler options being tested" - @echo " cleansrcs" - @echo " Remove sources generated from the templates" - @echo " cleanbins" - @echo " Remove executables from bin/ directory" - @echo " cleanouts" - @echo " Remove all *.out files from bin/ directory" - @echo " cleanlogs" - @echo " Remove all *.log files from bin/ directory" - @echo " clean" - @echo " Clean out and log files" - @echo " distclean" - @echo " Clean arch test directory with clean" - @echo " veryclean" - @echo " Remove the entire bin/c directory with distclean" - -omp_my_sleep: - mkdir -p bin/c - cp omp_my_sleep.h bin/c/ -omp_testsuite: omp_testsuite.h - mkdir -p bin/c - cp omp_testsuite.h bin/c/ -omp_testsuite.h: ompts-c.conf c/* - ./ompts_makeHeader.pl -f=ompts-c.conf -t=c -.c.o: omp_testsuite omp_my_sleep - $(CC) $(CFLAGS) -c $< - -ctest: omp_my_sleep omp_testsuite - ./runtest.pl --lang=c testlist-c.txt - cd bin/; make -j - -ftest: - mkdir -p bin/fortran - cp omp_testsuite.f bin/fortran - cp omp_my_sleep.f bin/fortran - ./runtest.pl --lang=fortran testlist-f.txt - -print_compile_options: - @echo "-------------------" - @echo "C compiler" - @echo "-------------------" - @echo "compilation: $(CC) $(CFLAGS)" - @$(CC) --version - @echo "-------------------" - @echo "Fortran compiler" - @echo "-------------------" - @echo "compilation: $(FC) $(FFLAGS)" - @$(FC) --version - - - -path_to_arch=$(shell ../runtime/tools/check-openmp-test.pl) - -cleansrcs: - find bin/ -iname "*.[cf]" -exec rm -rf {} \; -cleanbins: - find bin/c -perm /a+x -type f -exec rm -rf {} \; - find ./bin/c -not -name "*.c" -a -not -name "*.ll" -type f -exec rm -rf {} \; -cleanouts: - find bin/ -iname "*.out" -exec rm -rf {} \; -cleanlogs: - find bin/ -iname "*.log" -exec rm -rf {} \; - rm -rf ./$(path_to_arch) - -clean: cleanouts cleanlogs cleanbins cleansrcs - -distclean: clean - rm -rf bin/c/* - rm -rf LLVM-IR/$(CHECK_PATH) - -veryclean: distclean - rm -rf bin/c/ - rm -rf bin/fortran/ - - -cleanall: - rm -rf ./bin/c/ - rm -rf ./bin/fortran/ - rm -rf ./LLVM-IR/$(path_to_arch) - rm -rf ./$(path_to_arch) - rm -rf ./*.log - - Index: openmp/trunk/testsuite/README_LLVM_OPENMP =================================================================== --- openmp/trunk/testsuite/README_LLVM_OPENMP +++ openmp/trunk/testsuite/README_LLVM_OPENMP @@ -1,46 +0,0 @@ - ============================================================================ -| To use the OpenMP Validation Suite for testing | -| LLVM OpenMP Implementation | -| High Performance Computing and Tools, | -| University of Houston | -| Jan. 2015 | - ============================================================================ - -Two new files have been added to openmp/runtime: check-openmp.pl and check-openmp-test.pl -Go to /openmp/runtime, run: -make test compiler=clang -make test-clean - ------------------------------------------------------------------------------- -For the OpenMP-LLVM Project, following are the Files and Directories to know about: - - - c Directory containing the templates for the c tests - fortran Directory containing the templates for the Fortran - Makefile Makefile containing options for compilation - README_LLVM_OPENMP README file for to use the OpenMP test-suite - README_OpenMP_Validation_Suite README file on the Validation Suite, templates, etc., - as a basis for testing the LLVM OpenMP implementation. - LLVM_IR Directory containing target-specific IR files - bin/lit files In the lit model, every test must exist inside some test suite. - lit resolves the inputs specified on the command line to - test suites by searching upwards from the input path - until it finds a lit.cfg or lit.site.cfg file. - These files serve as both a marker of test suites and - as configuration files which lit loads in order to - understand how to find and run the tests inside the test suite. - bin/header Header for the tests, calls clang driver for the test, - and executes the resulting executable - bin/Makefile To generate LLVM_IR files - bin/distribute.sh Generates LLVM_IR files, finds the architecture and OS, moves - the generated IR files to the corresponding folder - runtime/tools/check-openmp.pl Retrieving the right path - runtime/tools/ - check-openmp-test.pl Returns the architecture and OS, e.g. lin_32e ------------------------------------------------------------------------------- - -Contact and Support -============================================================================== - -Contact: http://www.cs.uh.edu/~hpctools/ -Email: sunita@cs.uh.edu Index: openmp/trunk/testsuite/README_OpenMP_Validation_Suite =================================================================== --- openmp/trunk/testsuite/README_OpenMP_Validation_Suite +++ openmp/trunk/testsuite/README_OpenMP_Validation_Suite @@ -1,334 +0,0 @@ - ============================================================================ -| OpenMP Validation Suite V 3.0 | -| High Performance Computing Center, Stuttgart | -| High Performance Computing and Tools, University of Houston | -| Jan. 2012 | - ============================================================================ - - -TABLE OF CONTENTS - -I INTRODUCTION -I.1. Aims and general function -I.2. Files and directories - -II USAGE -II.1. First run with make -II.2 Where to search for results -II.3. Using the runtest script - -III Adding and modifying tests -III.1. The template structure - -IV Known Issues and Workaround - -V Contact and Support - ------------------------------------------------------------------------------- - -I. INTRODUCTION -============================================================================== - -I.1. Aims and general function --------------------------------- - -The OpenMP validation suite is designed to verify the correct implementation -of OpenMP in compilers. It is capable of checking Fortran as well as c -compiler. - -Testing the implementation is based on statistics. Each directive is tested -by computing and verifying the result with the already known value. In most -cases a wrong implementation can result in the right values. So the tests are -run several times. - -Additionally, the validation suite creates so called crosstests for each -directive. These are tests in which either the directive is missing or used -with different arguments. If this so called crosstest fails, this indicates -strongly that the previous test is capable of testing the directive. - -Lastly, an orphaned test is also run to determine if the directive being -tested is able to correctly run when 'orphaned' from the main function. -Essentially, the directive's code is placed into its own function which is -called during execution of the main function and often inside a parallel -region. - - -I.2. Files and directories ----------------------------- - - -d c directory containing the templates for the c tests -d fortran directory containing the templates for the Fortran - tests - Makefile Makefile containing options for compilation - common_utility.f - omp_my_sleep.h thread save sleep function - omp_testsuite.f Fortran header file - omp_testsuite.h autogenerated c-header file - ompts-c.conf configuration file for the c tests about how often - the tests shall be executed or how large the loop size - is - ompts_makeHeader.pl perl module for automatically generation of an up - to date header file - ompts_parserFunctions.pm perl module containing general functions for - the parser.pl script - ompts_parser.pl script for generating the source code out of the templates - ompts_standaloneProc.c framework for the c tests - ompts_standaloneProc.f framework for the Fortran tests - README the README file you've already found ;-) - LICENSE contains license information - runtest.pl the frame program of the test suite - testlist-f.txt test list containing the available tests for Fortran - testlist-c.txt test list containing the available tests for c - - ------------------------------------------------------------------------------- - -II. USAGE -============================================================================== - - -II.1. First run with make --------------------------- - - -You can do a first simple run of the testsuite only after one step of -configuration: - -1) Modify the ompts.conf and ompts-c.conf file, change the number of threads -and number of repetitions of each test. - -2) Modify the Makefile, uncommenting the CC/FC and CFLAGS/FFLAGS variables for -the compiler of your choice. - -And now you can run the testsuite either for a C compiler with: - -> make ctest - -or for a Fortran compiler with: - -> make ftest - - -II.2. Running custom tests --------------------------- - - -In order to run single tests or custom groups of tests, two make commmands -are defined: make stest and make fstest. These two command reference the file -customtest.txt when looking for a testlist to use. Simply edit customtest.txt -to include the desired test or tests. If customtest.txt contains c tests, - -> make stest - -or for fortran tests - -> make fstest - -In order to change the number of threads used in the tests, simply edit the -Makefile variables MINTHREADS and MAXTHREADS. By default, they are configured -to use 2 threads. To change the number of times each test is run, for c tests -edit the REPETITIONS variable in the file ompts-c.conf. The LOOPCOUNT and -SLEEPTIME variables can also be changed here. For fortran tests, edit the file -omp_testsuite.f to change both the LOOPCOUNT and the number of times each test -is run. - - - -II.3. Understanding the results ---------------------------------- - - -When running the testsuite the results will be shown on the screen. - -If you need the results for further purpose you can use the results.txt, which -is a simple list containing the results for each directive -in a single line. Each line starts with the name of the directive. Then follows -the result of the test given in the percentage of the passed tests. If 100% of -the tests passed successfully, the second number gives the result of the -corresponding crosstest. Crosstests will only be run if the normal test passes -with 100% accuracy. If a crosstest was not run or a test does not exist, it is -denotated by a "-". -After the results of the normal tests, there follow a series of tests in the -orphaned mode. If there were no orphaned tests available this is shown by a "-". - -If you run the testsuite with different numbers of threads (e.g. using the -runtest.pl script) the results are shown in blocks of 4 columns for each number -of threads. - -If a test fails you can find more detailed information in the ompts.log, -bin/c/*.out and *.log files. While the ompts.log file contains all compiler -error messages for all tests, the *.out and *.log files contain detailed inforamtion -on the execution process of the single tests. -In the *.out files there are listed all the results of the single executions of -the tests. In the *.log files there are error messages of the tests itself. - - -II.4. Cleaning Up ------------------ - - -Because many files are generated for each tested directive, it is often necessary -to clean the main directory after a battery of tests. To clean all generated files -in the main directory including the results and log files, - -> make clean - - -To clean only the logs and out files, - -> make cleanlogs - -To clean only the results, - -> make cleanresults - - - -II.4. Using the runtest script -------------------------------- - - -So for special purpose you can use the runtest.pl script, which allows a lot -more options for the execution process than the execution with make. - -Using the runtest.pl script is rather easy. You can use the the test suite only -after two steps of modifications: - -1.) Modify the Makefile to your wishes choosing your compiler and the necessary - compiler flags. -2.) If necessary edit one of the test lists (testlist-c.txt) and comment out the - tests you do not want to run using # at the beginning of a line. Testlists for Fortran end - with -f.txt while test lists for c with -c.txt. - -And now you can run the test suite either for Fortran using - # > ./runtest.pl -lang=fortran -d=fortran testlist-f.txt -or for c - # > ./runtest.pl -lang=c -d=c testlist-c.txt - -With the --help option you can show the complete list of options and their -explanations. - -The test results are summarized in cresults or fresults.txt while *.log keep -details for individual tests. There is also a file (ompts.log) keeping -compilation information. (see section II.2 ) - -If you don't want to test the directives in orphaned mode you can use the --norphan option. You also can use the runtest.pl script either to compile all -tests or run compiled tests e.g. for cross compilation on other platforms. For -this there are the options -norun and -nocompile. - -Happy testing! - - ------------------------------------------------------------------------------- - -III. How to add new tests / The structure of test templates -============================================================================== - -III.1 The template structure ------------------------------- - -The test suite is based on templates so that you only have one file for test, -crosstest and the orphaned versions of them. - - A) Description of the template structure - -The syntax of the templates is much like xml. So each test begins with -'' and ends with ''. - -In between there are several other blocks holding information: - -- In between this tag you can - give a description on what the test checks and how it works. - -- This tag is used to specify the - OpenMP-version which includes the tested directive. - -- Used to specify the directive how it is - called in the programming language. - -- With this tag you can specify other - omp directives which are necessary for the correct execution of your test. -The directives have to be listed by their directive names as it is called in -the programming language. Multiple directives are separated by ','. - -- In this tag stands the whole source code -for the test / crosstest. Each test has to be written as a function. The -syntax of the functions differs between C and Fortran: In C it has to take a -file pointer 'FILE * logFile' and return an int. If the test has been passed -successful it has to return a value unequal to 0. The file pointer can be used -to write information into a log file. In Fortran the function takes no -argument and the function name must not exceed XX characters. The return value -has to be specified using the '' tags. It has to be 1 if the -test succeeded and 0 if the test failed. For details see the example. - -To tell the test suite the name of your test function you have to enclose it -into the ' ' tag. - -If there are differences between test and crosstest you can use the - and tag. -When generating the test the parser will use the code enclosed in - tags and cut out the code written in tags. So -you have two possibilities to write your template for test and crosstest: The -first way you can write the complete code is to write the test in one - tag and later the crosstest in one tag. The -second way is to write both tests only by enclosing differing parts in -corresponding tags. - -The first method should be preferred if test and crosstest differ much from -each other. The second e.g. if you only want to change a few options like -replacing an omp singleprivate clause by an omp private clause or to cut out -a directive like omp flush. When you use the first way you have to take care -of the function name! You have to declare it twice with -! - -- This tag can be used if you want to enable - your test to check the directive in orphan regions, too. The code enclosed -in this part will be written to a separate function which will be called -instead. If you have variables which are used outside this region you have to -declare them as global variables enclosed in an tag. For -further information see the description of the tag. - -- This tag is used to specify global - variables for an orphan region which allow the exchange of values between -the main program and the orphaned functions. The usage differs between C and -Fortran. In C you have to use a single declaration for each variable. You can -either declare all variables in one single or in several different regions. You -must not initialize the variables inside! In Fortran you have to put all -declarations in one single tag. Because there exist no global variables as in -C you have to use common blocks. For further information see the examples. - -III.2. Adding tests to the test lists --------------------------------------- - -After you have created a new test you have to add them to a testlist. Simply -add the function name in a new Line into a file. - - - ------------------------------------------------------------------------------- - - -IV. Known Issues and Workaround -============================================================================== - -The Sun OS has a problem with the -maxdepth option on the 'make cleanall' -command. This prevents the tests from being removed from the working directory -and can cause problems with future tests. To remedy, edit the makefile line -under the clean command: - - -rm [cf]test*.[cf] [cf]crosstest*.[cf] [cf]ctest*.[cf] [cf]orphan*.[cf] - -Change to: - - -rm [cf]test* [cf]crosstest* [cf]ctest* [cf]orphan* - - - ------------------------------------------------------------------------------- - -V. Contact and Support -============================================================================== - -Contact: http://www.cs.uh.edu/~hpctools Index: openmp/trunk/testsuite/adding_xfails.py =================================================================== --- openmp/trunk/testsuite/adding_xfails.py +++ openmp/trunk/testsuite/adding_xfails.py @@ -1,32 +0,0 @@ - -import os -import commands - -perl = "/usr/bin/perl" -LLVM = "./LLVM-IR/" -temp_filename = "temp" -XFAIL_text = "; XFAIL: *\n" - - -arch_file_list = dict() -arch_file_list['lin_32e'] = ['test_omp_task_final.ll', 'test_omp_task_untied.ll'] - - -arch_script = "../runtime/tools/check-openmp-test.pl" -arch_cmd = perl + " " + arch_script -arch = commands.getoutput(arch_cmd) -arch = arch[:len(arch)-1] - -print "Adding XFAILS ..." - -for f in arch_file_list[arch]: - filename = LLVM + arch + "/" + f - lines = open(filename).readlines() - lines.insert(1, XFAIL_text) - f2 = open(temp_filename, "w") - for l in lines: - f2.write(l) - f2.close() - - os.system("mv " + temp_filename + " " + filename) - Index: openmp/trunk/testsuite/bin/Makefile =================================================================== --- openmp/trunk/testsuite/bin/Makefile +++ openmp/trunk/testsuite/bin/Makefile @@ -1,23 +0,0 @@ -CC = clang -CFLAGS = -fopenmp -S -emit-llvm -INCL = -LIBS = - -BIN = -SRC_DIR = ./c -SRC_FILES := $(foreach DIR, $(SRC_DIR), $(wildcard $(SRC_DIR)/*.c)) -OBJS := $(patsubst %.c, %.o, $(SRC_FILES)) -TARGETLIST := $(patsubst %.c, %, $(SRC_FILES)) - -all:$(TARGETLIST) - ./distribute.sh - @ echo all done - -.PHONY: clean - -$(TARGETLIST): $(SRC_FILES) - $(CC) $(CFLAGS) $(LIBS) $(INCL) $@.c -o $@.ll - -clean: - @ rm -rf c/* - @ echo clean bin done Index: openmp/trunk/testsuite/bin/distribute.sh =================================================================== --- openmp/trunk/testsuite/bin/distribute.sh +++ openmp/trunk/testsuite/bin/distribute.sh @@ -1,125 +0,0 @@ -#!/bin/bash - -# add header for .ll files - -# get tmp header -cp header /tmp/tmp.header -echo >> /tmp/tmp.header - -# create temporary test package -mkdir c-$MACHTYPE$OSTYPE -`cp c/*.ll c-$MACHTYPE$OSTYPE/` - -# add new header into .ll files -for file in c-$MACHTYPE$OSTYPE/* -do - cp $file /tmp/tmp.ll.bf - cat /tmp/tmp.header /tmp/tmp.ll.bf > /tmp/tmp.ll - mv /tmp/tmp.ll $file -done - - -# in bin/, target is ../LLVM-IR/ARCH/OS -LEVEL=../LLVM-IR/ -ARCH_PATH=../LLVM-IR/ -OS_PATH=../LLVM-IR/ - -# for linux system, add your arch and os here -declare -a ARCHes=(x86 x86_64 powerpc arm mips darwin) -declare -a OSes=(linux macosx windows darwin) - -declare lowerARCH -declare lowerOS - -# target directory name -declare upperARCH -declare upperOS - -lowerARCH=$(echo "$MACHTYPE" | tr '[:upper:]' '[:lower:]') -lowerOS=$(echo "$OSTYPE" | tr '[:upper:]' '[:lower:]') - -# ARCH -for i in ${ARCHes[@]} -do - result=$(echo "${lowerARCH}" | grep $i) - if [[ "$result" != "" ]] - then - # upperARCH=$i - upperARCH=$(echo "$i" | tr '[:lower:]' '[:upper:]') - fi -done - -if [[ "$upperARCH" == "" ]] -then - echo "Not found ${lowerARCH} in the [${ARCHes[@]}]!" - exit -fi - -# OS -for i in ${OSes[@]} -do - result=$(echo "${lowerOS}" | grep $i) - if [[ "$result" != "" ]] - then - # upperOS=$i - upperOS=$(echo "$i" | tr '[:lower:]' '[:upper:]') - fi -done - -if [[ "$upperOS" == "" ]] -then - echo "Not found ${lowerOS} in the [${OSes[@]}]!" - exit -fi - -# survived, assemble the path -# ARCH_PATH+=$upperARCH/ -# OS_PATH+=$upperARCH/$upperOS/ -ARCH_newFormat=. -if [ $upperARCH = "X86" ]; then - ARCH_newFormat=32 -else - ARCH_newFormat=32e -fi -OS_newFormat=. -if [ $upperOS = "LINUX" ]; then - OS_newFormat=lin -elif [ $upperOS = "MACOSX" ]; then - OS_newFormat=mac -elif [ $upperOS = "WINDOWS" ]; then - OS_newFormat=win -elif [ $upperOS = "DARWIN" ]; then - OS_newFormat=dar -else - OS_newFormat=unknown -fi -OS_PATH+=$OS_newFormat"_"$ARCH_newFormat - -# test and create directory -if [ ! -d "$LEVEL" ]; then - mkdir $LEVEL - mkdir $OS_PATH -else - if [ ! -d "$OS_PATH" ]; then - mkdir $OS_PATH - fi -fi - -# reserve the tmp path to LLVM-IR/ARCH/OS -echo $OS_PATH"/" > lit.tmp - -# OS_ARCH=$OS_newFormat"_"$ARCH_newFormat -# echo -e "if not '$OS_ARCH' in config.root.targets:" > $OS_PATH'/'lit.local.cfg -# echo -e "\tconfig.unsupported = True" >> $OS_PATH'/'lit.local.cfg - -# copy *.ll files to ARCH/OS -`cp lit.* $LEVEL` - -# omit orph test -`rm c-$MACHTYPE$OSTYPE/ctest_*.ll` -`rm c-$MACHTYPE$OSTYPE/orph_ctest_*.ll` -`cp c-$MACHTYPE$OSTYPE/*.ll $OS_PATH` - -# clean -`rm /tmp/tmp.*` -rm -rf c-$MACHTYPE$OSTYPE/ Index: openmp/trunk/testsuite/bin/header =================================================================== --- openmp/trunk/testsuite/bin/header +++ openmp/trunk/testsuite/bin/header @@ -1,6 +0,0 @@ -; RUN: %clang -lomp -lm %s -o %t && %t 2>&1 | FileCheck %s -; CHECK-NOT: Test failed -; CHECK: Directive worked without errors - - - Index: openmp/trunk/testsuite/bin/lit.cfg =================================================================== --- openmp/trunk/testsuite/bin/lit.cfg +++ openmp/trunk/testsuite/bin/lit.cfg @@ -1,78 +0,0 @@ -# -*- Python -*- - -# Configuration file for the 'lit' test runner. - -import os -import sys -import re -import platform - -try: - import lit.util - import lit.formats -except ImportError: - pass - -# name: The name of this test suite. -config.name = 'OpenMPValidationSuite' - -# testFormat: The test format to use to interpret tests. -config.test_format = lit.formats.ShTest(execute_external=False) - -# suffixes: A list of file extensions to treat as test files -# Note this can be overridden by lit.local.cfg files -config.suffixes = ['.ll'] - -# test_source_root: The root path where tests are located. -#config.test_source_root = "/home/ichoyjx/install/openmp/testsuite/bin" -#os.path.dirname(__file__) - -# test_exec_root: The root path where tests should be run. -#mpvs_obj_root = getattr(config, 'mpvs_obj_root', None) -#if mpvs_obj_root is not None: -config.test_exec_root = "./" -#os.path.join(mpvs_obj_root, 'src') - -# Discover the 'clang' and 'clangcc' to use. - -import os - -def inferClang(PATH): - # Determine which clang to use. - clang = os.getenv('CLANG') - - # If the user set clang in the environment, definitely use that and don't - # try to validate. - if clang: - return clang - - # Otherwise look in the path. - clang = lit.util.which('clang', PATH) - - if not clang: - lit_config.fatal("couldn't find 'clang' program, try setting " - "CLANG in your environment") - - return clang - -config.clang = inferClang(config.environment['PATH']).replace('\\', '/') -config.substitutions.append( ('%clang', ' ' + config.clang + ' ') ) - -# Propogate some environment variable to test environment. -def addEnv(name): - if name in os.environ: - config.environment[name] = os.environ[name] - -addEnv('HOME') -addEnv('PWD') - - -addEnv('C_INCLUDE_PATH') -addEnv('CPLUS_INCLUDE_PATH') -addEnv('LIBRARY_PATH') -addEnv('LD_LIBRARY_PATH') -addEnv('DYLD_LIBRARY_PATH') - -# Check that the object root is known. -if config.test_exec_root is None: - lit.fatal('test execution root not set!') Index: openmp/trunk/testsuite/bin/lit.site.cfg.in =================================================================== --- openmp/trunk/testsuite/bin/lit.site.cfg.in +++ openmp/trunk/testsuite/bin/lit.site.cfg.in @@ -1,30 +0,0 @@ -## Autogenerated by LLVM/Clang configuration. -#config.mpvs_src_root = "/home/ichoyjx/install/openmp/testsuite/bin/c" -config.mpvs_obj_root = "/tmp" -config.llvm_tools_dir = "@LLVM_TOOLS_DIR@" - - -# Needed to check if a hack needs to be applied -config.llvm_version_major = "@LLVM_VERSION_MAJOR@" - -# Compilers -# FIXME: use llvmcc not llvmgcc -config.llvmclang = "clang" - -# Features -config.enable_uclibc = True if @ENABLE_UCLIBC@ == 1 else False -config.enable_posix_runtime = True if @ENABLE_POSIX_RUNTIME@ == 1 else False -config.have_selinux = True if @HAVE_SELINUX@ == 1 else False - -# Current target -config.target_triple = "@TARGET_TRIPLE@" - -# Let the main config do the real work. -try: - lit -except NameError: - # Use lit_config class - lit_config.load_config(config, "@MPVS_SOURCE_DIR@/lit.cfg") -else: - # Use old lit class - lit.load_config(config, "@MPVS_SOURCE_DIR@/lit.cfg") Index: openmp/trunk/testsuite/bin/lit.tmp =================================================================== --- openmp/trunk/testsuite/bin/lit.tmp +++ openmp/trunk/testsuite/bin/lit.tmp @@ -1 +0,0 @@ -../LLVM-IR/lin_32e/ Index: openmp/trunk/testsuite/c/has_openmp.c =================================================================== --- openmp/trunk/testsuite/c/has_openmp.c +++ openmp/trunk/testsuite/c/has_openmp.c @@ -1,30 +0,0 @@ - -Test which checks the OpenMp support. -2.0 -_OPENMP - -#include - -#include "omp_testsuite.h" - -int has_openmp(FILE * logFile){ - - int rvalue = 0; - - - - -#ifdef _OPENMP - rvalue = 1; -#endif - - -#if 0 - rvalue = 1; -#endif - - - return (rvalue); -} - - Index: openmp/trunk/testsuite/c/omp_atomic.c =================================================================== --- openmp/trunk/testsuite/c/omp_atomic.c +++ openmp/trunk/testsuite/c/omp_atomic.c @@ -1,434 +0,0 @@ - -Test which checks the omp atomic directive by counting up a variable in a parallelized loop with an atomic directive. -2.0 -omp atomic - -#include -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_atomic (FILE * logFile) -{ - - int sum; - int diff; - double dsum = 0; - double dt = 0.5; /* base of geometric row for + and - test*/ - double ddiff; - int product; - int x; - int *logics; - int bit_and = 1; - int bit_or = 0; - int exclusiv_bit_or = 0; - - -#define DOUBLE_DIGITS 20 /* dt^DOUBLE_DIGITS */ -#define MAX_FACTOR 10 -#define KNOWN_PRODUCT 3628800 /* 10! */ - int j; - int known_sum; - int known_diff; - int known_product; - int result = 0; - int logic_and = 1; - int logic_or = 0; - double dknown_sum; - double rounding_error = 1.E-9; - double dpt, div; - int logicsArray[LOOPCOUNT]; - logics = logicsArray; - - sum = 0; - diff = 0; - product = 1; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 1; i <= LOOPCOUNT; i++) - { - #pragma omp atomic - sum += i; - } - - } - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - if (known_sum != sum) - { - fprintf (logFile, - "Error in sum with integers: Result was %d instead of %d.\n", - sum, known_sum); - result++; - } - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; i++) - { - #pragma omp atomic - diff -= i; - } - - } - known_diff = ((LOOPCOUNT - 1) * LOOPCOUNT) / 2 * -1; - if (diff != known_diff) - { - fprintf (logFile, - "Error in difference with integers: Result was %d instead of 0.\n", - diff); - result++; - } - - /* Tests for doubles */ - dsum = 0; - dpt = 1; - - for (j = 0; j < DOUBLE_DIGITS; ++j) - { - dpt *= dt; - } - dknown_sum = (1 - dpt) / (1 -dt); -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < DOUBLE_DIGITS; ++i) - { - #pragma omp atomic - dsum += pow (dt, i); - } - - } - - if (dsum != dknown_sum && (fabs (dsum - dknown_sum) > rounding_error)) - { - fprintf (logFile, - "Error in sum with doubles: Result was %f instead of: %f (Difference: %E)\n", - dsum, dknown_sum, dsum - dknown_sum); - result++; - } - - dpt = 1; - - for (j = 0; j < DOUBLE_DIGITS; ++j) - { - dpt *= dt; - } - ddiff = (1 - dpt) / (1 - dt); -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < DOUBLE_DIGITS; ++i) - { - #pragma omp atomic - ddiff -= pow (dt, i); - } - - } - if (fabs (ddiff) > rounding_error) - { - fprintf (logFile, - "Error in difference with doubles: Result was %E instead of 0.0\n", - ddiff); - result++; - } - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 1; i <= MAX_FACTOR; i++) - { - #pragma omp atomic - product *= i; - } - - } - - known_product = KNOWN_PRODUCT; - if (known_product != product) - { - fprintf (logFile, - "Error in product with integers: Result was %d instead of %d\n", - product, known_product); - result++; - } - - product = KNOWN_PRODUCT; -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 1; i <= MAX_FACTOR; ++i) - { - #pragma omp atomic - product /= i; - } - - } - - if (product != 1) - { - fprintf (logFile, - "Error in product division with integers: Result was %d instead of 1\n", - product); - result++; - } - - div = 5.0E+5; -#pragma omp parallel - { - int i; -#pragma omp for - for (i = 1; i <= MAX_FACTOR; i++) - { - #pragma omp atomic - div /= i; - } - } - - if (fabs(div-0.137787) >= 1.0E-4 ) - { - result++; - fprintf (logFile, - "Error in division with double: Result was %f instead of 0.137787\n", div); - } - - x = 0; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - x++; - } - - } - - if (x != LOOPCOUNT) - { - result++; - fprintf (logFile, "Error in ++\n"); - } - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - x--; - } - - } - - if (x != 0) - { - result++; - fprintf (logFile, "Error in --\n"); - } - - for (j = 0; j < LOOPCOUNT; ++j) - { - logics[j] = 1; - } - bit_and = 1; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - bit_and &= logics[i]; - } - - } - - if (!bit_and) - { - result++; - fprintf (logFile, "Error in BIT AND part 1\n"); - } - - bit_and = 1; - logics[LOOPCOUNT / 2] = 0; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - bit_and &= logics[i]; - } - - } - - if (bit_and) - { - result++; - fprintf (logFile, "Error in BIT AND part 2\n"); - } - - for (j = 0; j < LOOPCOUNT; j++) - { - logics[j] = 0; - } - bit_or = 0; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - bit_or |= logics[i]; - } - - } - - if (bit_or) - { - result++; - fprintf (logFile, "Error in BIT OR part 1\n"); - } - bit_or = 0; - logics[LOOPCOUNT / 2] = 1; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - bit_or |= logics[i]; - } - - } - - if (!bit_or) - { - result++; - fprintf (logFile, "Error in BIT OR part 2\n"); - } - - for (j = 0; j < LOOPCOUNT; j++) - { - logics[j] = 0; - } - exclusiv_bit_or = 0; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - exclusiv_bit_or ^= logics[i]; - } - - } - - if (exclusiv_bit_or) - { - result++; - fprintf (logFile, "Error in EXCLUSIV BIT OR part 1\n"); - } - - exclusiv_bit_or = 0; - logics[LOOPCOUNT / 2] = 1; - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < LOOPCOUNT; ++i) - { - #pragma omp atomic - exclusiv_bit_or ^= logics[i]; - } - - } - - if (!exclusiv_bit_or) - { - result++; - fprintf (logFile, "Error in EXCLUSIV BIT OR part 2\n"); - } - - x = 1; -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < 10; ++i) - { - #pragma omp atomic - x <<= 1; - } - - } - - if ( x != 1024) - { - result++; - fprintf (logFile, "Error in <<\n"); - x = 1024; - } - -#pragma omp parallel - { - - int i; -#pragma omp for - for (i = 0; i < 10; ++i) - { - #pragma omp atomic - x >>= 1; - } - - } - - if (x != 1) - { - result++; - fprintf (logFile, "Error in >>\n"); - } - - return (result == 0); -} - - Index: openmp/trunk/testsuite/c/omp_barrier.c =================================================================== --- openmp/trunk/testsuite/c/omp_barrier.c +++ openmp/trunk/testsuite/c/omp_barrier.c @@ -1,41 +0,0 @@ - -Test which checks the omp barrier directive. The test creates several threads and sends one of them sleeping before setting a flag. After the barrier the other ones do some little work depending on the flag. -2.0 -omp barrier - -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_barrier (FILE * logFile) -{ - - int result1; - int result2; - - - result1 = 0; - result2 = 0; - -#pragma omp parallel - { - - int rank; - rank = omp_get_thread_num (); - if (rank ==1) { - my_sleep(SLEEPTIME_LONG); - result2 = 3; - } -#pragma omp barrier - if (rank == 2) { - result1 = result2; - } - - } - printf("result1=%d\n",result1); - return (result1 == 3); -} - - Index: openmp/trunk/testsuite/c/omp_critical.c =================================================================== --- openmp/trunk/testsuite/c/omp_critical.c +++ openmp/trunk/testsuite/c/omp_critical.c @@ -1,42 +0,0 @@ - -Test which checks the omp critical directive by counting up a variable in a parallelized loop within a critical section. -2.0 -omp critical - -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_critical (FILE * logFile) -{ - - int sum; - - sum=0; - int known_sum; - - - #pragma omp parallel - { - int mysum=0; - int i; - - #pragma omp for - for (i = 0; i < 1000; i++) - mysum = mysum + i; - - #pragma omp critical - sum = mysum +sum; - - } /* end of parallel */ - - - printf("sum=%d\n",sum); - known_sum = 999 * 1000 / 2; - return (known_sum == sum); - -} - - Index: openmp/trunk/testsuite/c/omp_flush.c =================================================================== --- openmp/trunk/testsuite/c/omp_flush.c +++ openmp/trunk/testsuite/c/omp_flush.c @@ -1,50 +0,0 @@ - -Test which checks the omp flush directive. -2.0 -omp flush -omp barrier - -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_flush (FILE * logFile) -{ - - int result1; - int result2; - int dummy; - - - result1 = 0; - result2 = 0; - -#pragma omp parallel - { - int rank; - rank = omp_get_thread_num (); - -#pragma omp barrier - if (rank == 1) { - result2 = 3; - - #pragma omp flush (result2) - dummy = result2; - - } - - if (rank == 0) { - my_sleep(SLEEPTIME_LONG); - - #pragma omp flush (result2) - result1 = result2; - - } - } /* end of parallel */ - - return ((result1 == result2) && (result2 == dummy) && (result2 == 3)); -} - - Index: openmp/trunk/testsuite/c/omp_for_collapse.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_collapse.c +++ openmp/trunk/testsuite/c/omp_for_collapse.c @@ -1,56 +0,0 @@ - -Test with omp for collapse clause. Bind with two loops. Without the collapse clause, the first loop will not be ordered -3.0 -omp for collapse -omp critical,omp for schedule - -#include -#include - -#include "omp_testsuite.h" - - -/* Utility function to check that i is increasing monotonically - with each call */ -static int check_i_islarger (int i) -{ - static int last_i; - int islarger; - if (i==1) - last_i=0; - islarger = ((i >= last_i)&&(i - last_i<=1)); - last_i = i; - return (islarger); -} - -int omp_for_collapse (FILE * logFile) -{ - - int is_larger = 1; - - - #pragma omp parallel - { - - int i,j; - int my_islarger = 1; - #pragma omp for private(i,j) schedule(static,1) collapse(2) ordered - for (i = 1; i < 100; i++){ - my_islarger = check_i_islarger(i)&& my_islarger; - for (j =1; j <100; j++) - { - - #pragma omp ordered - my_islarger = check_i_islarger(i)&&my_islarger; - - } /* end of for */ - } - #pragma omp critical - is_larger = is_larger && my_islarger; - - } - - return (is_larger); -} - - Index: openmp/trunk/testsuite/c/omp_for_firstprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_firstprivate.c +++ openmp/trunk/testsuite/c/omp_for_firstprivate.c @@ -1,55 +0,0 @@ - -Test which checks the omp for firstprivate clause by counting up a variable in a parallelized loop. Each thread has a firstprivate variable (1) and an variable (2) declared by for firstprivate. First it stores the result of its last iteration in variable (2). Then it stores the value of the variable (2) in its firstprivate variable (1). At the end all firstprivate variables (1) are added to a total sum in a critical section and compared with the correct result. -3.0 -omp for firstprivate -omp critical,omp parallel firstprivate - -#include -#include - -#include "omp_testsuite.h" - -int sum1; -#pragma omp threadprivate(sum1) - -int omp_for_firstprivate (FILE * logFile) -{ - int sum; - - int sum0; - - - int known_sum; - int threadsnum; - - sum = 0; - sum0 = 12345; - sum1 = 0; - -#pragma omp parallel - { -#pragma omp single - { - threadsnum=omp_get_num_threads(); - } - /* sum0 = 0; */ - - int i; -#pragma omp for firstprivate(sum0)private(sum0) - for (i = 1; i <= LOOPCOUNT; i++) - { - sum0 = sum0 + i; - sum1 = sum0; - } /* end of for */ - -#pragma omp critical - { - sum = sum + sum1; - } /* end of critical */ - } /* end of parallel */ - - known_sum = 12345* threadsnum+ (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - return (known_sum == sum); -} - - Index: openmp/trunk/testsuite/c/omp_for_lastprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_lastprivate.c +++ openmp/trunk/testsuite/c/omp_for_lastprivate.c @@ -1,52 +0,0 @@ - -Test which checks the omp for lastprivate clause by counting up a variable in a parallelized loop. Each thread saves the next summand in a lastprivate variable i0. At the end i0 is compared to the value of the expected last summand. -2.0 -omp for lastprivate -omp critical,omp parallel firstprivate,omp schedule - -#include -#include - -#include "omp_testsuite.h" - -int sum0; -#pragma omp threadprivate(sum0) - -int omp_for_lastprivate (FILE * logFile) -{ - int sum = 0; - int known_sum; - - int i0; - - - i0 = -1; - -#pragma omp parallel - { - sum0 = 0; - { /* Begin of orphaned block */ - - int i; -#pragma omp for schedule(static,7) lastprivate(i0) - for (i = 1; i <= LOOPCOUNT; i++) - { - sum0 = sum0 + i; - i0 = i; - } /* end of for */ - - } /* end of orphaned block */ - -#pragma omp critical - { - sum = sum + sum0; - } /* end of critical */ - } /* end of parallel */ - - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - fprintf(logFile," known_sum = %d , sum = %d \n",known_sum,sum); - fprintf(logFile," LOOPCOUNT = %d , i0 = %d \n",LOOPCOUNT,i0); - return ((known_sum == sum) && (i0 == LOOPCOUNT) ); -} - - Index: openmp/trunk/testsuite/c/omp_for_nowait.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_nowait.c +++ openmp/trunk/testsuite/c/omp_for_nowait.c @@ -1,57 +0,0 @@ - -Test which checks the omp parallel for nowait directive. It fills an array with values and operates on these in the following. -omp parallel for nowait -1.0 -omp parallel for, omp flush - -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_for_nowait (FILE * logFile) -{ - - int result; - int count; - - int j; - int myarray[LOOPCOUNT]; - - result = 0; - count = 0; - -#pragma omp parallel - { - - int rank; - int i; - - rank = omp_get_thread_num(); - -#pragma omp for nowait - for (i = 0; i < LOOPCOUNT; i++) { - if (i == 0) { - fprintf (logFile, "Thread nr %d entering for loop and going to sleep.\n", rank); - my_sleep(SLEEPTIME); - count = 1; -#pragma omp flush(count) - fprintf (logFile, "Thread nr %d woke up and set count = 1.\n", rank); - } - } - - fprintf (logFile, "Thread nr %d exited first for loop and enters the second.\n", rank); -#pragma omp for - for (i = 0; i < LOOPCOUNT; i++) - { -#pragma omp flush(count) - if (count == 0) - result = 1; - } - - } - - return result; -} - - Index: openmp/trunk/testsuite/c/omp_for_ordered.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_ordered.c +++ openmp/trunk/testsuite/c/omp_for_ordered.c @@ -1,60 +0,0 @@ - -Test which checks the omp ordered directive by counting up an variable in an parallelized loop and watching each iteration if the sumand is larger as the last one. -2.0 -omp for ordered -omp critical,omp for schedule - -#include -#include - -#include "omp_testsuite.h" - -static int last_i = 0; - -/* Utility function to check that i is increasing monotonically - with each call */ -static int check_i_islarger (int i) -{ - int islarger; - islarger = (i > last_i); - last_i = i; - return (islarger); -} - -int omp_for_ordered (FILE * logFile) -{ - - int sum; - int is_larger = 1; - - int known_sum; - - last_i = 0; - sum = 0; - -#pragma omp parallel - { - - int i; - int my_islarger = 1; -#pragma omp for schedule(static,1) ordered - for (i = 1; i < 100; i++) - { - #pragma omp ordered - { - my_islarger = check_i_islarger(i) && my_islarger; - sum = sum + i; - } /* end of ordered */ - } /* end of for */ -#pragma omp critical - { - is_larger = is_larger && my_islarger; - } /* end of critical */ - - } - - known_sum=(99 * 100) / 2; - return ((known_sum == sum) && is_larger); -} - - Index: openmp/trunk/testsuite/c/omp_for_private.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_private.c +++ openmp/trunk/testsuite/c/omp_for_private.c @@ -1,64 +0,0 @@ - -Test which checks the omp for private clause by counting up a variable in a parallelized loop. Each thread has a private variable (1) and a variable (2) declared by for private. First it stores the result of its last iteration in variable (2). Then this thread waits some time before it stores the value of the variable (2) in its private variable (1). At the beginning of the next iteration the value of (1) is assigned to (2). At the end all private variables (1) are added to a total sum in a critical section and compared with the correct result. -2.0 -omp for private -omp parallel,omp flush,omp critical,omp threadprivate - -#include -#include -#include "omp_testsuite.h" - -/* Utility function do spend some time in a loop */ -static void do_some_work (){ - int i; - double sum = 0; - for(i = 0; i < 1000; i++){ - sum += sqrt ((double) i); - } -} - -int sum1; -#pragma omp threadprivate(sum1) - -int omp_for_private (FILE * logFile) -{ - int sum = 0; - - int sum0; - - - int known_sum; - - sum0 = 0; /* setting (global) sum0 = 0 */ - -#pragma omp parallel - { - sum1 = 0; /* setting sum1 in each thread to 0 */ - - { /* begin of orphaned block */ - - int i; -#pragma omp for private(sum0) schedule(static,1) - for (i = 1; i <= LOOPCOUNT; i++) - { - sum0 = sum1; -#pragma omp flush - sum0 = sum0 + i; - do_some_work (); -#pragma omp flush - sum1 = sum0; - } /* end of for */ - - } /* end of orphaned block */ - -#pragma omp critical - { - sum = sum + sum1; - } /*end of critical*/ - } /* end of parallel*/ - - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - return (known_sum == sum); -} - - Index: openmp/trunk/testsuite/c/omp_for_reduction.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_reduction.c +++ openmp/trunk/testsuite/c/omp_for_reduction.c @@ -1,429 +0,0 @@ - -Test which checks the omp for reduction directive wich all its options. -2.0 -omp for reduction - -#include -#include -#include - -#include "omp_testsuite.h" - - -int omp_for_reduction (FILE * logFile) -{ - - double dt; - int sum; - int diff; - int product = 1; - double dsum; - double dknown_sum; - double ddiff; - int logic_and; - int logic_or; - int bit_and; - int bit_or; - int exclusiv_bit_or; - int *logics; - - -#define DOUBLE_DIGITS 20 /* dt^DOUBLE_DIGITS */ -#define MAX_FACTOR 10 -#define KNOWN_PRODUCT 3628800 /* 10! */ - - int i; - int known_sum; - int known_product; - double rounding_error = 1.E-9; /* over all rounding error to be ignored in the double tests */ - double dpt; - int result = 0; - int logicsArray[LOOPCOUNT]; - - /* Variables for integer tests */ - sum = 0; - product = 1; - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - /* variabels for double tests */ - dt = 1. / 3.; /* base of geometric row for + and - test*/ - dsum = 0.; - /* Variabeles for logic tests */ - logics = logicsArray; - logic_and = 1; - logic_or = 0; - /* Variabeles for bit operators tests */ - bit_and = 1; - bit_or = 0; - /* Variables for exclusiv bit or */ - exclusiv_bit_or = 0; - - -/****************************************************************************/ -/** Tests for integers **/ -/****************************************************************************/ - - -/**** Testing integer addition ****/ - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(+:sum) - for (j = 1; j <= LOOPCOUNT; j++) - { - sum = sum + j; - } - - } - - if (known_sum != sum) { - result++; - fprintf (logFile, "Error in sum with integers: Result was %d instead of %d.\n", sum, known_sum); - } - - -/**** Testing integer subtracton ****/ - - diff = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(-:diff) - for (j = 1; j <= LOOPCOUNT; j++) - { - diff = diff - j; - } - - } - - if (diff != 0) { - result++; - fprintf (logFile, "Error in difference with integers: Result was %d instead of 0.\n", diff); - } - - -/**** Testing integer multiplication ****/ - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(*:product) - for (j = 1; j <= MAX_FACTOR; j++) - { - product *= j; - } - - } - - known_product = KNOWN_PRODUCT; - if(known_product != product) - { - result++; - fprintf (logFile,"Error in Product with integers: Result was %d instead of %d\n",product,known_product); - } - - -/****************************************************************************/ -/** Tests for doubles **/ -/****************************************************************************/ - - -/**** Testing double addition ****/ - - dsum = 0.; - dpt = 1.; - - for (i = 0; i < DOUBLE_DIGITS; ++i) - { - dpt *= dt; - } - dknown_sum = (1 - dpt) / (1 - dt); - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(+:dsum) - for (j = 0; j < DOUBLE_DIGITS; j++) - { - dsum += pow (dt, j); - } - - } - - if (fabs (dsum - dknown_sum) > rounding_error) { - result++; - fprintf (logFile, "\nError in sum with doubles: Result was %f instead of: %f (Difference: %E)\n", dsum, dknown_sum, dsum-dknown_sum); - } - -#if 0 - dpt = 1.; - for (i = 0; i < DOUBLE_DIGITS; ++i) - { - dpt *= dt; - } -#endif - - -/**** Testing double subtraction ****/ - - ddiff = (1 - dpt) / (1 - dt); - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(-:ddiff) - for (j = 0; j < DOUBLE_DIGITS; ++j) - { - ddiff -= pow (dt, j); - } - - } - - if (fabs (ddiff) > rounding_error) { - result++; - fprintf (logFile, "Error in Difference with doubles: Result was %E instead of 0.0\n", ddiff); - } - - -/****************************************************************************/ -/** Tests for logical values **/ -/****************************************************************************/ - - -/**** Testing logic and ****/ - - for (i = 0; i < LOOPCOUNT; i++) - { - logics[i] = 1; - } - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(&&:logic_and) - for (j = 0; j < LOOPCOUNT; ++j) - { - logic_and = (logic_and && logics[j]); - } - - } - - if(!logic_and) { - result++; - fprintf (logFile, "Error in logic AND part 1\n"); - } - - logic_and = 1; - logics[LOOPCOUNT / 2] = 0; - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(&&:logic_and) - for (j = 0; j < LOOPCOUNT; ++j) - { - logic_and = logic_and && logics[j]; - } - - } - - if(logic_and) { - result++; - fprintf (logFile, "Error in logic AND part 2\n"); - } - - -/**** Testing logic or ****/ - - for (i = 0; i < LOOPCOUNT; i++) - { - logics[i] = 0; - } - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(||:logic_or) - for (j = 0; j < LOOPCOUNT; ++j) - { - logic_or = logic_or || logics[j]; - } - - } - - if (logic_or) { - result++; - fprintf (logFile, "Error in logic OR part 1\n"); - } - - logic_or = 0; - logics[LOOPCOUNT / 2] = 1; - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(||:logic_or) - for (j = 0; j < LOOPCOUNT; ++j) - { - logic_or = logic_or || logics[j]; - } - - } - - if(!logic_or) { - result++; - fprintf (logFile, "Error in logic OR part 2\n"); - } - - -/****************************************************************************/ -/** Tests for bit values **/ -/****************************************************************************/ - - -/**** Testing bit and ****/ - - for (i = 0; i < LOOPCOUNT; ++i) - { - logics[i] = 1; - } - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(&:bit_and) - for (j = 0; j < LOOPCOUNT; ++j) - { - bit_and = (bit_and & logics[j]); - } - - } - - if (!bit_and) { - result++; - fprintf (logFile, "Error in BIT AND part 1\n"); - } - - bit_and = 1; - logics[LOOPCOUNT / 2] = 0; - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(&:bit_and) - for (j = 0; j < LOOPCOUNT; ++j) - { - bit_and = bit_and & logics[j]; - } - - } - if (bit_and) { - result++; - fprintf (logFile, "Error in BIT AND part 2\n"); - } - - -/**** Testing bit or ****/ - - for (i = 0; i < LOOPCOUNT; i++) - { - logics[i] = 0; - } - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(|:bit_or) - for (j = 0; j < LOOPCOUNT; ++j) - { - bit_or = bit_or | logics[j]; - } - - } - - if (bit_or) { - result++; - fprintf (logFile, "Error in BIT OR part 1\n"); - } - - bit_or = 0; - logics[LOOPCOUNT / 2] = 1; - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(|:bit_or) - for (j = 0; j < LOOPCOUNT; ++j) - { - bit_or = bit_or | logics[j]; - } - - } - if (!bit_or) { - result++; - fprintf (logFile, "Error in BIT OR part 2\n"); - } - - -/**** Testing exclusive bit or ****/ - - for (i = 0; i < LOOPCOUNT; i++) - { - logics[i] = 0; - } - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(^:exclusiv_bit_or) - for (j = 0; j < LOOPCOUNT; ++j) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[j]; - } - - } - if (exclusiv_bit_or) { - result++; - fprintf (logFile, "Error in EXCLUSIV BIT OR part 1\n"); - } - - exclusiv_bit_or = 0; - logics[LOOPCOUNT / 2] = 1; - -#pragma omp parallel - { - - int j; -#pragma omp for schedule(dynamic,1) reduction(^:exclusiv_bit_or) - for (j = 0; j < LOOPCOUNT; ++j) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[j]; - } - - } - if (!exclusiv_bit_or) { - result++; - fprintf (logFile, "Error in EXCLUSIV BIT OR part 2\n"); - } - - /*fprintf ("\nResult:%d\n", result);*/ - return (result == 0); - - free (logics); -} - - Index: openmp/trunk/testsuite/c/omp_for_schedule_auto.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_schedule_auto.c +++ openmp/trunk/testsuite/c/omp_for_schedule_auto.c @@ -1,55 +0,0 @@ - -Test with omp for schedule auto -3.0 -omp for auto -omp critical,omp parallel firstprivate - -#include -#include - -#include "omp_testsuite.h" - -int sum1; -#pragma omp threadprivate(sum1) - -int omp_for_auto (FILE * logFile) -{ - int sum; - - int sum0; - - - int known_sum; - int threadsnum; - - sum = 0; - sum0 = 12345; - sum1 = 0; - -#pragma omp parallel - { -#pragma omp single - { - threadsnum=omp_get_num_threads(); - } - /* sum0 = 0; */ - - int i; -#pragma omp for firstprivate(sum0) schedule(auto)private(sum0) - for (i = 1; i <= LOOPCOUNT; i++) - { - sum0 = sum0 + i; - sum1 = sum0; - } /* end of for */ - -#pragma omp critical - { - sum = sum + sum1; - } /* end of critical */ - } /* end of parallel */ - - known_sum = 12345* threadsnum+ (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - return (known_sum == sum); -} - - Index: openmp/trunk/testsuite/c/omp_for_schedule_dynamic.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_schedule_dynamic.c +++ openmp/trunk/testsuite/c/omp_for_schedule_dynamic.c @@ -1,111 +0,0 @@ - -Test which checks the dynamic option of the omp for schedule directive -2.0 -omp for schedule(dynamic) -omp flush,omp for nowait,omp critical,omp single - - -/* -* Test for dynamic scheduling with chunk size -* Method: caculate how many times the iteration space is dispatched -* and judge if each dispatch has the requested chunk size -* unless it is the last one. -* It is possible for two adjacent chunks are assigned to the same thread -* Modifyied by Chunhua Liao -*/ -#include -#include -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -#define CFDMAX_SIZE 100 -const int chunk_size = 7; - -int omp_for_schedule_dynamic (FILE * logFile) -{ - int tid; - - int *tids; - int i; - - - int tidsArray[CFDMAX_SIZE]; - int count = 0; - int tmp_count = 0; /*dispatch times*/ - int *tmp; /*store chunk size for each dispatch*/ - int result = 0; - - tids = tidsArray; - -#pragma omp parallel private(tid) shared(tids) - { /* begin of parallel */ - - int tid; - - tid = omp_get_thread_num (); -#pragma omp for schedule(dynamic,chunk_size) - for (i = 0; i < CFDMAX_SIZE; i++) - { - tids[i] = tid; - } - - } /* end of parallel */ - - for (i = 0; i < CFDMAX_SIZE - 1; ++i) - { - if (tids[i] != tids[i + 1]) - { - count++; - } - } - - tmp = (int *) malloc (sizeof (int) * (count + 1)); - tmp[0] = 1; - - for (i = 0; i < CFDMAX_SIZE - 1; ++i) - { - if (tmp_count > count) - { - printf ("--------------------\nTestinternal Error: List too small!!!\n--------------------\n"); /* Error handling */ - break; - } - if (tids[i] != tids[i + 1]) - { - tmp_count++; - tmp[tmp_count] = 1; - } - else - { - tmp[tmp_count]++; - } - } -/* -printf("debug----\n"); - for (i = 0; i < CFDMAX_SIZE; ++i) - printf("%d ",tids[i]); -printf("debug----\n"); -*/ -/* is dynamic statement working? */ - for (i = 0; i < count; i++) - { - if ((tmp[i]%chunk_size)!=0) -/*it is possible for 2 adjacent chunks assigned to a same thread*/ - { - result++; - fprintf(logFile,"The intermediate dispatch has wrong chunksize.\n"); - /*result += ((tmp[i] / chunk_size) - 1);*/ - } - } - if ((tmp[count]%chunk_size)!=(CFDMAX_SIZE%chunk_size)) - { - result++; - fprintf(logFile,"the last dispatch has wrong chunksize.\n"); - } - /* for (int i=0;i - Index: openmp/trunk/testsuite/c/omp_for_schedule_guided.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_schedule_guided.c +++ openmp/trunk/testsuite/c/omp_for_schedule_guided.c @@ -1,225 +0,0 @@ - -Test which checks the guided option of the omp for schedule directive. -2.0 -omp for schedule(guided) -omp flush,omp for nowait,omp critical,omp single - -/* Test for guided scheduling - * Ensure threads get chunks interleavely first - * Then judge the chunk sizes are decreasing to a stable value - * Modified by Chunhua Liao - * For example, 100 iteration on 2 threads, chunksize 7 - * one line for each dispatch, 0/1 means thread id - * 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 - * 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 18 - * 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 - * 1 1 1 1 1 1 1 1 1 1 10 - * 0 0 0 0 0 0 0 0 8 - * 1 1 1 1 1 1 1 7 - * 0 0 0 0 0 0 0 7 - * 1 1 1 1 1 1 1 7 - * 0 0 0 0 0 5 -*/ -#include -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -#define NUMBER_OF_THREADS 10 -#define CFSMAX_SIZE 1000 -#define MAX_TIME 0.005 - -#ifdef SLEEPTIME -#undef SLEEPTIME -#define SLEEPTIME 0.0001 -#endif - -int omp_for_schedule_guided (FILE * logFile) -{ - - int * tids; - int * chunksizes; - int notout; - int maxiter; - - - int threads; - int i; - int result; - - tids = (int *) malloc (sizeof (int) * (CFSMAX_SIZE + 1)); - maxiter = 0; - result = 1; - notout = 1; - -/* Testing if enought threads are available for this check. */ -#pragma omp parallel - { -#pragma omp single - { - threads = omp_get_num_threads (); - } /* end of single */ - } /* end of parallel */ - - if (threads < 2) { - printf ("This test only works with at least two threads .\n"); - fprintf (logFile, "This test only works with at least two threads. Available were only %d thread(s).\n", threads); - return (0); - } /* end if */ - - - /* Now the real parallel work: - * - * Each thread will start immediately with the first chunk. - */ -#pragma omp parallel shared(tids,maxiter) - { /* begin of parallel */ - - double count; - int tid; - int j; - - tid = omp_get_thread_num (); - -#pragma omp for nowait schedule(guided) - for(j = 0; j < CFSMAX_SIZE; ++j) - { - count = 0.; -#pragma omp flush(maxiter) - if (j > maxiter) - { -#pragma omp critical - { - maxiter = j; - } /* end of critical */ - } - /*printf ("thread %d sleeping\n", tid);*/ -#pragma omp flush(maxiter,notout) - while (notout && (count < MAX_TIME) && (maxiter == j)) - { -#pragma omp flush(maxiter,notout) - my_sleep (SLEEPTIME); - count += SLEEPTIME; -#ifdef VERBOSE - printf("."); -#endif - } -#ifdef VERBOSE - if (count > 0.) printf(" waited %lf s\n", count); -#endif - /*printf ("thread %d awake\n", tid);*/ - tids[j] = tid; -#ifdef VERBOSE - printf("%d finished by %d\n",j,tid); -#endif - } /* end of for */ - - notout = 0; -#pragma omp flush(maxiter,notout) - - } /* end of parallel */ - -/******************************************************* - * evaluation of the values * - *******************************************************/ - { - int determined_chunksize = 1; - int last_threadnr = tids[0]; - int global_chunknr = 0; - int local_chunknr[NUMBER_OF_THREADS]; - int openwork = CFSMAX_SIZE; - int expected_chunk_size; - double c = 1; - - for (i = 0; i < NUMBER_OF_THREADS; i++) - local_chunknr[i] = 0; - - tids[CFSMAX_SIZE] = -1; - - /* - * determine the number of global chunks - */ - /*fprintf(logFile,"# global_chunknr thread local_chunknr chunksize\n"); */ - for(i = 1; i <= CFSMAX_SIZE; ++i) - { - if (last_threadnr==tids[i]) { - determined_chunksize++; - } - else - { - /* fprintf (logFile, "%d\t%d\t%d\t%d\n", global_chunknr,last_threadnr, local_chunknr[last_threadnr], m); */ - global_chunknr++; - local_chunknr[last_threadnr]++; - last_threadnr = tids[i]; - determined_chunksize = 1; - } - } - /* now allocate the memory for saving the sizes of the global chunks */ - chunksizes = (int*)malloc(global_chunknr * sizeof(int)); - - /* - * Evaluate the sizes of the global chunks - */ - global_chunknr = 0; - determined_chunksize = 1; - last_threadnr = tids[0]; - for (i = 1; i <= CFSMAX_SIZE; ++i) - { - /* If the threadnumber was the same as before increase the detected chunksize for this chunk - * otherwise set the detected chunksize again to one and save the number of the next thread in last_threadnr. - */ - if (last_threadnr == tids[i]) { - determined_chunksize++; - } - else { - chunksizes[global_chunknr] = determined_chunksize; - global_chunknr++; - local_chunknr[last_threadnr]++; - last_threadnr = tids[i]; - determined_chunksize = 1; - } - } - -#ifdef VERBOSE - fprintf (logFile, "found\texpected\tconstant\n"); -#endif - - /* identify the constant c for the exponential decrease of the chunksize */ - expected_chunk_size = openwork / threads; - c = (double) chunksizes[0] / expected_chunk_size; - - for (i = 0; i < global_chunknr; i++) - { - /* calculate the new expected chunksize */ - if (expected_chunk_size > 1) - expected_chunk_size = c * openwork / threads; - -#ifdef VERBOSE - fprintf (logFile, "%8d\t%8d\t%lf\n", chunksizes[i], expected_chunk_size, c * chunksizes[i]/expected_chunk_size); -#endif - - /* check if chunksize is inside the rounding errors */ - if (abs (chunksizes[i] - expected_chunk_size) >= 2) { - result = 0; -#ifndef VERBOSE - fprintf (logFile, "Chunksize differed from expected value: %d instead of %d\n", chunksizes[i], expected_chunk_size); - return 0; -#endif - } /* end if */ - -#ifndef VERBOSE - if (expected_chunk_size - chunksizes[i] < 0 ) - fprintf (logFile, "Chunksize did not decrease: %d instead of %d\n", chunksizes[i],expected_chunk_size); -#endif - - /* calculating the remaining amount of work */ - openwork -= chunksizes[i]; - } - } - return result; -} - - - Index: openmp/trunk/testsuite/c/omp_for_schedule_static.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_schedule_static.c +++ openmp/trunk/testsuite/c/omp_for_schedule_static.c @@ -1,165 +0,0 @@ - -Test which checks the static option of the omp for schedule directive. -2.0 -omp for schedule(static) -omp for nowait,omp flush,omp critical,omp single - -#include -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -#define NUMBER_OF_THREADS 10 -#define CFSMAX_SIZE 1000 -#define MAX_TIME 0.01 - -#ifdef SLEEPTIME -#undef SLEEPTIME -#define SLEEPTIME 0.0005 -#endif - - -int omp_for_schedule_static (FILE * logFile) -{ - int threads; - int i,lasttid; - - int * tids; - int notout; - int maxiter; - int chunk_size; - - int counter = 0; - int tmp_count=1; - int lastthreadsstarttid = -1; - int result = 1; - chunk_size = 7; - - tids = (int *) malloc (sizeof (int) * (CFSMAX_SIZE + 1)); - notout = 1; - maxiter = 0; - -#pragma omp parallel shared(tids,counter) - { /* begin of parallel*/ -#pragma omp single - { - threads = omp_get_num_threads (); - } /* end of single */ - } /* end of parallel */ - - if (threads < 2) - { - printf ("This test only works with at least two threads"); - fprintf (logFile,"This test only works with at least two threads"); - return 0; - } - else - { - fprintf (logFile,"Using an internal count of %d\nUsing a specified chunksize of %d\n", CFSMAX_SIZE, chunk_size); - tids[CFSMAX_SIZE] = -1; /* setting endflag */ -#pragma omp parallel shared(tids) - { /* begin of parallel */ - - double count; - int tid; - int j; - - tid = omp_get_thread_num (); - -#pragma omp for nowait schedule(static,chunk_size) - for(j = 0; j < CFSMAX_SIZE; ++j) - { - count = 0.; -#pragma omp flush(maxiter) - if (j > maxiter) - { -#pragma omp critical - { - maxiter = j; - } /* end of critical */ - } - /*printf ("thread %d sleeping\n", tid);*/ - while (notout && (count < MAX_TIME) && (maxiter == j)) - { -#pragma omp flush(maxiter,notout) - my_sleep (SLEEPTIME); - count += SLEEPTIME; - printf("."); - } -#ifdef VERBOSE - if (count > 0.) printf(" waited %lf s\n", count); -#endif - /*printf ("thread %d awake\n", tid);*/ - tids[j] = tid; -#ifdef VERBOSE - printf("%d finished by %d\n",j,tid); -#endif - } /* end of for */ - - notout = 0; -#pragma omp flush(maxiter,notout) - - } /* end of parallel */ - - /**** analysing the data in array tids ****/ - - lasttid = tids[0]; - tmp_count = 0; - - for (i = 0; i < CFSMAX_SIZE + 1; ++i) - { - /* If the work was done by the same thread increase tmp_count by one. */ - if (tids[i] == lasttid) { - tmp_count++; -#ifdef VERBOSE - fprintf (logFile, "%d: %d \n", i, tids[i]); -#endif - continue; - } - - /* Check if the next thread had has the right thread number. When finding - * threadnumber -1 the end should be reached. - */ - if (tids[i] == (lasttid + 1) % threads || tids[i] == -1) { - /* checking for the right chunk size */ - if (tmp_count == chunk_size) { - tmp_count = 1; - lasttid = tids[i]; -#ifdef VERBOSE - fprintf (logFile, "OK\n"); -#endif - } - /* If the chunk size was wrong, check if the end was reached */ - else { - if (tids[i] == -1) { - if (i == CFSMAX_SIZE) { - fprintf (logFile, "Last thread had chunk size %d\n", tmp_count); - break; - } - else { - fprintf (logFile, "ERROR: Last thread (thread with number -1) was found before the end.\n"); - result = 0; - } - } - else { - fprintf (logFile, "ERROR: chunk size was %d. (assigned was %d)\n", tmp_count, chunk_size); - result = 0; - } - } - } - else { - fprintf(logFile, "ERROR: Found thread with number %d (should be inbetween 0 and %d).", tids[i], threads - 1); - result = 0; - } -#ifdef VERBOSE - fprintf (logFile, "%d: %d \n", i, tids[i]); -#endif - } - } - - return result; -} - - Index: openmp/trunk/testsuite/c/omp_for_schedule_static_3.c =================================================================== --- openmp/trunk/testsuite/c/omp_for_schedule_static_3.c +++ openmp/trunk/testsuite/c/omp_for_schedule_static_3.c @@ -1,212 +0,0 @@ - -Test which checks the static option of the omp for schedule directive considering the specifications for the chunk distribution of several loop regions is the same as specified in the Open MP standard version 3.0. -3.0 -omp for schedule(static) -omp for nowait,omp flush,omp critical,omp single - -#include -#include -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -#define NUMBER_OF_THREADS 10 -#define CFSMAX_SIZE 1000 -#define MAX_TIME 0.01 - -#ifdef SLEEPTIME -#undef SLEEPTIME -#define SLEEPTIME 0.0005 -#endif - -#define VERBOSE 0 - - -int omp_for_schedule_static_3 (FILE * logFile) -{ - int threads; - int i,lasttid; - - int * tids; - int * tids2; - int notout; - int maxiter; - int chunk_size; - - int counter = 0; - int tmp_count=1; - int lastthreadsstarttid = -1; - int result = 1; - chunk_size = 7; - - tids = (int *) malloc (sizeof (int) * (CFSMAX_SIZE + 1)); - notout = 1; - maxiter = 0; - -#pragma omp parallel shared(tids,counter) - { /* begin of parallel*/ -#pragma omp single - { - threads = omp_get_num_threads (); - } /* end of single */ - } /* end of parallel */ - - if (threads < 2) - { - printf ("This test only works with at least two threads"); - fprintf (logFile,"This test only works with at least two threads"); - return 0; - } - else - { - fprintf (logFile,"Using an internal count of %d\nUsing a specified chunksize of %d\n", CFSMAX_SIZE, chunk_size); - tids[CFSMAX_SIZE] = -1; /* setting endflag */ -#pragma omp parallel shared(tids) - { /* begin of parallel */ - - double count; - int tid; - int j; - - tid = omp_get_thread_num (); - -#pragma omp for nowait schedule(static,chunk_size) - for(j = 0; j < CFSMAX_SIZE; ++j) - { - count = 0.; -#pragma omp flush(maxiter) - if (j > maxiter) - { -#pragma omp critical - { - maxiter = j; - } /* end of critical */ - } - /*printf ("thread %d sleeping\n", tid);*/ - while (notout && (count < MAX_TIME) && (maxiter == j)) - { -#pragma omp flush(maxiter,notout) - my_sleep (SLEEPTIME); - count += SLEEPTIME; - printf("."); - } -#ifdef VERBOSE - if (count > 0.) printf(" waited %lf s\n", count); -#endif - /*printf ("thread %d awake\n", tid);*/ - tids[j] = tid; -#ifdef VERBOSE - printf("%d finished by %d\n",j,tid); -#endif - } /* end of for */ - - notout = 0; -#pragma omp flush(maxiter,notout) - - } /* end of parallel */ - - /**** analysing the data in array tids ****/ - - lasttid = tids[0]; - tmp_count = 0; - - for (i = 0; i < CFSMAX_SIZE + 1; ++i) - { - /* If the work was done by the same thread increase tmp_count by one. */ - if (tids[i] == lasttid) { - tmp_count++; -#ifdef VERBOSE - fprintf (logFile, "%d: %d \n", i, tids[i]); -#endif - continue; - } - - /* Check if the next thread had has the right thread number. When finding - * threadnumber -1 the end should be reached. - */ - if (tids[i] == (lasttid + 1) % threads || tids[i] == -1) { - /* checking for the right chunk size */ - if (tmp_count == chunk_size) { - tmp_count = 1; - lasttid = tids[i]; -#ifdef VERBOSE - fprintf (logFile, "OK\n"); -#endif - } - /* If the chunk size was wrong, check if the end was reached */ - else { - if (tids[i] == -1) { - if (i == CFSMAX_SIZE) { - fprintf (logFile, "Last thread had chunk size %d\n", tmp_count); - break; - } - else { - fprintf (logFile, "ERROR: Last thread (thread with number -1) was found before the end.\n"); - result = 0; - } - } - else { - fprintf (logFile, "ERROR: chunk size was %d. (assigned was %d)\n", tmp_count, chunk_size); - result = 0; - } - } - } - else { - fprintf(logFile, "ERROR: Found thread with number %d (should be inbetween 0 and %d).", tids[i], threads - 1); - result = 0; - } -#ifdef VERBOSE - fprintf (logFile, "%d: %d \n", i, tids[i]); -#endif - } - } - - /* Now we check if several loop regions in one parallel region have the same - * logical assignement of chunks to threads. - * We use the nowait clause to increase the probability to get an error. */ - - /* First we allocate some more memmory */ - free (tids); - tids = (int *) malloc (sizeof (int) * LOOPCOUNT); - tids2 = (int *) malloc (sizeof (int) * LOOPCOUNT); - -#pragma omp parallel - { - - { - int n; -#pragma omp for schedule(static) nowait - for (n = 0; n < LOOPCOUNT; n++) - { - if (LOOPCOUNT == n + 1 ) - my_sleep(SLEEPTIME); - - tids[n] = omp_get_thread_num(); - } - } - - - { - int m; -#pragma omp for schedule(static) nowait - for (m = 1; m <= LOOPCOUNT; m++) - { - tids2[m-1] = omp_get_thread_num(); - } - } - - } - - for (i = 0; i < LOOPCOUNT; i++) - if (tids[i] != tids2[i]) { - fprintf (logFile, "Chunk no. %d was assigned once to thread %d and later to thread %d.\n", i, tids[i],tids2[i]); - result = 0; - } - - free (tids); - free (tids2); - return result; -} - - Index: openmp/trunk/testsuite/c/omp_get_num_threads.c =================================================================== --- openmp/trunk/testsuite/c/omp_get_num_threads.c +++ openmp/trunk/testsuite/c/omp_get_num_threads.c @@ -1,39 +0,0 @@ - -Test which checks that the omp_get_num_threads returns the correct number of threads. Therefor it counts up a variable in a parallelized section and compars this value with the result of the omp_get_num_threads function. -2.0 -omp_get_num_threads - -#include - -#include "omp_testsuite.h" - -int omp_get_num_threads (FILE * logFile) -{ - /* checks that omp_get_num_threads is equal to the number of - threads */ - - int nthreads_lib; - - int nthreads = 0; - - nthreads_lib = -1; - -#pragma omp parallel - { -#pragma omp critical - { - nthreads++; - } /* end of critical */ -#pragma omp single - { - - nthreads_lib = omp_get_num_threads (); - - } /* end of single */ - } /* end of parallel */ - - fprintf (logFile, "Counted %d threads. get_num_threads returned %d.\n", nthreads, nthreads_lib); - return (nthreads == nthreads_lib); -} - - Index: openmp/trunk/testsuite/c/omp_get_wtick.c =================================================================== --- openmp/trunk/testsuite/c/omp_get_wtick.c +++ openmp/trunk/testsuite/c/omp_get_wtick.c @@ -1,24 +0,0 @@ - -Test which checks the omp_get_wtick function. -2.0 -omp_get_wtick - -#include - -#include "omp_testsuite.h" - -int omp_get_wtick(FILE * logFile) -{ - - double tick; - - tick = -1.; - - - tick = omp_get_wtick (); - - fprintf (logFile, "Work took %lf sec. time.\n", tick); - return ((tick > 0.0) && (tick < 0.01)); -} - - Index: openmp/trunk/testsuite/c/omp_get_wtime.c =================================================================== --- openmp/trunk/testsuite/c/omp_get_wtime.c +++ openmp/trunk/testsuite/c/omp_get_wtime.c @@ -1,38 +0,0 @@ - -Test which checks the omp_get_wtime function. It compares the time with which is called a sleep function with the time it took by messuring the difference between the call of the sleep function and its end. -2.0 -omp_get_wtime - -#include -#include -#include - - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_get_wtime(FILE * logFile) -{ - - double start; - double end; - - double measured_time; - int wait_time = 1; - - start = 0; - end = 0; - - - start = omp_get_wtime (); - - my_sleep (wait_time); - - end = omp_get_wtime (); - - measured_time = end-start; - fprintf(logFile, "Work took %lf sec. time.\n", measured_time); - return ((measured_time > 0.99 * wait_time) && (measured_time < 1.01 * wait_time)) ; -} - - Index: openmp/trunk/testsuite/c/omp_in_parallel.c =================================================================== --- openmp/trunk/testsuite/c/omp_in_parallel.c +++ openmp/trunk/testsuite/c/omp_in_parallel.c @@ -1,51 +0,0 @@ - -Test which checks that omp_in_parallel returns false when called from a serial region and true when called within a parallel region. -2.0 -omp_in_parallel - -/* - * Checks that false is returned when called from serial region - * and true is returned when called within parallel region. - */ -#include -#include "omp_testsuite.h" - -int omp_in_parallel(FILE * logFile){ - - int serial; - int isparallel; - - - serial = 1; - isparallel = 0; - - - - serial = omp_in_parallel (); - - -#pragma omp parallel - { -#pragma omp single - { - - isparallel = omp_in_parallel (); - - } - } - - - -#pragma omp parallel - { -#pragma omp single - { - - } - } - - - return (!(serial) && isparallel); -} - - Index: openmp/trunk/testsuite/c/omp_lock.c =================================================================== --- openmp/trunk/testsuite/c/omp_lock.c +++ openmp/trunk/testsuite/c/omp_lock.c @@ -1,45 +0,0 @@ - -Test which checks the omp_set_lock and the omp_unset_lock function by counting the threads entering and exiting a single region with locks. -2.0 -omp_lock -omp flush - -#include -#include "omp_testsuite.h" - -omp_lock_t lck; - -int omp_lock(FILE * logFile) -{ - int nr_threads_in_single = 0; - int result = 0; - int nr_iterations = 0; - int i; - omp_init_lock (&lck); - -#pragma omp parallel shared(lck) - { - #pragma omp for - for(i = 0; i < LOOPCOUNT; i++) - { - - omp_set_lock (&lck); - -#pragma omp flush - nr_threads_in_single++; -#pragma omp flush - nr_iterations++; - nr_threads_in_single--; - result = result + nr_threads_in_single; - - omp_unset_lock(&lck); - - } - } - omp_destroy_lock (&lck); - - return ((result == 0) && (nr_iterations == LOOPCOUNT)); - -} - - Index: openmp/trunk/testsuite/c/omp_master.c =================================================================== --- openmp/trunk/testsuite/c/omp_master.c +++ openmp/trunk/testsuite/c/omp_master.c @@ -1,37 +0,0 @@ - -Test which checks the omp master directive by counting up a variable in a omp master section. -2.0 -omp master -omp critical - -#include -#include "omp_testsuite.h" - -int omp_master(FILE * logFile) -{ - - int nthreads; - int executing_thread; - - - nthreads = 0; - executing_thread = -1; - -#pragma omp parallel - { - - #pragma omp master - { -#pragma omp critical - { - nthreads++; - } - executing_thread = omp_get_thread_num (); - - } /* end of master*/ - - } /* end of parallel*/ - return ((nthreads == 1) && (executing_thread == 0)); -} - - Index: openmp/trunk/testsuite/c/omp_master_3.c =================================================================== --- openmp/trunk/testsuite/c/omp_master_3.c +++ openmp/trunk/testsuite/c/omp_master_3.c @@ -1,44 +0,0 @@ - -Test which checks the omp master directive by counting up a variable in a omp master section. It also checks that the master thread has the thread number 0 as specified in the Open MP standard version 3.0. -3.0 -omp master -omp critical - -#include -#include "omp_testsuite.h" - -int omp_master_3(FILE * logFile) -{ - - int nthreads; - int executing_thread; - int tid_result = 0; /* counts up the number of wrong thread no. for - the master thread. (Must be 0) */ - - - nthreads = 0; - executing_thread = -1; - -#pragma omp parallel - { - - #pragma omp master - { - int tid = omp_get_thread_num(); - if (tid != 0) { -#pragma omp critical - { tid_result++; } - } -#pragma omp critical - { - nthreads++; - } - executing_thread = omp_get_thread_num (); - - } /* end of master*/ - - } /* end of parallel*/ - return ((nthreads == 1) && (executing_thread == 0) && (tid_result == 0)); -} - - Index: openmp/trunk/testsuite/c/omp_nest_lock.c =================================================================== --- openmp/trunk/testsuite/c/omp_nest_lock.c +++ openmp/trunk/testsuite/c/omp_nest_lock.c @@ -1,45 +0,0 @@ - -Test which checks the omp_set_nest_lock and the omp_unset_nest_lock function. -2.0 -omp_nest_lock -omp flush - -#include -#include "omp_testsuite.h" - -omp_nest_lock_t lck; - -int omp_nest_lock(FILE * logFile) -{ - int nr_threads_in_single = 0; - int result = 0; - int nr_iterations = 0; - int i; - - omp_init_nest_lock (&lck); - -#pragma omp parallel shared(lck) - { -#pragma omp for - for(i = 0; i < LOOPCOUNT; i++) - { - - omp_set_nest_lock (&lck); - -#pragma omp flush - nr_threads_in_single++; -#pragma omp flush - nr_iterations++; - nr_threads_in_single--; - result = result + nr_threads_in_single; - - omp_unset_nest_lock (&lck); - - } - } - omp_destroy_nest_lock (&lck); - - return ((result == 0) && (nr_iterations == LOOPCOUNT)); -} - - Index: openmp/trunk/testsuite/c/omp_nested.c =================================================================== --- openmp/trunk/testsuite/c/omp_nested.c +++ openmp/trunk/testsuite/c/omp_nested.c @@ -1,42 +0,0 @@ - -Test which checks the omp_nested function. -2.0 -omp_nested -omp critical - -/* - * Test if the compiler supports nested parallelism - * By Chunhua Liao, University of Houston - * Oct. 2005 - */ -#include -#include "omp_testsuite.h" - -int omp_nested(FILE * logFile) -{ - - - int counter = 0; - - -#ifdef _OPENMP - omp_set_nested(1); - omp_set_nested(0); -#endif - -#pragma omp parallel shared(counter) -{ - -#pragma omp critical - counter ++; -#pragma omp parallel - { -#pragma omp critical - counter --; - } - -} - return (counter != 0); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_copyin.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_copyin.c +++ openmp/trunk/testsuite/c/omp_parallel_copyin.c @@ -1,47 +0,0 @@ - -Test which checks the omp parallel copyin directive. -3.0 -omp parallel copyin -omp critical,omp threadprivate - -#include -#include -#include "omp_testsuite.h" - -static int sum1 = 789; -#pragma omp threadprivate(sum1) - -int omp_parallel_copyin(FILE * logFile) -{ - - int sum, num_threads; - - int known_sum; - - sum = 0; - sum1 = 7; - num_threads = 0; - -#pragma omp parallel copyin(sum1) - { - /*printf("sum1=%d\n",sum1);*/ - - int i; -#pragma omp for - for (i = 1; i < 1000; i++) - { - sum1 = sum1 + i; - } /*end of for*/ -#pragma omp critical - { - sum = sum + sum1; - num_threads++; - } /*end of critical*/ - - } /* end of parallel*/ - known_sum = (999 * 1000) / 2 + 7 * num_threads; - return (known_sum == sum); - -} - - Index: openmp/trunk/testsuite/c/omp_parallel_default.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_default.c +++ openmp/trunk/testsuite/c/omp_parallel_default.c @@ -1,44 +0,0 @@ - -Test which checks the default option of the parallel construct. -3.0 -omp parallel default - -#include -#include - -#include "omp_testsuite.h" - -int omp_parallel_default (FILE * logFile) -{ - - int i; - int sum; - int mysum; - - - int known_sum; - sum =0; - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 ; - - - #pragma omp parallel default(shared) private(i) private(mysum,sum) - { - mysum = 0; - #pragma omp for - for (i = 1; i <= LOOPCOUNT; i++) - { - mysum = mysum + i; - } -#pragma omp critical - { - sum = sum + mysum; - } /* end of critical */ - } /* end of parallel */ - - if (known_sum != sum) { - fprintf(logFile, "KNOWN_SUM = %d; SUM = %d\n", known_sum, sum); - } - return (known_sum == sum); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_firstprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_firstprivate.c +++ openmp/trunk/testsuite/c/omp_parallel_firstprivate.c @@ -1,48 +0,0 @@ - -Test which checks the omp parallel firstprivate directive. -3.0 -omp parallel firstprivate -omp for omp critical - -#include -#include -#include "omp_testsuite.h" - -//static int sum1 = 789; - -int omp_parallel_firstprivate(FILE * logFile) -{ - - int sum, num_threads,sum1; - - int known_sum; - - sum = 0; - sum1=7; - num_threads = 0; - - -#pragma omp parallel firstprivate(sum1)private(sum1) - { - - /*printf("sum1=%d\n",sum1);*/ - - int i; -#pragma omp for - for (i = 1; i < 1000; i++) - { - sum1 = sum1 + i; - } /*end of for*/ -#pragma omp critical - { - sum = sum + sum1; - num_threads++; - } /*end of critical*/ - - } /* end of parallel*/ - known_sum = (999 * 1000) / 2 + 7 * num_threads; - return (known_sum == sum); - -} - - Index: openmp/trunk/testsuite/c/omp_parallel_for_firstprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_for_firstprivate.c +++ openmp/trunk/testsuite/c/omp_parallel_for_firstprivate.c @@ -1,36 +0,0 @@ - -Test which checks the omp parallel for firstprivate directive. -2.0 -omp parallel for firstprivate -omp parallel for reduction,omp parallel for private - -#include -#include "omp_testsuite.h" - -int omp_parallel_for_firstprivate(FILE * logFile) -{ - - int sum ; - int i2; - int i; - - - sum=0; - i2=3; - int known_sum; - - #pragma omp parallel for reduction(+:sum) private(i) firstprivate(i2)private(i2) - - for (i = 1; i <= LOOPCOUNT; i++) - { - sum = sum + (i + i2); - } /*end of for*/ - - - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 + i2 * LOOPCOUNT; - - return (known_sum == sum); - -} /* end of check_parallel_for_fistprivate */ - - Index: openmp/trunk/testsuite/c/omp_parallel_for_if.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_for_if.c +++ openmp/trunk/testsuite/c/omp_parallel_for_if.c @@ -1,38 +0,0 @@ - -Test which checks the omp parallel for if directive. Needs at least two threads. -2.0 -omp parallel for if - - -#include -#include -#include "omp_testsuite.h" - -int omp_parallel_for_if(FILE * logFile){ - int known_sum; - - int num_threads; - int sum, sum2; - int i; - int control; - - control = 0; - num_threads=0; - sum = 0; - sum2 = 0; - -#pragma omp parallel for private(i) if (control==1) - - for (i=0; i <= LOOPCOUNT; i++) - { - num_threads = omp_get_num_threads(); - sum = sum + i; - } /*end of for*/ - - - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - fprintf (logFile, "Number of threads determined by omp_get_num_threads: %d\n", num_threads); - return (known_sum == sum && num_threads == 1); -} /* end of check_parallel_for_private */ - - Index: openmp/trunk/testsuite/c/omp_parallel_for_lastprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_for_lastprivate.c +++ openmp/trunk/testsuite/c/omp_parallel_for_lastprivate.c @@ -1,34 +0,0 @@ - -Test which checks the omp parallel for lastprivate directive. -2.0 -omp parallel for lastprivate -omp parallel for reduction,omp parallel for private - -#include -#include "omp_testsuite.h" - -int omp_parallel_for_lastprivate(FILE * logFile){ - - int sum; - int i; - int i0; - - - sum =0; - i0 = -1; - int known_sum; - -#pragma omp parallel for reduction(+:sum) schedule(static,7) private(i) lastprivate(i0)private(i0) - - for (i = 1; i <= LOOPCOUNT; i++) - { - sum = sum + i; - i0 = i; - } /*end of for*/ - /* end of parallel*/ - - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - return ((known_sum == sum) && (i0 == LOOPCOUNT)); -} /* end of check_parallel_for_lastprivate */ - - Index: openmp/trunk/testsuite/c/omp_parallel_for_ordered.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_for_ordered.c +++ openmp/trunk/testsuite/c/omp_parallel_for_ordered.c @@ -1,62 +0,0 @@ - -Test which checks the omp parallel for ordered directive -2.0 -omp parallel for ordered -omp parallel schedule(static) - -#include -#include "omp_testsuite.h" - -static int last_i = 0; -int i; - -#pragma omp threadprivate(i) - -/* Variable ii is used to avoid problems with a threadprivate variable used as a loop - * index. See test omp_threadprivate_for. - */ -static int ii; -#pragma omp threadprivate(ii) - -/*! - Utility function: returns true if the passed argument is larger than - the argument of the last call of this function. - */ -static int check_i_islarger2 (int i){ - int islarger; - islarger = (i > last_i); - last_i = i; - return (islarger); -} - -int omp_parallel_for_ordered(FILE * logFile){ - - int sum; - int is_larger; - - - int known_sum; - int i; - - sum = 0; - is_larger = 1; - last_i = 0; -#pragma omp parallel for schedule(static,1) private(i) ordered - for (i = 1; i < 100; i++) - { - ii = i; - -#pragma omp ordered - { - is_larger = check_i_islarger2 (ii) && is_larger; - sum = sum + ii; - } - - } - known_sum = (99 * 100) / 2; - fprintf (logFile," known_sum = %d , sum = %d \n", known_sum, sum); - fprintf (logFile," is_larger = %d\n", is_larger); - return (known_sum == sum) && is_larger; -} - - Index: openmp/trunk/testsuite/c/omp_parallel_for_private.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_for_private.c +++ openmp/trunk/testsuite/c/omp_parallel_for_private.c @@ -1,48 +0,0 @@ - -Test which checks the omp parallel for private directive. -2.0 -omp parallel for private -omp parallel for reduction,omp flush - -#include -#include -#include "omp_testsuite.h" - -/*! Utility function to spend some time in a loop */ -static void do_some_work (void){ - int i; - double sum = 0; - for(i = 0; i < 1000; i++){ - sum += sqrt (i); - } -} - -int omp_parallel_for_private(FILE * logFile){ - - int sum; - int i; - int i2; - - - sum =0; - i2=0; - int known_sum; - -#pragma omp parallel for reduction(+:sum) schedule(static,1) private(i) private(i2) - - - for (i=1;i<=LOOPCOUNT;i++) - { - i2 = i; -#pragma omp flush - do_some_work (); -#pragma omp flush - sum = sum + i2; - } /*end of for*/ - - - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - return (known_sum == sum); -} /* end of check_parallel_for_private */ - - Index: openmp/trunk/testsuite/c/omp_parallel_for_reduction.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_for_reduction.c +++ openmp/trunk/testsuite/c/omp_parallel_for_reduction.c @@ -1,280 +0,0 @@ - -Test which checks the omp parallel for reduction directive with all its options. -2.0 -omp parallel for reduction - -#include -#include -#include "omp_testsuite.h" - - -int omp_parallel_for_reduction(FILE * logFile){ - - int sum; - int known_sum; - double dsum; - double dknown_sum; - double dt=0.5; /* base of geometric row for + and - test*/ - double rounding_error= 1.E-9; -#define DOUBLE_DIGITS 20 /* dt^DOUBLE_DIGITS */ - int diff; - double ddiff; - int product; - int known_product; -#define MAX_FACTOR 10 -#define KNOWN_PRODUCT 3628800 /* 10! */ - int logic_and; - int logic_or; - int bit_and; - int bit_or; - int exclusiv_bit_or; - int logics[LOOPCOUNT]; - int i; - double dpt; - int result; - - - sum =0; - dsum=0; - dt = 1./3.; - result = 0; - product = 1; - logic_and=1; - logic_or=0; - bit_and=1; - bit_or=0; - exclusiv_bit_or=0; - - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2; - -#pragma omp parallel for schedule(dynamic,1) private(i) reduction(+:sum) - for (i=1;i<=LOOPCOUNT;i++) - { - sum=sum+i; - } - - if(known_sum!=sum) - { - result++; - fprintf(logFile,"Error in sum with integers: Result was %d instead of %d\n",sum,known_sum); - } - - diff = (LOOPCOUNT*(LOOPCOUNT+1))/2; -#pragma omp parallel for schedule(dynamic,1) private(i) reduction(-:diff) - for (i=1;i<=LOOPCOUNT;++i) - { - diff=diff-i; - } - - if(diff != 0) - { - result++; - fprintf(logFile,"Error in difference with integers: Result was %d instead of 0.\n",diff); - } - - /* Tests for doubles */ - dsum=0; - dpt=1; - for (i=0;ireduction(+:dsum) - for (i=0;i rounding_error ) - { - result++; - fprintf(logFile,"Error in sum with doubles: Result was %f instead of %f (Difference: %E)\n",dsum,dknown_sum, dsum-dknown_sum); - } - - dpt=1; - - for (i=0;ireduction(-:ddiff) - for (i=0;i rounding_error) - { - result++; - fprintf(logFile,"Error in Difference with doubles: Result was %E instead of 0.0\n",ddiff); - } - -#pragma omp parallel for schedule(dynamic,1) private(i) reduction(*:product) - for(i=1;i<=MAX_FACTOR;i++) - { - product *= i; - } - - known_product = KNOWN_PRODUCT; - if(known_product != product) - { - result++; - fprintf(logFile,"Error in Product with integers: Result was %d instead of %d\n\n",product,known_product); - } - - for(i=0;ireduction(&&:logic_and) - for(i=0;ireduction(&&:logic_and) - for(i=0;ireduction(||:logic_or) - for(i=0;ireduction(||:logic_or) - for(i=0;ireduction(&:bit_and) - for(i=0;ireduction(&:bit_and) - for(i=0;ireduction(|:bit_or) - for(i=0;ireduction(|:bit_or) - for(i=0;ireduction(^:exclusiv_bit_or) - for(i=0;ireduction(^:exclusiv_bit_or) - for(i=0;i - /*printf("\nResult:%d\n",result);*/ - return (result==0); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_if.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_if.c +++ openmp/trunk/testsuite/c/omp_parallel_if.c @@ -1,40 +0,0 @@ - -Test which checks the if option of the parallel construct. -3.0 -omp parallel if - -#include -#include - -#include "omp_testsuite.h" - -int omp_parallel_if (FILE * logFile) -{ - - int i; - int sum; - int known_sum; - int mysum; - int control=1; - - sum =0; - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 ; -#pragma omp parallel private(i) if(control==0) - { - - mysum = 0; - for (i = 1; i <= LOOPCOUNT; i++) - { - mysum = mysum + i; - } -#pragma omp critical - { - sum = sum + mysum; - } /* end of critical */ - - } /* end of parallel */ - - return (known_sum == sum); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_num_threads.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_num_threads.c +++ openmp/trunk/testsuite/c/omp_parallel_num_threads.c @@ -1,46 +0,0 @@ - -Test which checks the omp_parallel_num_threads directive by counting the threads in a parallel region which was started with an explicitly stated number of threads. -3.0 -omp parellel num_threads -omp master,omp parallel reduction,omp atomic - -#include -#include "omp_testsuite.h" - -int omp_parallel_num_threads(FILE * logFile){ - - int failed; - int threads; - int nthreads; - - - int max_threads = 0; - - failed = 0; - - /* first we check how many threads are available */ -#pragma omp parallel - { -#pragma omp master - max_threads = omp_get_num_threads (); - } - - /* we increase the number of threads from one to maximum:*/ - for (threads = 1; threads <= max_threads; threads++) - { - nthreads = 0; - - -#pragma omp parallel reduction(+:failed) num_threads(threads) - { - failed = failed + !(threads == omp_get_num_threads ()); -#pragma omp atomic - nthreads += 1; - } - - failed = failed + !(nthreads == threads); - } - return (!failed); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_private.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_private.c +++ openmp/trunk/testsuite/c/omp_parallel_private.c @@ -1,50 +0,0 @@ - -Test which checks the omp parallel private directive. -3.0 -omp parallel private -omp for omp critical - -#include -#include -#include "omp_testsuite.h" - -//static int sum1 = 789; - -int omp_parallel_private(FILE * logFile) -{ - - int sum, num_threads,sum1; - - int known_sum; - - sum = 0; - sum1=0; - num_threads = 0; - - -#pragma omp parallel private(sum1) - { - - sum1 = 7; - - /*printf("sum1=%d\n",sum1);*/ - - int i; -#pragma omp for - for (i = 1; i < 1000; i++) - { - sum1 = sum1 + i; - } /*end of for*/ -#pragma omp critical - { - sum = sum + sum1; - num_threads++; - } /*end of critical*/ - - } /* end of parallel*/ - known_sum = (999 * 1000) / 2 + 7 * num_threads; - return (known_sum == sum); - -} - - Index: openmp/trunk/testsuite/c/omp_parallel_reduction.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_reduction.c +++ openmp/trunk/testsuite/c/omp_parallel_reduction.c @@ -1,278 +0,0 @@ - -Test which checks the omp parallel reduction directive with all its options. -3.0 -omp parallel reduction - -#include -#include -#include "omp_testsuite.h" - - -int omp_parallel_reduction(FILE * logFile){ - - int sum; - int known_sum; - double dsum; - double dknown_sum; - double dt=0.5; /* base of geometric row for + and - test*/ - double rounding_error= 1.E-9; -#define DOUBLE_DIGITS 20 /* dt^DOUBLE_DIGITS */ - int diff; - double ddiff; - int product; - int known_product; -#define MAX_FACTOR 10 -#define KNOWN_PRODUCT 3628800 /* 10! */ - int logic_and; - int logic_or; - int bit_and; - int bit_or; - int exclusiv_bit_or; - int logics[LOOPCOUNT]; - int i; - double dpt; - int result; - - sum =0; - dsum=0; - product=1; - logic_and=1; - logic_or=0; - bit_and=1; - bit_or=0; - exclusiv_bit_or=0; - result=0; - dt = 1./3.; - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2; - -#pragma omp parallel for schedule(dynamic,1) private(i) reduction(+:sum) - for (i=1;i<=LOOPCOUNT;i++) - { - sum=sum+i; - } - - if(known_sum!=sum) - { - result++; - fprintf(logFile,"Error in sum with integers: Result was %d instead of %d\n",sum,known_sum); - } - - diff = (LOOPCOUNT*(LOOPCOUNT+1))/2; -#pragma omp parallel for schedule(dynamic,1) private(i) reduction(-:diff) - for (i=1;i<=LOOPCOUNT;++i) - { - diff=diff-i; - } - - if(diff != 0) - { - result++; - fprintf(logFile,"Error in difference with integers: Result was %d instead of 0.\n",diff); - } - - /* Tests for doubles */ - dsum=0; - dpt=1; - for (i=0;ireduction(+:dsum) - for (i=0;i rounding_error ) - { - result++; - fprintf(logFile,"Error in sum with doubles: Result was %f instead of %f (Difference: %E)\n",dsum,dknown_sum, dsum-dknown_sum); - } - - dpt=1; - - for (i=0;ireduction(-:ddiff) - for (i=0;i rounding_error) - { - result++; - fprintf(logFile,"Error in Difference with doubles: Result was %E instead of 0.0\n",ddiff); - } - -#pragma omp parallel for schedule(dynamic,1) private(i) reduction(*:product) - for(i=1;i<=MAX_FACTOR;i++) - { - product *= i; - } - - known_product = KNOWN_PRODUCT; - if(known_product != product) - { - result++; - fprintf(logFile,"Error in Product with integers: Result was %d instead of %d\n\n",product,known_product); - } - - for(i=0;ireduction(&&:logic_and) - for(i=0;ireduction(&&:logic_and) - for(i=0;ireduction(||:logic_or) - for(i=0;ireduction(||:logic_or) - for(i=0;ireduction(&:bit_and) - for(i=0;ireduction(&:bit_and) - for(i=0;ireduction(|:bit_or) - for(i=0;ireduction(|:bit_or) - for(i=0;ireduction(^:exclusiv_bit_or) - for(i=0;ireduction(^:exclusiv_bit_or) - for(i=0;i - /*printf("\nResult:%d\n",result);*/ - return (result==0); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_sections_firstprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_sections_firstprivate.c +++ openmp/trunk/testsuite/c/omp_parallel_sections_firstprivate.c @@ -1,49 +0,0 @@ - -Test which checks the omp parallel sections firstprivate directive. -2.0 -omp parallel sections firstprivate -omp critical - -#include -#include "omp_testsuite.h" - -int omp_parallel_sections_firstprivate(FILE * logFile){ - - int sum; - int sum0; - - int known_sum; - sum =7; - sum0=11; - - -#pragma omp parallel sections firstprivate(sum0)private(sum0) - { -#pragma omp section - { -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical */ - } -#pragma omp section - { -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical */ - } -#pragma omp section - { -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical */ - } - } /*end of parallel sections*/ - -known_sum=11*3+7; -return (known_sum==sum); -} /* end of check_section_firstprivate*/ - - Index: openmp/trunk/testsuite/c/omp_parallel_sections_lastprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_sections_lastprivate.c +++ openmp/trunk/testsuite/c/omp_parallel_sections_lastprivate.c @@ -1,70 +0,0 @@ - -Test which checks the omp parallel sections lastprivate directive. -2.0 -omp parallel sections lastprivate -omp critical,omp parallel sections private - -#include -#include "omp_testsuite.h" - -int omp_parallel_sections_lastprivate(FILE * logFile){ - - int sum; - int sum0; - int i; - int i0; - - int known_sum; - sum =0; - sum0 = 0; - i0 = -1; - - -#pragma omp parallel sections private(i,sum0) lastprivate(i0)private(i0) - { -#pragma omp section - { - sum0=0; - for (i=1;i<400;i++) - { - sum0=sum0+i; - i0=i; - } -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical*/ - }/* end of section */ -#pragma omp section - { - sum0=0; - for(i=400;i<700;i++) - { - sum0=sum0+i; /*end of for*/ - i0=i; - } -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical*/ - } -#pragma omp section - { - sum0=0; - for(i=700;i<1000;i++) - { - sum0=sum0+i; - i0=i; - } -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical*/ - } - }/* end of parallel sections*/ - - known_sum=(999*1000)/2; - return ((known_sum==sum) && (i0==999) ); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_sections_private.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_sections_private.c +++ openmp/trunk/testsuite/c/omp_parallel_sections_private.c @@ -1,65 +0,0 @@ - -Test which checks the omp parallel sections private directive. -2.0 -omp parallel sections private -omp critical - -#include -#include "omp_testsuite.h" - -int omp_parallel_sections_private(FILE * logFile){ - - int sum; - int sum0; - int i; - - int known_sum; - sum = 7; - sum0=0; - - -#pragma omp parallel sections private(sum0, i) - { -#pragma omp section - { - - sum0=0; - - for (i=1;i<400;i++) - sum0=sum0+i; -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical */ - } -#pragma omp section - { - - sum0=0; - - for(i=400;i<700;i++) - sum0=sum0+i; -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical */ - } -#pragma omp section - { - - sum0=0; - - for(i=700;i<1000;i++) - sum0=sum0+i; -#pragma omp critical - { - sum= sum+sum0; - } /*end of critical */ - } - } /*end of parallel sections*/ - -known_sum=(999*1000)/2+7; -return (known_sum==sum); -} /* end of check_section_private*/ - - Index: openmp/trunk/testsuite/c/omp_parallel_sections_reduction.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_sections_reduction.c +++ openmp/trunk/testsuite/c/omp_parallel_sections_reduction.c @@ -1,568 +0,0 @@ - -Test which checks the omp parallel sections reduction directive with all its option. -2.0 -omp parallel sections reduction - -#include -#include -#include "omp_testsuite.h" - - -int omp_parallel_sections_reduction(FILE * logFile){ - - int sum; - int known_sum; - double dpt; - double dsum; - double dknown_sum; - double dt=0.5; /* base of geometric row for + and - test*/ - double rounding_error= 1.E-5; - int diff; - double ddiff; - int product; - int known_product; - int logic_and; - int bit_and; - int logic_or; - int bit_or; - int exclusiv_bit_or; - int logics[1000]; - int i; - int result; - - - sum = 7; - dsum=0; - product =1; - dpt = 1; - logic_and=1; - bit_and=1; - logic_or=0; - bit_or=0; - exclusiv_bit_or=0; - result =0; - /* int my_islarger;*/ - /*int is_larger=1;*/ - known_sum = (999*1000)/2+7; - - -#pragma omp parallel sections private(i) reduction(+:sum) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - sum=sum+i; - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - sum=sum+i; - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - sum=sum+i; - } - } - } - - if(known_sum!=sum) - { - result++; - fprintf(logFile,"Error in sum with integers: Result was %d instead of %d.\n",sum, known_sum); - } - - diff = (999*1000)/2; -#pragma omp parallel sections private(i) reduction(-:diff) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - diff=diff-i; - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - diff=diff-i; - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - diff=diff-i; - } - } - } - - - if(diff != 0) - { - result++; - fprintf(logFile,"Error in Difference with integers: Result was %d instead of 0.\n",diff); - } - for (i=0;i<20;++i) - { - dpt*=dt; - } - dknown_sum = (1-dpt)/(1-dt); -#pragma omp parallel sections private(i) reduction(+:dsum) - { -#pragma omp section - { - for (i=0;i<6;++i) - { - dsum += pow(dt,i); - } - } -#pragma omp section - { - for (i=6;i<12;++i) - { - dsum += pow(dt,i); - } - } -#pragma omp section - { - for (i=12;i<20;++i) - { - dsum += pow(dt,i); - } - } - } - - - if( fabs(dsum-dknown_sum) > rounding_error ) - { - result++; - fprintf(logFile,"Error in sum with doubles: Result was %f instead of %f (Difference: %E)\n",dsum,dknown_sum, dsum-dknown_sum); - } - - dpt=1; - - for (i=0;i<20;++i) - { - dpt*=dt; - } - fprintf(logFile,"\n"); - ddiff = (1-dpt)/(1-dt); -#pragma omp parallel sections private(i) reduction(-:ddiff) - { -#pragma omp section - { - for (i=0;i<6;++i) - { - ddiff -= pow(dt,i); - } - } -#pragma omp section - { - for (i=6;i<12;++i) - { - ddiff -= pow(dt,i); - } - } -#pragma omp section - { - for (i=12;i<20;++i) - { - ddiff -= pow(dt,i); - } - } - } - - if( fabs(ddiff) > rounding_error) - { - result++; - fprintf(logFile,"Error in Difference with doubles: Result was %E instead of 0.0\n",ddiff); - } - - known_product = 3628800; -#pragma omp parallel sections private(i) reduction(*:product) - { -#pragma omp section - { - for(i=1;i<3;i++) - { - product *= i; - } - } -#pragma omp section - { - for(i=3;i<7;i++) - { - product *= i; - } - } -#pragma omp section - { - for(i=7;i<11;i++) - { - product *= i; - } - } - } - - - if(known_product != product) - { - result++; - fprintf(logFile,"Error in Product with integers: Result was %d instead of %d\n",product,known_product); - } - - for(i=0;i<1000;i++) - { - logics[i]=1; - } - -#pragma omp parallel sections private(i) reduction(&&:logic_and) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_and = (logic_and && logics[i]); - } - } - } - - if(!logic_and) - { - result++; - fprintf(logFile,"Error in logic AND part 1\n"); - } - - logic_and = 1; - logics[501] = 0; - -#pragma omp parallel sections private(i) reduction(&&:logic_and) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_and = (logic_and && logics[i]); - } - } - } - - if(logic_and) - { - result++; - fprintf(logFile,"Error in logic AND part 2"); - } - - for(i=0;i<1000;i++) - { - logics[i]=0; - } - -#pragma omp parallel sections private(i) reduction(||:logic_or) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_or = (logic_or || logics[i]); - } - } - } - - if(logic_or) - { - result++; - fprintf(logFile,"Error in logic OR part 1\n"); - } - - logic_or = 0; - logics[501]=1; - -#pragma omp parallel sections private(i) reduction(||:logic_or) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_or = (logic_or || logics[i]); - } - } - } - - if(!logic_or) - { - result++; - fprintf(logFile,"Error in logic OR part 2\n"); - } - - for(i=0;i<1000;++i) - { - logics[i]=1; - } - -#pragma omp parallel sections private(i) reduction(&:bit_and) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_and = (bit_and & logics[i]); - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_and = (bit_and & logics[i]); - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_and = (bit_and & logics[i]); - } - } - } - if(!bit_and) - { - result++; - fprintf(logFile,"Error in BIT AND part 1\n"); - } - - bit_and = 1; - logics[501]=0; - -#pragma omp parallel sections private(i) reduction(&:bit_and) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_and = bit_and & logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_and = bit_and & logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_and = bit_and & logics[i]; - } - } - } - if(bit_and) - { - result++; - fprintf(logFile,"Error in BIT AND part 2"); - } - - for(i=0;i<1000;i++) - { - logics[i]=0; - } - -#pragma omp parallel sections private(i) reduction(|:bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_or = bit_or | logics[i]; - } - } - } - if(bit_or) - { - result++; - fprintf(logFile,"Error in BIT OR part 1\n"); - } - bit_or = 0; - logics[501]=1; - -#pragma omp parallel sections private(i) reduction(|:bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_or = bit_or | logics[i]; - } - } - } - if(!bit_or) - { - result++; - fprintf(logFile,"Error in BIT OR part 2\n"); - } - - for(i=0;i<1000;i++) - { - logics[i]=0; - } - -#pragma omp parallel sections private(i) reduction(^:exclusiv_bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } - } - if(exclusiv_bit_or) - { - result++; - fprintf(logFile,"Error in EXCLUSIV BIT OR part 1\n"); - } - - exclusiv_bit_or = 0; - logics[501]=1; - -#pragma omp parallel sections private(i) reduction(^:exclusiv_bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } - } - if(!exclusiv_bit_or) - { - result++; - fprintf(logFile,"Error in EXCLUSIV BIT OR part 2\n"); - } - - /*printf("\nResult:%d\n",result);*/ - return (result==0); -} - - Index: openmp/trunk/testsuite/c/omp_parallel_shared.c =================================================================== --- openmp/trunk/testsuite/c/omp_parallel_shared.c +++ openmp/trunk/testsuite/c/omp_parallel_shared.c @@ -1,43 +0,0 @@ - -Test which checks the shared option of the parallel construct. -3.0 -omp parallel shared - -#include -#include - -#include "omp_testsuite.h" - -int omp_parallel_shared (FILE * logFile) -{ - - int i; - int sum; - - sum = 0; - int known_sum; - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 ; - -#pragma omp parallel private(i) shared(sum) firstprivate(sum) - { - - int mysum = 0; -#pragma omp for - for (i = 1; i <= LOOPCOUNT; i++) - { - mysum = mysum + i; - } -#pragma omp critical - { - sum = sum + mysum; - } /* end of critical */ - - - } /* end of parallel */ - if (known_sum != sum) { - fprintf(logFile, "KNOWN_SUM = %d; SUM = %d\n", known_sum, sum); - } - return (known_sum == sum); -} - - Index: openmp/trunk/testsuite/c/omp_section_firstprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_section_firstprivate.c +++ openmp/trunk/testsuite/c/omp_section_firstprivate.c @@ -1,52 +0,0 @@ - -Test which checks the omp section firstprivate directive by adding a variable which is defined before the parallel region. -2.0 -omp firstprivate - -#include -#include "omp_testsuite.h" - - -int omp_section_firstprivate(FILE * logFile){ - - int sum; - int sum0; - - int known_sum; - - sum0 = 11; - sum = 7; -#pragma omp parallel - { - -#pragma omp sections firstprivate(sum0)private(sum0) - { -#pragma omp section - { -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } -#pragma omp section - { -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } -#pragma omp section - { -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } - } /*end of sections*/ - - } /* end of parallel */ - known_sum = 11 * 3 + 7; - return (known_sum == sum); -} /* end of check_section_firstprivate*/ - - Index: openmp/trunk/testsuite/c/omp_section_lastprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_section_lastprivate.c +++ openmp/trunk/testsuite/c/omp_section_lastprivate.c @@ -1,73 +0,0 @@ - -Test which checks the omp section lastprivate directive. -2.0 -omp section lastprivate - -#include -#include "omp_testsuite.h" - - -int omp_section_lastprivate(FILE * logFile){ - - int i0 = -1; - int sum = 0; - int i; - int sum0 = 0; - - int known_sum; - - i0 = -1; - sum = 0; - -#pragma omp parallel - { - -#pragma omp sections lastprivate(i0)private(i0) private(i,sum0) - { -#pragma omp section - { - sum0 = 0; - for (i = 1; i < 400; i++) - { - sum0 = sum0 + i; - i0 = i; - } -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical*/ - } /* end of section */ -#pragma omp section - { - sum0 = 0; - for(i = 400; i < 700; i++) - { - sum0 = sum0 + i; - i0 = i; - } -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical*/ - } -#pragma omp section - { - sum0 = 0; - for(i = 700; i < 1000; i++) - { - sum0 = sum0 + i; - i0 = i; - } -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical*/ - } - } /* end of sections*/ - - } /* end of parallel*/ - known_sum = (999 * 1000) / 2; - return ((known_sum == sum) && (i0 == 999) ); -} - - Index: openmp/trunk/testsuite/c/omp_section_private.c =================================================================== --- openmp/trunk/testsuite/c/omp_section_private.c +++ openmp/trunk/testsuite/c/omp_section_private.c @@ -1,69 +0,0 @@ - -Test which checks the omp section private directive by upcounting a variable in a to several sections splitted loop. -2.0 -omp section private -omp critical - -#include -#include "omp_testsuite.h" - -int omp_section_private(FILE * logFile){ - - int sum; - int sum0; - int i; - - int known_sum; - - sum = 7; - sum0 = 0; - -#pragma omp parallel - { - -#pragma omp sections private(sum0,i)private(i) - { -#pragma omp section - { - - sum0 = 0; - - for (i = 1; i < 400; i++) - sum0 = sum0 + i; -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } -#pragma omp section - { - - sum0 = 0; - - for (i = 400; i < 700; i++) - sum0 = sum0 + i; -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } -#pragma omp section - { - - sum0 = 0; - - for (i = 700; i < 1000; i++) - sum0 = sum0 + i; -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } - } /*end of sections*/ - - } /* end of parallel */ - known_sum = (999 * 1000) / 2 + 7; - return (known_sum == sum); -} /* end of check_section_private*/ - - Index: openmp/trunk/testsuite/c/omp_sections_nowait.c =================================================================== --- openmp/trunk/testsuite/c/omp_sections_nowait.c +++ openmp/trunk/testsuite/c/omp_sections_nowait.c @@ -1,66 +0,0 @@ - -Test which checks the omp parallel for nowait directive. It fills an array with values and operates on these in the following. -omp parallel sections nowait -1.0 -omp parallel sections, omp flush - -#include - -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_sections_nowait (FILE * logFile) -{ - - int result; - int count; - - int j; - - result = 0; - count = 0; - -#pragma omp parallel - { - - int rank; - - rank = omp_get_thread_num (); - -#pragma omp sections nowait - { -#pragma omp section - { - fprintf (logFile, "Thread nr %d enters first section and gets sleeping.\n", rank); - my_sleep(SLEEPTIME); - count = 1; - fprintf (logFile, "Thread nr %d woke up an set count to 1.\n", rank); -#pragma omp flush(count) - } -#pragma omp section - { - fprintf (logFile, "Thread nr %d executed work in the first section.\n", rank); - } - } -/* Begin of second sections environment */ -#pragma omp sections - { -#pragma omp section - { - fprintf (logFile, "Thread nr %d executed work in the second section.\n", rank); - } -#pragma omp section - { - fprintf (logFile, "Thread nr %d executed work in the second section and controls the value of count\n", rank); - if (count == 0) - result = 1; - fprintf (logFile, "cout was %d", count); - } - } - - } - - return result; -} - - Index: openmp/trunk/testsuite/c/omp_sections_reduction.c =================================================================== --- openmp/trunk/testsuite/c/omp_sections_reduction.c +++ openmp/trunk/testsuite/c/omp_sections_reduction.c @@ -1,613 +0,0 @@ - -Test which checks the omp sections reduction directive with all its options. -2.0 -omp sections reduction - -#include -#include -#include "omp_testsuite.h" - - -int omp_sections_reduction(FILE * logFile){ - - int sum; - int known_sum; - double dpt,dsum; - double dknown_sum; - double dt=0.5; /* base of geometric row for + and - test*/ - double rounding_error= 1.E-9; - int diff; - double ddiff; - int product; - int known_product; - int logic_and; - int bit_and; - int logic_or; - int bit_or; - int exclusiv_bit_or; - int logics[1000]; - int i; - int result; - - /* int my_islarger;*/ - /*int is_larger=1;*/ - - sum =7; - dpt =1; - dsum=0; - product =1; - logic_and=1; - bit_and=1; - logic_or=0; - bit_or=0; - exclusiv_bit_or=0; - result = 0; - dt = 1./3.; - known_sum = (999*1000)/2+7; - -#pragma omp parallel - { - -#pragma omp sections private(i) reduction(+:sum) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - sum=sum+i; - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - sum=sum+i; - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - sum=sum+i; - } - } - } - } - - if(known_sum!=sum) - { - ++result; - fprintf(logFile,"Error in sum with integers: Result was %d instead of %d\n", sum,known_sum); - } - - diff = (999*1000)/2; -#pragma omp parallel - { -#pragma omp sections private(i) reduction(-:diff) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - diff=diff-i; - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - diff=diff-i; - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - diff=diff-i; - } - } - } - } - - if(diff != 0) - { - result++; - fprintf(logFile,"Error in Difference with integers: Result was %d instead of 0.\n",diff); - } - - for (i=0;i<20;++i) - { - dpt*=dt; - } - dknown_sum = (1-dpt)/(1-dt); -#pragma omp parallel - { -#pragma omp sections private(i) reduction(+:dsum) - { -#pragma omp section - { - for (i=0;i<6;++i) - { - dsum += pow(dt,i); - } - } -#pragma omp section - { - for (i=6;i<12;++i) - { - dsum += pow(dt,i); - } - } -#pragma omp section - { - for (i=12;i<20;++i) - { - dsum += pow(dt,i); - } - } - } - } - - if( fabs(dsum-dknown_sum) > rounding_error ) - { - result++; - fprintf(logFile,"Error in sum with doubles: Result was %f instead of %f (Difference: %E)\n",dsum,dknown_sum, dsum-dknown_sum); - } - - dpt=1; - - for (i=0;i<20;++i) - { - dpt*=dt; - } - fprintf(logFile,"\n"); - ddiff = (1-dpt)/(1-dt); -#pragma omp parallel - { -#pragma omp sections private(i) reduction(-:ddiff) - { -#pragma omp section - { - for (i=0;i<6;++i) - { - ddiff -= pow(dt,i); - } - } -#pragma omp section - { - for (i=6;i<12;++i) - { - ddiff -= pow(dt,i); - } - } -#pragma omp section - { - for (i=12;i<20;++i) - { - ddiff -= pow(dt,i); - } - } - } - } - - if( fabs(ddiff) > rounding_error) - { - result++; - fprintf(logFile,"Error in Difference with doubles: Result was %E instead of 0.0\n",ddiff); - } - - - known_product = 3628800; -#pragma omp parallel - { -#pragma omp sections private(i) reduction(*:product) - { -#pragma omp section - { - for(i=1;i<3;i++) - { - product *= i; - } - } -#pragma omp section - { - for(i=3;i<7;i++) - { - product *= i; - } - } -#pragma omp section - { - for(i=7;i<11;i++) - { - product *= i; - } - } - } - } - - if(known_product != product) - { - result++; - fprintf(logFile,"Error in Product with integers: Result was %d instead of %d\n",product,known_product); - } - - for(i=0;i<1000;i++) - { - logics[i]=1; - } - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(&&:logic_and) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_and = (logic_and && logics[i]); - } - } - } - } - - if(!logic_and) - { - result++; - fprintf(logFile,"Error in logic AND part 1\n"); - } - - logic_and = 1; - logics[501] = 0; - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(&&:logic_and) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_and = (logic_and && logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_and = (logic_and && logics[i]); - } - } - } - } - - if(logic_and) - { - result++; - fprintf(logFile,"Error in logic AND part 2\n"); - } - - for(i=0;i<1000;i++) - { - logics[i]=0; - } - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(||:logic_or) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_or = (logic_or || logics[i]); - } - } - } - } - - if(logic_or) - { - result++; - fprintf(logFile,"\nError in logic OR part 1\n"); - } - - logic_or = 0; - logics[501]=1; - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(||:logic_or) - { -#pragma omp section - { - for (i=1;i<300;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=300;i<700;i++) - { - logic_or = (logic_or || logics[i]); - } - } -#pragma omp section - { - for (i=700;i<1000;i++) - { - logic_or = (logic_or || logics[i]); - } - } - } - } - - if(!logic_or) - { - result++; - fprintf(logFile,"Error in logic OR part 2\n"); - } - - - for(i=0;i<1000;++i) - { - logics[i]=1; - } - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(&:bit_and) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_and = (bit_and & logics[i]); - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_and = (bit_and & logics[i]); - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_and = (bit_and & logics[i]); - } - } - } - } - if(!bit_and) - { - result++; - fprintf(logFile,"Error in BIT AND part 1\n"); - } - - bit_and = 1; - logics[501]=0; - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(&:bit_and) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_and = bit_and & logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_and = bit_and & logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_and = bit_and & logics[i]; - } - } - } - } - if(bit_and) - { - result++; - fprintf(logFile,"Error in BIT AND part 2\n"); - } - - for(i=0;i<1000;i++) - { - logics[i]=0; - } - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(|:bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_or = bit_or | logics[i]; - } - } - } - } - if(bit_or) - { - result++; - fprintf(logFile,"Error in BIT OR part 1\n"); - } - bit_or = 0; - logics[501]=1; - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(|:bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - bit_or = bit_or | logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - bit_or = bit_or | logics[i]; - } - } - } - } - if(!bit_or) - { - result++; - fprintf(logFile,"Error in BIT OR part 2\n"); - } - - for(i=0;i<1000;i++) - { - logics[i]=0; - } - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(^:exclusiv_bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } - } - } - if(exclusiv_bit_or) - { - result++; - fprintf(logFile,"Error in EXCLUSIV BIT OR part 1\n"); - } - - exclusiv_bit_or = 0; - logics[501]=1; - -#pragma omp parallel - { -#pragma omp sections private(i) reduction(^:exclusiv_bit_or) - { -#pragma omp section - { - for(i=0;i<300;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=300;i<700;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } -#pragma omp section - { - for(i=700;i<1000;++i) - { - exclusiv_bit_or = exclusiv_bit_or ^ logics[i]; - } - } - } - } - if(!exclusiv_bit_or) - { - result++; - fprintf(logFile,"Error in EXCLUSIV BIT OR part 2\n"); - } - - /*printf("\nResult:%d\n",result);*/ - return (result==0); -} - - Index: openmp/trunk/testsuite/c/omp_single.c =================================================================== --- openmp/trunk/testsuite/c/omp_single.c +++ openmp/trunk/testsuite/c/omp_single.c @@ -1,43 +0,0 @@ - -Test which checks the omp single directive by controlling how often a directive is called in an omp single region. -2.0 -omp single -omp parallel private,omp flush - -#include -#include "omp_testsuite.h" - -int omp_single(FILE * logFile) -{ - - int nr_threads_in_single; - int result; - int nr_iterations; - int i; - - - nr_threads_in_single = 0; - result = 0; - nr_iterations = 0; - -#pragma omp parallel private(i) - { - for (i = 0; i < LOOPCOUNT; i++) - { - - #pragma omp single - { -#pragma omp flush - nr_threads_in_single++; -#pragma omp flush - nr_iterations++; - nr_threads_in_single--; - result = result + nr_threads_in_single; - } /* end of single */ - - } /* end of for */ - } /* end of parallel */ - return ((result == 0) && (nr_iterations == LOOPCOUNT)); -} /* end of check_single*/ - - Index: openmp/trunk/testsuite/c/omp_single_copyprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_single_copyprivate.c +++ openmp/trunk/testsuite/c/omp_single_copyprivate.c @@ -1,50 +0,0 @@ - -Test which checks the omp single copyprivate directive. -2.0 -omp single copyprivate -omp parllel,omp critical - -#include "omp_testsuite.h" - -int j; -#pragma omp threadprivate(j) - -int omp_single_copyprivate(FILE * logFile) -{ - - int result; - int nr_iterations; - - - result = 0; - nr_iterations = 0; -#pragma omp parallel - { - - int i; - for (i = 0; i < LOOPCOUNT; i++) - { - /* - int thread; - thread = omp_get_thread_num (); - */ -#pragma omp single copyprivate(j) - { - nr_iterations++; - j = i; - /*printf ("thread %d assigns, j = %d, i = %d\n", thread, j, i);*/ - } - /* #pragma omp barrier*/ -#pragma omp critical - { - /*printf ("thread = %d, j = %d, i = %d\n", thread, j, i);*/ - result = result + j - i; - } -#pragma omp barrier - } /* end of for */ - - } /* end of parallel */ - return ((result == 0) && (nr_iterations == LOOPCOUNT)); -} - - Index: openmp/trunk/testsuite/c/omp_single_nowait.c =================================================================== --- openmp/trunk/testsuite/c/omp_single_nowait.c +++ openmp/trunk/testsuite/c/omp_single_nowait.c @@ -1,60 +0,0 @@ - - -2.0 -omp single nowait -omp critical,omp atomic - -#include -#include "omp_testsuite.h" - -int my_iterations; -#pragma omp threadprivate(my_iterations) - -int omp_single_nowait(FILE * logFile) -{ - - int nr_iterations; - - - int total_iterations = 0; - int i; - - nr_iterations = 0; - my_iterations = 0; - -#pragma omp parallel private(i) - { - for (i = 0; i < LOOPCOUNT; i++) - { - - #pragma omp single nowait - { -#pragma omp atomic - nr_iterations++; - } /* end of single*/ - - } /* end of for */ - } /* end of parallel */ - -#pragma omp parallel private(i) - { - my_iterations = 0; - for (i = 0; i < LOOPCOUNT; i++) - { - - #pragma omp single nowait - { - my_iterations++; - } /* end of single*/ - - } /* end of for */ -#pragma omp critical - { - total_iterations += my_iterations; - } - - } /* end of parallel */ - return ((nr_iterations == LOOPCOUNT) && (total_iterations == LOOPCOUNT)); -} /* end of check_single_nowait*/ - - Index: openmp/trunk/testsuite/c/omp_single_private.c =================================================================== --- openmp/trunk/testsuite/c/omp_single_private.c +++ openmp/trunk/testsuite/c/omp_single_private.c @@ -1,56 +0,0 @@ - -Test which checks the omp single private directive. -2.0 -omp singel private -omp critical,omp flush,omp single nowait - -#include -#include "omp_testsuite.h" - -int myit = 0; -#pragma omp threadprivate(myit) -int myresult = 0; -#pragma omp threadprivate(myresult) - -int omp_single_private(FILE * logFile) -{ - - int nr_threads_in_single; - int result; - int nr_iterations; - - int i; - - myit = 0; - nr_threads_in_single = 0; - nr_iterations = 0; - result = 0; - -#pragma omp parallel private(i) - { - myresult = 0; - myit = 0; - for (i = 0; i < LOOPCOUNT; i++) - { - -#pragma omp single private(nr_threads_in_single) nowait - { - nr_threads_in_single = 0; -#pragma omp flush - nr_threads_in_single++; -#pragma omp flush - myit++; - myresult = myresult + nr_threads_in_single; - } /* end of single */ - - } /* end of for */ -#pragma omp critical - { - result += nr_threads_in_single; - nr_iterations += myit; - } - } /* end of parallel */ - return ((result == 0) && (nr_iterations == LOOPCOUNT)); -} /* end of check_single private */ - - Index: openmp/trunk/testsuite/c/omp_task.c =================================================================== --- openmp/trunk/testsuite/c/omp_task.c +++ openmp/trunk/testsuite/c/omp_task.c @@ -1,52 +0,0 @@ - -Test which checks the omp task directive. The idea of the tests is to generate a set of tasks in a single region. We let pause the tasks generated so that other threads get sheduled to the newly opened tasks. -3.0 -omp task -omp single - -#include -#include -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - - -int omp_task(FILE * logFile){ - - int tids[NUM_TASKS]; - int i; - - -#pragma omp parallel -{ -#pragma omp single - { - for (i = 0; i < NUM_TASKS; i++) { - - /* First we have to store the value of the loop index in a new variable - * which will be private for each task because otherwise it will be overwritten - * if the execution of the task takes longer than the time which is needed to - * enter the next step of the loop! - */ - int myi; - myi = i; - -#pragma omp task - { - my_sleep (SLEEPTIME); - - tids[myi] = omp_get_thread_num(); - } /* end of omp task */ - - } /* end of for */ - } /* end of single */ -} /*end of parallel */ - -/* Now we ckeck if more than one thread executed the tasks. */ - for (i = 1; i < NUM_TASKS; i++) { - if (tids[0] != tids[i]) - return 1; - } - return 0; -} /* end of check_parallel_for_private */ - - Index: openmp/trunk/testsuite/c/omp_task_final.c =================================================================== --- openmp/trunk/testsuite/c/omp_task_final.c +++ openmp/trunk/testsuite/c/omp_task_final.c @@ -1,52 +0,0 @@ - -Test which checks the omp task directive. The idea of the tests is to generate a set of tasks in a single region. We let pause the tasks generated so that other threads get sheduled to the newly opened tasks. -3.0 -omp task final -omp single - -#include -#include -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - - -int omp_task_final(FILE * logFile){ - - int tids[NUM_TASKS]; - int i; - - int error; -#pragma omp parallel -{ -#pragma omp single - { - for (i = 0; i < NUM_TASKS; i++) { - - /* First we have to store the value of the loop index in a new variable - * which will be private for each task because otherwise it will be overwritten - * if the execution of the task takes longer than the time which is needed to - * enter the next step of the loop! - */ - int myi; - myi = i; - - #pragma omp task final(i>=10) - { - my_sleep (SLEEPTIME); - - tids[myi] = omp_get_thread_num(); - } /* end of omp task */ - - } /* end of for */ - } /* end of single */ -} /*end of parallel */ - -/* Now we ckeck if more than one thread executed the tasks. */ - for (i = 10; i < NUM_TASKS; i++) { - if (tids[10] != tids[i]) - error++; - } - return (error==0); -} /* end of check_parallel_for_private */ - - Index: openmp/trunk/testsuite/c/omp_task_firstprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_task_firstprivate.c +++ openmp/trunk/testsuite/c/omp_task_firstprivate.c @@ -1,51 +0,0 @@ - -Test which checks the firstprivate clause of the task directive. We create a set of tasks in a single region. We defines a variable named sum unequal zero which gets declared firstprivate for each task. Now each task calcualtes a sum using this private variable. Before each calcualation step we introduce a flush command so that maybe the private variabel gets bad. At the end we check if the calculated sum was right. -3.0 -omp task firstprivate -omp single,omp flush,omp critical - -#include -#include -#include "omp_testsuite.h" - -int omp_task_firstprivate (FILE * logFile) -{ - int i; - - int sum = 1234; - int known_sum; - int result = 0; /* counts the wrong sums from tasks */ - - - known_sum = 1234 + (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - -#pragma omp parallel - { -#pragma omp single - { - for (i = 0; i < NUM_TASKS; i++) - { - -#pragma omp task firstprivate(sum) - { - int j; - for (j = 0; j <= LOOPCOUNT; j++) { -#pragma omp flush - sum += j; - } - - /* check if calculated sum was right */ - if (sum != known_sum) { -#pragma omp critical - { result++; } - } - } /* end of omp task */ - - } /* end of for */ - } /* end of single */ - } /* end of parallel*/ - - return (result == 0); -} - - Index: openmp/trunk/testsuite/c/omp_task_if.c =================================================================== --- openmp/trunk/testsuite/c/omp_task_if.c +++ openmp/trunk/testsuite/c/omp_task_if.c @@ -1,43 +0,0 @@ - -Test which checks the if clause of the omp task directive. The idear of the tests is to generate a tasks in a single region and pause it immediately. The parent thread now shall set a counter variable which the paused task shall evaluate when woke up. -3.0 -omp task if -omp single,omp flush - -#include -#include -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - - -int omp_task_if(FILE * logFile){ - - int condition_false; - int count; - int result; - - count=0; - condition_false = (logFile == NULL); -#pragma omp parallel -{ -#pragma omp single - { - -#pragma omp task if (condition_false) shared(count, result) - { - my_sleep (SLEEPTIME_LONG); -//#pragma omp flush (count) - result = (0 == count); - } /* end of omp task */ - - - count = 1; -//#pragma omp flush (count) - - } /* end of single */ -} /*end of parallel */ - - return result; -} - - Index: openmp/trunk/testsuite/c/omp_task_imp_firstprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_task_imp_firstprivate.c +++ openmp/trunk/testsuite/c/omp_task_imp_firstprivate.c @@ -1,51 +0,0 @@ - - Test to see if implied private works properly -3.0 -omp task -omp single - -#include -#include -#include "omp_testsuite.h" - - - - -/* Utility function do spend some time in a loop */ -int omp_task_imp_firstprivate (FILE * logFile) -{ - int i=5; - int k = 0; - int result = 0; - int task_result = 1; - #pragma omp parallel firstprivate(i) - { - #pragma omp single - { - - - for (k = 0; k < NUM_TASKS; k++) - { - #pragma omp task shared(result , task_result, i) - { - int j; - //check if i is private - if(i != 5) - task_result = 0; - - for(j = 0; j < NUM_TASKS; j++) - i++; - //this should be firstprivate implicitly - } - } - - #pragma omp taskwait - result = (task_result && i==5); - } - - } - - return result; -} - - Index: openmp/trunk/testsuite/c/omp_task_private.c =================================================================== --- openmp/trunk/testsuite/c/omp_task_private.c +++ openmp/trunk/testsuite/c/omp_task_private.c @@ -1,53 +0,0 @@ - -Test which checks the private clause of the task directive. We create a set of tasks in a single region. We defines a variable named sum which gets declared private for each task. Now each task calcualtes a sum using this private variable. Before each calcualation step we introduce a flush command so that maybe the private variabel gets bad. At the end we check if the calculated sum was right. -3.0 -omp task private -omp single,omp flush,omp critical - -#include -#include -#include "omp_testsuite.h" - -/* Utility function do spend some time in a loop */ -int omp_task_private (FILE * logFile) -{ - int i; - - int known_sum; - int sum = 0; - int result = 0; /* counts the wrong sums from tasks */ - - - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - -#pragma omp parallel - { -#pragma omp single - { - for (i = 0; i < NUM_TASKS; i++) - { - -#pragma omp task private(sum) shared(result, known_sum) - { - int j; - //if sum is private, initialize to 0 - sum = 0; - for (j = 0; j <= LOOPCOUNT; j++) { -#pragma omp flush - sum += j; - } - /* check if calculated sum was right */ - if (sum != known_sum) { -#pragma omp critical - result++; - } - } /* end of omp task */ - - } /* end of for */ - } /* end of single */ - } /* end of parallel*/ - - return (result == 0); -} - - Index: openmp/trunk/testsuite/c/omp_task_shared.c =================================================================== --- openmp/trunk/testsuite/c/omp_task_shared.c +++ openmp/trunk/testsuite/c/omp_task_shared.c @@ -1,47 +0,0 @@ - - Test to see if implied shared works correctly -3.0 -omp task -omp single, omp task firstprivate - -#include -#include -#include "omp_testsuite.h" - - - - -/* Utility function do spend some time in a loop */ -int omp_task_imp_shared (FILE * logFile) -{ - - int i; - - i=0; - int k = 0; - int result = 0; - - #pragma omp parallel - { - #pragma omp single - for (k = 0; k < NUM_TASKS; k++) - { - - #pragma omp task firstprivate(i) shared(i) - { - #pragma omp atomic - i++; - //this should be shared implicitly - - } - - } - - } - -result = i; -return ((result == NUM_TASKS)); - -} - - Index: openmp/trunk/testsuite/c/omp_task_untied.c =================================================================== --- openmp/trunk/testsuite/c/omp_task_untied.c +++ openmp/trunk/testsuite/c/omp_task_untied.c @@ -1,69 +0,0 @@ - -Test for untied clause. First generate a set of tasks and pause it immediately. Then we resume half of them and check whether they are scheduled by different threads -3.0 -omp task untied -omp taskwait - -#include -#include -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_task_untied(FILE * logFile){ - - - int i; - int count; - int start_tid[NUM_TASKS]; - int current_tid[NUM_TASKS]; - - count = 0; - - /*initialization*/ - for (i=0; i< NUM_TASKS; i++){ - start_tid[i]=0; - current_tid[i]=0; - } - - #pragma omp parallel firstprivate(i) - { - #pragma omp single - { - for (i = 0; i < NUM_TASKS; i++) { - - int myi = i; - #pragma omp task untied - { - my_sleep(SLEEPTIME); - start_tid[myi] = omp_get_thread_num(); - current_tid[myi] = omp_get_thread_num(); - - #pragma omp taskwait - - if((start_tid[myi] %2) !=0){ - my_sleep(SLEEPTIME); - current_tid[myi] = omp_get_thread_num(); - - } /* end of if */ - else { - current_tid[myi] = omp_get_thread_num(); - } - - - } /*end of omp task */ - - } /* end of for */ - } /* end of single */ - } /* end of parallel */ - - for (i=0;i - - Index: openmp/trunk/testsuite/c/omp_taskwait.c =================================================================== --- openmp/trunk/testsuite/c/omp_taskwait.c +++ openmp/trunk/testsuite/c/omp_taskwait.c @@ -1,75 +0,0 @@ - -Test which checks the omp taskwait directive. First we generate a set of tasks, which set the elements of an array to a specific value. Then we do a taskwait and check if all tasks finished meaning all array elements contain the right value. Then we generate a second set setting the array elements to another value. After the parallel region we check if all tasks of the second set finished and were executed after the tasks of the first set. -3.0 -omp taskwait -omp single,omp task - -#include -#include -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - - -int omp_taskwait(FILE * logFile){ - int result1 = 0; /* Stores number of not finished tasks after the taskwait */ - int result2 = 0; /* Stores number of wrong array elements at the end */ - - int array[NUM_TASKS]; - int i; - - /* fill array */ - for (i = 0; i < NUM_TASKS; i++) - array[i] = 0; - -#pragma omp parallel - { -#pragma omp single - { - for (i = 0; i < NUM_TASKS; i++) { - /* First we have to store the value of the loop index in a new variable - * which will be private for each task because otherwise it will be overwritten - * if the execution of the task takes longer than the time which is needed to - * enter the next step of the loop! - */ - int myi; - myi = i; -#pragma omp task - { - my_sleep (SLEEPTIME); - array[myi] = 1; - } /* end of omp task */ - } /* end of for */ - - -#pragma omp taskwait - - - /* check if all tasks were finished */ - for (i = 0; i < NUM_TASKS; i++) - if (array[i] != 1) - result1++; - - /* generate some more tasks which now shall overwrite - * the values in the tids array */ - for (i = 0; i < NUM_TASKS; i++) { - int myi; - myi = i; -#pragma omp task - { - array[myi] = 2; - } /* end of omp task */ - } /* end of for */ - - } /* end of single */ - } /*end of parallel */ - - /* final check, if all array elements contain the right values: */ - for (i = 0; i < NUM_TASKS; i++) { - if (array[i] != 2) - result2++; - } - - return ((result1 == 0) && (result2 == 0)); -} - - Index: openmp/trunk/testsuite/c/omp_taskyield.c =================================================================== --- openmp/trunk/testsuite/c/omp_taskyield.c +++ openmp/trunk/testsuite/c/omp_taskyield.c @@ -1,59 +0,0 @@ - -Test taskyield directive. First generate a set of tasks and pause it immediately. Then we resume half of them and check whether they are scheduled by different threads -3.0 -omp taskyield -omp taskwait - -#include -#include -#include "omp_testsuite.h" -#include "omp_my_sleep.h" - -int omp_taskyield(FILE * logFile){ - - - int i; - int count = 0; - int start_tid[NUM_TASKS]; - int current_tid[NUM_TASKS]; - - for (i=0; i< NUM_TASKS; i++){ - start_tid[i]=0; - current_tid[i]=0; - } - - #pragma omp parallel - { - #pragma omp single - { - for (i = 0; i < NUM_TASKS; i++) { - - int myi = i; - #pragma omp task untied - { - my_sleep(SLEEPTIME); - start_tid[myi] = omp_get_thread_num(); - - #pragma omp taskyield - - if((start_tid[myi] %2) ==0){ - my_sleep(SLEEPTIME); - current_tid[myi] = omp_get_thread_num(); - } /*end of if*/ - } /* end of omp task */ - - } /* end of for */ - } /* end of single */ - } /* end of parallel */ - - for (i=0;i - - Index: openmp/trunk/testsuite/c/omp_test_lock.c =================================================================== --- openmp/trunk/testsuite/c/omp_test_lock.c +++ openmp/trunk/testsuite/c/omp_test_lock.c @@ -1,47 +0,0 @@ - -Test which checks the omp_testlock function. The test counts the threads entering and exiting a single region which is build with a test_lock in an endless loop. -2.0 -omp_test_lock -omp flush - -#include -#include "omp_testsuite.h" - -omp_lock_t lck; - -int omp_test_lock(FILE * logFile) -{ - int nr_threads_in_single = 0; - int result = 0; - int nr_iterations = 0; - int i; - - omp_init_lock (&lck); - -#pragma omp parallel shared(lck) - { - -#pragma omp for - for (i = 0; i < LOOPCOUNT; i++) - { - /*omp_set_lock(&lck);*/ - - while (!omp_test_lock (&lck)) - {}; - -#pragma omp flush - nr_threads_in_single++; -#pragma omp flush - nr_iterations++; - nr_threads_in_single--; - result = result + nr_threads_in_single; - omp_unset_lock (&lck); - } - } - omp_destroy_lock(&lck); - - return ((result == 0) && (nr_iterations == LOOPCOUNT)); - -} - - Index: openmp/trunk/testsuite/c/omp_test_nest_lock.c =================================================================== --- openmp/trunk/testsuite/c/omp_test_nest_lock.c +++ openmp/trunk/testsuite/c/omp_test_nest_lock.c @@ -1,48 +0,0 @@ - -Test which checks the omp_test_nest_lock function. -2.0 -omp_test_nest_lock -omp flush - -#include -#include "omp_testsuite.h" - - -static omp_nest_lock_t lck; - -int omp_test_nest_lock(FILE * logFile) -{ - - int nr_threads_in_single = 0; - int result = 0; - int nr_iterations = 0; - int i; - - omp_init_nest_lock (&lck); - -#pragma omp parallel shared(lck) - { - -#pragma omp for - for (i = 0; i < LOOPCOUNT; i++) - { - /*omp_set_lock(&lck);*/ - - while(!omp_test_nest_lock (&lck)) - {}; - -#pragma omp flush - nr_threads_in_single++; -#pragma omp flush - nr_iterations++; - nr_threads_in_single--; - result = result + nr_threads_in_single; - omp_unset_nest_lock (&lck); - } - } - omp_destroy_nest_lock (&lck); - - return ((result == 0) && (nr_iterations == LOOPCOUNT)); -} - - Index: openmp/trunk/testsuite/c/omp_threadprivate.c =================================================================== --- openmp/trunk/testsuite/c/omp_threadprivate.c +++ openmp/trunk/testsuite/c/omp_threadprivate.c @@ -1,97 +0,0 @@ - -Test which checks the omp threadprivate directive by filling an array with random numbers in an parallelised region. Each thread generates one number of the array and saves this in a temporary threadprivate variable. In a second parallelised region the test controls, that the temporary variable contains still the former value by comparing it with the one in the array. -2.0 -omp threadprivate -omp critical,omp_set_dynamic,omp_get_num_threads - -/* - * Threadprivate is tested in 2 ways: - * 1. The global variable declared as threadprivate should have - * local copy for each thread. Otherwise race condition and - * wrong result. - * 2. If the value of local copy is retained for the two adjacent - * parallel regions - */ -#include "omp_testsuite.h" -#include -#include - -static int sum0=0; -static int myvalue = 0; - -#pragma omp threadprivate(sum0) -#pragma omp threadprivate(myvalue) - - -int omp_threadprivate(FILE * logFile) -{ - int sum = 0; - int known_sum; - int i; - int iter; - int *data; - int size; - int failed = 0; - int my_random; - omp_set_dynamic(0); - - #pragma omp parallel private(i) - { - sum0 = 0; - #pragma omp for - for (i = 1; i <= LOOPCOUNT; i++) - { - sum0 = sum0 + i; - } /*end of for*/ - #pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } /* end of parallel */ - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - if (known_sum != sum ) { - fprintf (logFile, " known_sum = %d, sum = %d\n", known_sum, sum); - } - - /* the next parallel region is just used to get the number of threads*/ - omp_set_dynamic(0); - #pragma omp parallel - { - #pragma omp master - { - size=omp_get_num_threads(); - data=(int*) malloc(size*sizeof(int)); - } - }/* end parallel*/ - - - srand(45); - for (iter = 0; iter < 100; iter++){ - my_random = rand(); /* random number generator is called inside serial region*/ - - /* the first parallel region is used to initialiye myvalue and the array with my_random+rank*/ - #pragma omp parallel - { - int rank; - rank = omp_get_thread_num (); - myvalue = data[rank] = my_random + rank; - } - - /* the second parallel region verifies that the value of "myvalue" is retained */ - #pragma omp parallel reduction(+:failed) - { - int rank; - rank = omp_get_thread_num (); - failed = failed + (myvalue != data[rank]); - if(myvalue != data[rank]){ - fprintf (logFile, " myvalue = %d, data[rank]= %d\n", myvalue, data[rank]); - } - } - } - free (data); - - return (known_sum == sum) && !failed; - -} /* end of check_threadprivate*/ - - Index: openmp/trunk/testsuite/c/omp_threadprivate_for.c =================================================================== --- openmp/trunk/testsuite/c/omp_threadprivate_for.c +++ openmp/trunk/testsuite/c/omp_threadprivate_for.c @@ -1,44 +0,0 @@ - -Test which checks if a variable declared as threadprivate can be used as a loopindex. -2.0 -omp threadprivate -omp critical - -#include "omp_testsuite.h" -#include -#include - -static int i; -#pragma omp threadprivate(i) - -int omp_threadprivate_for(FILE * logFile) -{ - int known_sum; - int sum; - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2; - sum = 0; - -#pragma omp parallel - { - int sum0 = 0; -#pragma omp for - for (i = 1; i <= LOOPCOUNT; i++) - { - sum0 = sum0 + i; - } /*end of for*/ -#pragma omp critical - { - sum = sum + sum0; - } /*end of critical */ - } /* end of parallel */ - - if (known_sum != sum ) { - fprintf (logFile, " known_sum = %d, sum = %d\n", known_sum, sum); - } - - return (known_sum == sum); - -} /* end of check_threadprivate*/ - - - Index: openmp/trunk/testsuite/common_utility.f =================================================================== --- openmp/trunk/testsuite/common_utility.f +++ openmp/trunk/testsuite/common_utility.f @@ -1,57 +0,0 @@ - subroutine print_result(s,crossfailed,M,name) - implicit none - character (len=*)::name - real cert - integer M,crossfailed - integer s - character (len=11) :: c - character (len=18) :: c2 - cert=100.0*crossfailed/M -! print *, "cert", cert, "cross ", crossfailed -! test1=hundred*crossfailed - c="% certainty" - c2=" ... verified with " - if(s.eq.1) then - write (*,"(A, A, F7.2, A)") name, c2, cert, c - else - write (*,"(A,A)") name," ... FAILED" - endif - end - - subroutine do_test(test_func,cross_test_func,name,N,failed, - x num_tests,crosschecked) - implicit none - integer succeed - integer crossfail - integer failed - integer, external::test_func - integer, external::cross_test_func - character (len=*)::name - integer fail - integer N,i - integer num_tests,crosschecked - num_tests=num_tests+1 - succeed=1 - crossfail=0 - fail=0 - do i=1,N - if(test_func().eq.0) then - succeed=0 - fail=fail+1 - exit - end if - if(cross_test_func().eq.0) then -! print *, crossfail - crossfail=crossfail+1.0 - end if - enddo - - if (fail .ne. 0) then - failed=failed+1 - else - if(crossfail .ne. 0) then - crosschecked=crosschecked+1 - end if - endif - call print_result(succeed,crossfail,N,name) - end Index: openmp/trunk/testsuite/fortran/OMP1_TEST =================================================================== --- openmp/trunk/testsuite/fortran/OMP1_TEST +++ openmp/trunk/testsuite/fortran/OMP1_TEST @@ -1,36 +0,0 @@ -has_openmp -omp_nested -omp_get_num_threads -omp_in_parallel -do_ordered -do_reduction -do_private -do_firstprivate -do_lastprivate -section_reduction -section_private -section_firstprivate -section_lastprivate -single -single_private -single_nowait -par_do_ordered -par_do_reduction -par_do_private -par_do_firstprivate -par_do_lastprivate -par_section_reduction -par_section_private -par_section_firstprivate -par_section_lastprivate -omp_master_thread -omp_critical -omp_atomic -omp_barrier -omp_flush -omp_threadprivate -omp_copyin -omp_lock -omp_testlock -omp_nest_lock -omp_nest_testlock Index: openmp/trunk/testsuite/fortran/OMP2_TEST =================================================================== --- openmp/trunk/testsuite/fortran/OMP2_TEST +++ openmp/trunk/testsuite/fortran/OMP2_TEST @@ -1,5 +0,0 @@ -omp_num_threads -omp_workshare -omp_time -omp_ticks_time -single_copyprivate Index: openmp/trunk/testsuite/fortran/common_utility.f =================================================================== --- openmp/trunk/testsuite/fortran/common_utility.f +++ openmp/trunk/testsuite/fortran/common_utility.f @@ -1,57 +0,0 @@ - subroutine print_result(s,crossfailed,M,name) - implicit none - character (len=*)::name - real cert - integer M,crossfailed - integer s - character (len=11) :: c - character (len=18) :: c2 - cert=100.0*crossfailed/M -! print *, "cert", cert, "cross ", crossfailed -! test1=hundred*crossfailed - c="% certainty" - c2=" ... verified with " - if(s.eq.1) then - write (*,"(A, A, F7.2, A)") name, c2, cert, c - else - write (*,"(A,A)") name," ... FAILED" - endif - end - - subroutine do_test(test_func,cross_test_func,name,N,failed, - x num_tests,crosschecked) - implicit none - integer succeed - integer crossfail - integer failed - integer, external::test_func - integer, external::cross_test_func - character (len=*)::name - integer fail - integer N,i - integer num_tests,crosschecked - num_tests=num_tests+1 - succeed=1 - crossfail=0 - fail=0 - do i=1,N - if(test_func().eq.0) then - succeed=0 - fail=fail+1 - exit - end if - if(cross_test_func().eq.0) then -! print *, crossfail - crossfail=crossfail+1.0 - end if - enddo - - if (fail .ne. 0) then - failed=failed+1 - else - if(crossfail .ne. 0) then - crosschecked=crosschecked+1 - end if - endif - call print_result(succeed,crossfail,N,name) - end Index: openmp/trunk/testsuite/fortran/do_collapse.f =================================================================== --- openmp/trunk/testsuite/fortran/do_collapse.f +++ openmp/trunk/testsuite/fortran/do_collapse.f @@ -1,67 +0,0 @@ - -Test with omp for collapse clause. Bind with two loops. Without the collapse clause, the first loop will not be ordered -3.0 -omp do collapse -omp critical,omp do schedule - - LOGICAL FUNCTION check_is_larger(i) - implicit none - INTEGER :: i - INTEGER, save :: last_i - LOGICAL :: is_larger - - if (i .eq. 1) last_i = 0 - - is_larger = (i .ge. last_i) .and. ((i-last_i) .le. 1) - last_i = i - - check_is_larger = is_larger - - END FUNCTION check_is_larger - - INTEGER FUNCTION do_collapse() - IMPLICIT NONE - INTEGER i, j - - LOGICAL check_is_larger - LOGICAL my_is_larger - LOGICAL is_larger - COMMON /orphvars/ is_larger - - - INCLUDE "omp_testsuite.f" - - is_larger = .true. - -!$omp parallel private(my_is_larger) - - my_is_larger = .true. -!$omp do private(i,j) schedule(static,1) collapse(2) -!$omp+ ordered - DO i=1,100 - - my_is_larger = check_is_larger(i) .and. my_is_larger - - DO j=1,00 - -!$omp ordered - my_is_larger = check_is_larger(i) .and. my_is_larger -!$omp end ordered - - END DO - END DO -!$omp end do -!$omp critical - is_larger = is_larger .and. my_is_larger -!$omp end critical - -!$omp end parallel - - if (is_larger) then - = 1 - else - = 0 - end if - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/do_firstprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/do_firstprivate.f +++ openmp/trunk/testsuite/fortran/do_firstprivate.f @@ -1,56 +0,0 @@ - -Test which checks the omp do firstprivate clause by counting up a variable in a parallelized loop. Each thread has a firstprivate variable (1) and an variable (2) declared by do firstprivate. First it stores the result of its last iteration in variable (2). Then it stores the value of the variable (2) in its firstprivate variable (1). At the end all firstprivate variables (1) are added to a total sum in a critical section and compared with the correct result. -2.0 -omp do firstprivate -omp parallel private, omp critical - - INTEGER FUNCTION do_firstprivate() - IMPLICIT NONE - INTEGER sum, known_sum - INTEGER numthreads - INTEGER omp_get_num_threads - - INTEGER sum0, sum1, i - COMMON /orphvars/ sum0, sum1, i - - - INCLUDE "omp_testsuite.f" - - sum = 0 - sum0 = 12345 - sum1 = 0 - - -!$omp parallel firstprivate(sum1) -!$omp single - numthreads = omp_get_num_threads() -!$omp end single - - - -!$omp do firstprivate(sum0)private (sum0) - DO i=1,LOOPCOUNT - sum0 = sum0 + i - sum1 = sum0 - END DO -!$omp end do - - - -!$omp critical - WRITE (1,*) sum0 - sum = sum + sum1 -!$omp end critical -!$omp end parallel - - - known_sum=12345*numthreads+ (LOOPCOUNT*(LOOPCOUNT+1))/2 - IF ( known_sum .EQ. sum ) THEN - = 1 - ELSE - WRITE (1,*) "Found sum was", sum, "instead of", known_sum - = 0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/do_lastprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/do_lastprivate.f +++ openmp/trunk/testsuite/fortran/do_lastprivate.f @@ -1,39 +0,0 @@ - -Test which checks the omp do lastprivate clause by counting up a variable in a parallelized loop. Each thread saves the next summand in a lastprivate variable i0. At the end i0 is compared to the value of the expected last summand. -2.0 -omp do private -omp parallel firstprivate, omp critical - - INTEGER FUNCTION do_lastprivate() - IMPLICIT NONE - INTEGER sum,known_sum - - INTEGER sum0,i0,i - COMMON /orphvars/ sum0,i0,i - - INCLUDE "omp_testsuite.f" - sum = 0 - sum0 = 0 - i0 = -1 -!$omp parallel firstprivate(sum0) - -!$omp do schedule(static,7) lastprivate(i0) - DO i=1, LOOPCOUNT - sum0 = sum0 + i - i0 = i - END DO -!$omp end do - -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end parallel - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2 - IF ( known_sum .EQ. sum .AND. i0 .EQ. LOOPCOUNT ) THEN - = 1 - ELSE - = 0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/do_ordered.f =================================================================== --- openmp/trunk/testsuite/fortran/do_ordered.f +++ openmp/trunk/testsuite/fortran/do_ordered.f @@ -1,73 +0,0 @@ - -do ordered -2.0 -parallel private, critical - - INTEGER FUNCTION i_islarger(i) - IMPLICIT NONE - INTEGER i, islarger - INTEGER last_i - COMMON /mycom/ last_i - IF ( i .GT. last_i) THEN - islarger = 1 - ELSE - islarger = 0 - END If - last_i = i - i_islarger = islarger - END - - INTEGER FUNCTION do_ordered() - IMPLICIT NONE - INTEGER known_sum, is_larger - INTEGER last_i - INTEGER i_islarger - COMMON /mycom/ last_i - - i - - - INTEGER sum, i, my_islarger - COMMON /orphvars/ my_islarger, sum - - - sum = 0 - is_larger = 1 - last_i = 0 -!$omp parallel private(my_islarger) - my_islarger = 1 -!$omp do schedule(static,1) ordered - DO i=1, 99 - - -!$omp ordered - - IF (i_islarger(i) .EQ. 1 .AND. my_islarger .EQ. 1) THEN - my_islarger = 1 - ELSE - my_islarger = 0 - END IF - sum = sum + i - -!$omp end ordered - - - END DO -!$omp end do -!$omp critical - IF (is_larger .EQ. 1 .AND. my_islarger .EQ. 1 ) THEN - is_larger = 1 - ELSE - is_larger = 0 - END IF -!$omp end critical -!$omp end parallel - known_sum = (99*100)/2 - IF ( known_sum .EQ. sum .AND. is_larger .EQ. 1) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/do_private.f =================================================================== --- openmp/trunk/testsuite/fortran/do_private.f +++ openmp/trunk/testsuite/fortran/do_private.f @@ -1,67 +0,0 @@ - -Test which checks the omp do private clause by counting up a variable in a parallelized loop. Each thread has a private variable (1) and an variable (2) declared by for private. First it stores the result of its last iteration in variable (2). Then this thread waits some time before it stores the value of the variable (2) in its private variable (1). At the beginning of the next iteration the value of (1) is assigned to (2). At the end all private variables (1) are added to a total sum in a critical section and compared with the correct result. -2.0 -omp do private -omp parallel private, omp flush, omp critical - - SUBROUTINE do_some_work() - IMPLICIT NONE - INTEGER i - INTRINSIC sqrt - DOUBLE PRECISION sum - - INCLUDE "omp_testsuite.f" - sum=0.0 - DO i=0, LOOPCOUNT-1 - sum = sum + sqrt(REAL(i)) - ENDDO - - END - - INTEGER FUNCTION do_private() - IMPLICIT NONE - INTEGER sum, known_sum - - INTEGER sum0, sum1, i - COMMON /orphvars/ sum0, sum1, i - - - INCLUDE "omp_testsuite.f" - - sum = 0 - sum0 = 0 - sum1 = 0 - -!$omp parallel private(sum1) - sum0 = 0 - sum1 = 0 - - -!$omp do private(sum0) schedule(static,1) - DO i=1, LOOPCOUNT - sum0 = sum1 -!$omp flush - sum0 = sum0 + i - CALL do_some_work() -!$omp flush -! print *, sum0 - sum1 = sum0 - END DO -!$omp end do - - -!$omp critical - sum = sum + sum1 -!$omp end critical -!$omp end parallel - - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2 -! print *, "sum:", sum, "known_sum", known_sum - IF ( known_sum .EQ. sum) THEN - = 1 - ELSE - = 0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/do_reduction.f =================================================================== --- openmp/trunk/testsuite/fortran/do_reduction.f +++ openmp/trunk/testsuite/fortran/do_reduction.f @@ -1,514 +0,0 @@ - -Test which checks the omp do reduction directive wich all its options. -2.0 -omp do reduction - - INTEGER FUNCTION do_reduction() - IMPLICIT NONE - INTEGER sum2, known_sum - INTEGER known_product - DOUBLE PRECISION rounding_error, dpt - INTEGER double_DIGITS - DOUBLE PRECISION dknown_sum - INTEGER result - INCLUDE "omp_testsuite.f" - PARAMETER (known_product=3628800) - PARAMETER (rounding_error=1.E-6) - - INTEGER sum,diff,product,i - DOUBLE PRECISION dsum,ddiff,dt - LOGICAL logic_and, logic_or, logic_eqv,logic_neqv - LOGICAL logics(LOOPCOUNT) - INTEGER bit_and, bit_or - INTEGER exclusiv_bit_or - INTEGER min_value, max_value - INTEGER int_array(LOOPCOUNT) - DOUBLE PRECISION d_array(LOOPCOUNT) - DOUBLE PRECISION dmin, dmax - COMMON /orphvars/ sum,product,diff,i,dsum,ddiff,dt,logic_and, - & logic_or,logic_eqv,logic_neqv,logics,bit_and,bit_or,int_array, - & exclusiv_bit_or,min_value,dmin,dmax,d_array,max_value - INTEGER MAX_FACTOR - PARAMETER (double_DIGITS=20,MAX_FACTOR=10) - - - dt = 1./3. - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - product = 1 - sum2 = 0 - sum = 0 - dsum = 0. - result =0 - logic_and = .true. - logic_or = .false. - bit_and = 1 - bit_or = 0 - exclusiv_bit_or = 0 -!$omp parallel - -!$omp do schedule(dynamic, 1) reduction(+:sum) - DO i = 1, LOOPCOUNT - sum = sum + i - END DO -!$omp end do - -!$omp end parallel - - IF (known_sum .NE. sum) THEN - result = result + 1 - WRITE(1,*) "Error in sum with integers: Result was ", - & sum,"instead of ", known_sum - END IF - - - diff = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 -!$omp parallel - -!$omp do schedule(dynamic, 1) reduction (-: diff) - DO i = 1, LOOPCOUNT - diff = diff - i - END DO -!$omp end do - -!$omp end parallel - - IF ( diff .NE. 0 ) THEN - result = result + 1 - WRITE(1,*) "Error in difference with integers: Result was ", - & sum,"instead of 0." - END IF - -!... Test for doubles - dsum =0. - dpt = 1 - - DO i=1, DOUBLE_DIGITS - dpt= dpt * dt - END DO - dknown_sum = (1-dpt)/(1-dt) - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(+:dsum) - DO i=0,DOUBLE_DIGITS-1 - dsum = dsum + dt**i - END DO -!$omp end do - -!$omp end parallel - - - IF(dsum .NE. dknown_sum .AND. - & ABS(dsum - dknown_sum) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in sum with doubles: Result was ", - & dsum,"instead of ",dknown_sum,"(Difference: ", - & dsum - dknown_sum,")" - END IF - dpt = 1 - - - - DO i=1, DOUBLE_DIGITS - dpt = dpt*dt - END DO - ddiff = ( 1-dpt)/(1-dt) -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(-:ddiff) - DO i=0, DOUBLE_DIGITS-1 - ddiff = ddiff - dt**i - END DO -!$omp end do - -!$omp end parallel - - IF ( ABS(ddiff) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in Difference with doubles: Result was ", - & ddiff,"instead of 0.0" - END IF - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(*:product) - DO i=1,MAX_FACTOR - product = product * i - END DO -!$omp end do - -!$omp end parallel - - IF (known_product .NE. product) THEN - result = result + 1 - write(1,*) "Error in Product with integers: Result was ", - & product," instead of",known_product - END IF - - DO i=1,LOOPCOUNT - logics(i) = .TRUE. - END DO - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.AND.:logic_and) - DO i=1,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (.NOT. logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND part 1" - END IF - - - logic_and = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.AND.:logic_and) - DO i=1,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND pass 2" - END IF - - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.OR.:logic_or) - DO i = 1, LOOPCOUNT - logic_or = logic_or .OR. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (logic_or) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 1" - END IF - - logic_or = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.OR.:logic_or) - DO i=1,LOOPCOUNT - logic_or = logic_or .OR. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF ( .NOT. logic_or ) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 2" - END IF - -!... Test logic EQV, unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .TRUE. - END DO - - logic_eqv = .TRUE. - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.EQV.:logic_eqv) - DO i = 1, LOOPCOUNT - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (.NOT. logic_eqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 1" - END IF - - logic_eqv = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.EQV.:logic_eqv) - DO i=1,LOOPCOUNT - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF ( logic_eqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 2" - END IF - -!... Test logic NEQV, which is unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - - logic_neqv = .FALSE. - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.NEQV.:logic_neqv) - DO i = 1, LOOPCOUNT - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (logic_neqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 1" - END IF - - logic_neqv = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(.neqv.:logic_neqv) - DO i=1,LOOPCOUNT - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF ( .NOT. logic_neqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 1 - END DO -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(IAND:bit_and) - DO i=1, LOOPCOUNT -!... iand(I,J): Returns value resulting from boolean AND of -!... pair of bits in each of I and J. - bit_and = IAND(bit_and,int_array(i)) - END DO -!$omp end do - -!$omp end parallel - - IF ( bit_and .LT. 1 ) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 1" - END IF - - bit_and = 1 - int_array(LOOPCOUNT/2) = 0 - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(IAND:bit_and) - DO i=1, LOOPCOUNT - bit_and = IAND ( bit_and, int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF( bit_and .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(IOR:bit_or) - DO i=1, LOOPCOUNT -!... Ior(I,J): Returns value resulting from boolean OR of -!... pair of bits in each of I and J. - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 1" - END IF - - - bit_or = 0 - int_array(LOOPCOUNT/2) = 1 -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(IOR:bit_or) - DO i=1, LOOPCOUNT - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( bit_or .LE. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(IEOR:exclusiv_bit_or) - DO i = 1, LOOPCOUNT - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp end do - -!$omp end parallel - - IF ( exclusiv_bit_or .ge. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 1" - END IF - - exclusiv_bit_or = 0 - int_array(LOOPCOUNT/2) = 1 - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(IEOR:exclusiv_bit_or) - DO i = 1, LOOPCOUNT - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp end do - -!$omp end parallel - - IF ( exclusiv_bit_or .LE. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 2" - END IF - - DO i=1,LOOPCOUNT - int_array(i) = 10 - i - END DO - - min_value = 65535 - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(MIN:min_value) - DO i = 1, LOOPCOUNT - min_value = MIN(min_value,int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( min_value .GT. (10-LOOPCOUNT) )THEN - result = result + 1 - WRITE(1,*) "Error in integer MIN" - END IF - - - DO i=1,LOOPCOUNT - int_array(i) = i - END DO - - max_value = -32768 - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(MAX:max_value) - DO i = 1, LOOPCOUNT - max_value = MAX(max_value,int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( max_value .LT. LOOPCOUNT )THEN - result = result + 1 - WRITE(1,*) "Error in integer MAX" - END IF - -!... test double min, max - DO i=1,LOOPCOUNT - d_array(i) = 10 - i*dt - END DO - - dmin = 2**10 - dt = 0.5 - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(MIN:dmin) - DO i = 1, LOOPCOUNT - dmin= MIN(dmin,d_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( dmin .GT. (10-dt) )THEN - result = result + 1 - WRITE(1,*) "Error in double MIN" - END IF - - - DO i=1,LOOPCOUNT - d_array(i) = i * dt - END DO - - dmax= - (2**10) - -!$omp parallel - -!$omp do schedule(dynamic,1) reduction(MAX:dmax) - DO i = 1, LOOPCOUNT - dmax= MAX(dmax,d_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( dmax .LT. LOOPCOUNT*dt )THEN - result = result + 1 - WRITE(1,*) "Error in double MAX" - END IF - - IF ( result .EQ. 0 ) THEN - = 1 - ELSE - = 0 - END IF - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/do_schedule_dynamic.f =================================================================== --- openmp/trunk/testsuite/fortran/do_schedule_dynamic.f +++ openmp/trunk/testsuite/fortran/do_schedule_dynamic.f @@ -1,90 +0,0 @@ - -Test which checks the dynamic option of the omp do schedule directive. -2.0 -omp do schedule(dynamic) -omp flush,omp do nowait,omp critical,omp single - - - - INTEGER FUNCTION do_schedule_dynamic() - IMPLICIT NONE - CHARACTER*30 logfile - INTEGER omp_get_thread_num,omp_get_num_threads - INTEGER threads - INTEGER count, tmp_count - INTEGER,ALLOCATABLE:: tmp(:) - INTEGER ii - INTEGER result - - - INTEGER CFDMAX_SIZE - PARAMETER (CFDMAX_SIZE = 1000) - INTEGER i,tids(0:CFDMAX_SIZE-1),tid,chunk_size - COMMON /orphvars/ i,tids,tid,chunk_size - - - chunk_size = 7 - count = 0 - tmp_count = 0 - result = 0 - ii = 0 - -!$omp parallel private(tid) - tid = omp_get_thread_num() - -!$omp do schedule(dynamic,chunk_size) - DO i=0, CFDMAX_SIZE-1 - tids(i) = tid - END DO -!$omp end do - -!$omp end parallel - - DO i=0, CFDMAX_SIZE - 2 - IF ( tids(i) .ne. tids(i+1) ) THEN - count = count + 1 - END IF - END DO - - ALLOCATE( tmp(0:count) ) - tmp(0) = 1 - - DO i = 0, CFDMAX_SIZE - 2 - IF ( tmp_count .GT. count ) THEN - WRITE(*,*) "--------------------" - WRITE(*,*) "Testinternal Error: List too small!!!" - WRITE(*,*) "--------------------" - GOTO 10 - END If - IF ( tids(i) .NE. tids(i+1) ) then - tmp_count = tmp_count + 1 - tmp(tmp_count) = 1 - ELSE - tmp(tmp_count) = tmp(tmp_count) +1 - END IF - END DO - -!... is dynamic statement working? - - 10 DO i=0, count -1 - IF ( MOD(tmp(i),chunk_size) .ne. 0 ) THEN -! ... it is possible for 2 adjacent chunks assigned to a same thread - result = result + 1 - WRITE(1,*) "The intermediate dispatch has wrong chunksize." - END IF - END DO - - IF ( MOD(tmp(count), chunk_size) .NE. - & MOD (CFDMAX_SIZE, chunk_size) ) THEN - result = result + 1 - WRITE(1,*) "the last dispatch has wrong chunksize." - END IF - - IF ( result .eq. 0) THEN - = 1 - ELSE - = 0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/do_schedule_guided.f =================================================================== --- openmp/trunk/testsuite/fortran/do_schedule_guided.f +++ openmp/trunk/testsuite/fortran/do_schedule_guided.f @@ -1,174 +0,0 @@ - -Test which checks the guided option of the omp do schedule directive. -2.0 -omp do schedule(guided) -omp flush,omp do nowait,omp critical,omp single - - ! TODO: - ! C. Niethammer: - ! Find check to decide if the test was run as schedule(static) because - ! this also can pass the test if the work is divided into thread-counts - INTEGER FUNCTION do_schedule_guided() - IMPLICIT NONE - INTEGER omp_get_thread_num,omp_get_num_threads - CHARACTER*20 logfile - INTEGER threads - INTEGER tmp_count - INTEGER, allocatable :: tmp(:) - INTEGER ii, flag - INTEGER result - INTEGER expected - INTEGER openwork - DOUBLE PRECISION c - - - INTEGER i - INTEGER tid - INTEGER count - - INTEGER DELAY - INTEGER MAX_TIME - INTEGER CFSMAX_SIZE - -! ... choose small iteration space for small sync. overhead - PARAMETER (DELAY = 1) - PARAMETER (MAX_TIME = 5) - PARAMETER (CFSMAX_SIZE = 150) - - INTEGER notout - INTEGER maxiter - INTEGER tids(0:CFSMAX_SIZE-1) - - COMMON /orphvars/ notout,maxiter,tids - - - result = 0 - notout = 1 - maxiter = 0 - count = 0 - tmp_count = 0 - openwork = CFSMAX_SIZE - - -! Determine the number of available threads -!$omp parallel -!$omp single - threads = omp_get_num_threads() -!$omp end single -!$omp end parallel - IF ( threads .LT. 2) THEN - PRINT *,"This test only works with at least two threads" - WRITE(1,*) "This test only works with at least two threads" - = 0 - STOP - END IF - -! ... Now the real parallel work: -! ... Each thread will start immediately with the first chunk. - -!$omp parallel private(tid,count) shared(tids,maxiter) - tid = omp_get_thread_num() - -!$omp do schedule(guided) - DO i = 0 , CFSMAX_SIZE-1 - count = 0 -!$omp flush(maxiter) - IF ( i .GT. maxiter ) THEN -!$omp critical - maxiter = i -!$omp end critical - END IF - -!.. if it is not our turn we wait -! a) until another thread executed an iteration -! with a higher iteration count -! b) we are at the end of the loop (first thread finished -! and set notout=0 OR -! c) timeout arrived - -!$omp flush(maxiter,notout) - IF ( notout .GE. 1 .AND. count .LT. MAX_TIME - & .AND. maxiter .EQ. i ) THEN - DO WHILE ( notout .GE. 1 .AND. count .LT. MAX_TIME - & .AND. maxiter .EQ. i ) - CALL sleep(DELAY) - count = count + DELAY - END DO - END IF - tids(i) = tid - END DO -!$omp end do nowait - - - notout = 0 -!$omp flush(notout) - -!$omp end parallel - -!*******************************************************! -! evaluation of the values -!*******************************************************! - count = 0 - - DO i=0, CFSMAX_SIZE - 2 - IF ( tids(i) .NE. tids(i+1) ) THEN - count = count + 1 - END IF - END DO - - ALLOCATE( tmp(0:count) ) - tmp_count = 0 - tmp(0) = 1 -! ... calculate the chunksize for each dispatch - - DO i=0, CFSMAX_SIZE - 2 - IF ( tids(i) .EQ. tids(i+1) ) THEN - tmp(tmp_count) = tmp(tmp_count) + 1 - ELSE - tmp_count = tmp_count + 1 - tmp(tmp_count) = 1 - END IF - END DO - -! ... Check if chunk sizes are decreased until equals to -! ... the specified one, ignore the last dispatch -! ... for possible smaller remainder - -! Determine the constant - expected = openwork / threads - c = real(tmp(0)) / real(expected) - WRITE(1,*) "Found constant to be ", c - - DO i = 0, count - 2 - WRITE(1,*) "open:", openwork, "size:", tmp(i) - IF (expected .GT. 1) THEN - expected = c * openwork / threads - END IF - - IF (abs(tmp(i) - expected) .GE. 2 ) THEN - result = 1 - WRITE(1,*) "Chunksize differed from expected ", - & "value: ",tmp(i), "instead ", expected - END IF - - IF (i .GT. 0 .AND. (tmp(i-1) - tmp(i)) .LT. 0) THEN - WRITE(1,*) "Chunksize did not decrease: ", tmp(i), - & "instead",tmp(i-1) - END IF - - openwork = openwork - tmp(i) - END DO - - IF ( result .EQ. 0 ) THEN - = 1 - ELSE - = 0 - END IF - END - - - = 0 - END - - - Index: openmp/trunk/testsuite/fortran/do_schedule_static.f =================================================================== --- openmp/trunk/testsuite/fortran/do_schedule_static.f +++ openmp/trunk/testsuite/fortran/do_schedule_static.f @@ -1,70 +0,0 @@ - -Test which checks the static option of the omp do schedule directive. -2.0 -omp do schedule(static) -omp do nowait,omp flush,omp critical,omp single - - - INTEGER FUNCTION do_schedule_static() - IMPLICIT NONE - INTEGER omp_get_thread_num,omp_get_num_threads - CHARACTER*30 logfile - INTEGER threads - INTEGER count - INTEGER ii - INTEGER result - - INTEGER CFSMAX_SIZE - PARAMETER (CFSMAX_SIZE = 1000) - INTEGER i,tids(0:CFSMAX_SIZE-1), tid, chunk_size - COMMON /orphvars/ i,tid,tids,chunk_size - - - chunk_size = 7 - result = 0 - ii = 0 - -!$omp parallel -!$omp single - threads = omp_get_num_threads() -!$omp end single -!$omp end parallel - - IF ( threads .LT. 2) THEN - PRINT *,"This test only works with at least two threads" - WRITE(1,*) "This test only works with at least two threads" - = 0 - STOP - ELSE - WRITE(1,*) "Using an internal count of ",CFSMAX_SIZE - WRITE(1,*) "Using a specified chunksize of ",chunk_size - -!$omp parallel private(tid) shared(tids) - tid = omp_get_thread_num() - -!$omp do schedule(static,chunk_size) - DO i = 0 ,CFSMAX_SIZE -1 - tids(i) = tid - END DO -!$omp end do - -!$omp end parallel - - DO i = 0, CFSMAX_SIZE-1 -!... round-robin for static chunk - ii = mod( i/chunk_size,threads) - IF (tids(i) .NE. ii ) THEN - result = result + 1 - WRITE(1,*)"Iteration ",i,"should be assigned to ", - & ii,"instead of ",tids(i) - END IF - END DO - IF ( result .EQ. 0 )THEN - = 1 - ELSE - = 0 - END IF - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/has_openmp.f =================================================================== --- openmp/trunk/testsuite/fortran/has_openmp.f +++ openmp/trunk/testsuite/fortran/has_openmp.f @@ -1,25 +0,0 @@ - -2.0 -Testing if the conditional compilation is supported or not. -Yi Wen at 05032004: Do we want to write two versions of has_omp? both C23456789 -and #ifdef formats are supposed to work. At least Sun's compiler cannot deal with -the second format (#ifdef) - - - INTEGER FUNCTION has_openmp() - = 0 - - -!version 1. -!C23456789 -!$ = 1 - -! version 2. -!#ifdef _OPENMP - = 1 -!#endif - - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_atomic.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_atomic.f +++ openmp/trunk/testsuite/fortran/omp_atomic.f @@ -1,588 +0,0 @@ - -Test which checks the omp atomic directive by counting up a variable in a parallelized loop with an atomic directive. -2.0 -omp atomic - -!******************************************************************** -! Functions: omp_atomic -! change "character*20" into "character (LEN=20)::" -! get rid of the "tab" key by Zhenying Liu, on Oct. 16, 2005. -!******************************************************************** - INTEGER FUNCTION omp_atomic() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - INTEGER sum2, known_sum - INTEGER known_product, int_const - DOUBLE PRECISION rounding_error, dpt - INTEGER double_DIGITS - DOUBLE PRECISION dknown_sum - INTEGER result - PARAMETER (int_const=10,known_product=3628800) - PARAMETER (rounding_error=1.E-2) - - INTEGER sum,i,diff,product - DOUBLE PRECISION dsum,dt,ddiff - LOGICAL logic_and, logic_or, logic_eqv,logic_neqv - INTEGER bit_and, bit_or - INTEGER exclusiv_bit_or - INTEGER min_value, max_value - DOUBLE PRECISION dmin, dmax - LOGICAL logics(LOOPCOUNT) - INTEGER int_array(LOOPCOUNT) - DOUBLE PRECISION d_array(LOOPCOUNT) - COMMON /orphvars/ sum,product,diff,i,dsum,ddiff,dt,logic_and, - & logic_or,logic_eqv,logic_neqv,logics,bit_and,bit_or,int_array, - & exclusiv_bit_or,min_value,dmin,dmax,d_array,max_value - INTEGER MAX_FACTOR - PARAMETER (double_DIGITS=20,MAX_FACTOR=10) - - - dt = 1./3. - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - product = 1 - sum2 = 0 - sum = 0 - dsum = 0. - result =0 - logic_and = .true. - logic_or = .false. - bit_and = 1 - bit_or = 0 - exclusiv_bit_or = 0 -!$omp parallel - -!$omp do - DO i =1, LOOPCOUNT - -!$omp atomic - - sum = sum + i - END DO -!$omp end do - -!$omp end parallel - - IF (known_sum .NE. sum) THEN - result = result + 1 - WRITE(1,*) "Error in sum with integers: Result was ", - & sum,"instead of ", known_sum - END If - - diff = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - - -!$omp parallel - -!$omp do - DO i =1, LOOPCOUNT - -!$omp atomic - - diff = diff - i - END DO -!$omp end do - -!$omp end parallel - - IF ( diff .NE. 0 ) THEN - result = result + 1 - WRITE(1,*) "Error in difference with integers: Result was ", - & diff,"instead of 0." - END IF - -!... Test for doubles - dsum = 0. - dpt = 1 - - DO i=1, DOUBLE_DIGITS - dpt= dpt * dt - END DO - dknown_sum = (1-dpt)/(1-dt) -!$omp parallel - -!$omp do - DO i=0,DOUBLE_DIGITS-1 - -!$omp atomic - - dsum = dsum + dt**i - END DO -!$omp end do - -!$omp end parallel - - - IF (dsum .NE. dknown_sum .AND. - & ABS(dsum - dknown_sum) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in sum with doubles: Result was ", - & dsum,"instead of ",dknown_sum,"(Difference: ", - & dsum - dknown_sum,")" - END IF - dpt = 1 - - - DO i=1, DOUBLE_DIGITS - dpt = dpt*dt - END DO - - ddiff = ( 1-dpt)/(1-dt) -!$omp parallel - -!$omp do - DO i=0, DOUBLE_DIGITS-1 - -!$omp atomic - - ddiff = ddiff - dt**i - END DO -!$omp end do - -!$omp end parallel - - IF ( ABS(ddiff) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in Difference with doubles: Result was ", - & ddiff,"instead of 0.0" - END IF - -!$omp parallel - -!$omp do - DO i=1,MAX_FACTOR - -!$omp atomic - - product = product * i - END DO -!$omp end do - -!$omp end parallel - - IF (known_product .NE. product) THEN - result = result + 1 - WRITE(1,*) "Error in Product with integers: Result was ", - & product," instead of",known_product - END IF - - DO i=1,LOOPCOUNT - logics(i) = .TRUE. - END DO - -!$omp parallel - -!$omp do - DO i=1,LOOPCOUNT - -!$omp atomic - - logic_and = logic_and .AND. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (.NOT. logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND part 1" - END IF - - - logic_and = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel - -!$omp do - DO i=1,LOOPCOUNT - -!$omp atomic - - logic_and = logic_and .AND. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND pass 2" - END IF - - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - logic_or = logic_or .OR. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (logic_or) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 1" - END IF - - logic_or = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel - -!$omp do - DO i=1,LOOPCOUNT - -!$omp atomic - - logic_or = logic_or .OR. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF ( .NOT. logic_or ) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 2" - END IF - -!... Test logic EQV, unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .TRUE. - END DO - - logic_eqv = .TRUE. - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (.NOT. logic_eqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 1" - END IF - - logic_eqv = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel - -!$omp do - DO i=1,LOOPCOUNT - -!$omp atomic - - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF ( logic_eqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 2" - END IF - -!... Test logic NEQV, which is unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - - logic_neqv = .FALSE. - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - logic_neqv = logic_neqv .OR. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF (logic_neqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 1" - END IF - - logic_neqv = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel - -!$omp do - DO i=1,LOOPCOUNT - -!$omp atomic - - logic_neqv = logic_neqv .OR. logics(i) - END DO -!$omp end do - -!$omp end parallel - - IF ( .NOT. logic_neqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 1 - END DO -!$omp parallel - -!$omp do - DO i=1, LOOPCOUNT -!... iand(I,J): Returns value resulting from boolean AND of -!... pair of bits in each of I and J. - -!$omp atomic - - bit_and = IAND(bit_and,int_array(i)) - END DO -!$omp end do - -!$omp end parallel - - IF ( bit_and .LT. 1 ) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 1" - END If - - bit_and = 1 - int_array(LOOPCOUNT/2) = 0 - -!$omp parallel - -!$omp do - DO i=1, LOOPCOUNT - -!$omp atomic - - bit_and = IAND ( bit_and, int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF( bit_and .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - - -!$omp parallel - -!$omp do - DO i=1, LOOPCOUNT -!... Ior(I,J): Returns value resulting from boolean OR of -!... pair of bits in each of I and J. - -!$omp atomic - - bit_or = Ior(bit_or, int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 1" - END IF - - - bit_or = 0 - int_array(LOOPCOUNT/2) = 1 -!$omp parallel - -!$omp do - DO i=1, LOOPCOUNT - -!$omp atomic - - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( bit_or .le. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp end do - -!$omp end parallel - - IF ( exclusiv_bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 1" - END IF - - exclusiv_bit_or = 0 - int_array(LOOPCOUNT/2) = 1 - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp end do - -!$omp end parallel - - IF ( exclusiv_bit_or .LE. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 2" - END IF - - DO i=1,LOOPCOUNT - int_array(i) = 10 - i - END DO - - min_value = 65535 - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - min_value = min(min_value,int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( min_value .GT. (10-LOOPCOUNT) )THEN - result = result + 1 - WRITE(1,*) "Error in integer MIN" - END IF - - - DO i=1,LOOPCOUNT - int_array(i) = i - END DO - - max_value = -32768 - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - max_value = max(max_value,int_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( max_value .LT. LOOPCOUNT )THEN - result = result + 1 - WRITE(1,*) "Error in integer MAX" - END IF - -!... test double min, max - DO i=1,LOOPCOUNT - d_array(i) = 10 - i*dt - END DO - - dmin = 2**10 - dt = 0.5 - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - dmin= MIN(dmin,d_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( dmin .GT. (10-dt) )THEN - result = result + 1 - WRITE(1,*) "Error in double MIN" - END IF - - - DO i=1,LOOPCOUNT - d_array(i) = i * dt - END DO - - dmax= - (2**10) - -!$omp parallel - -!$omp do - DO i = 1, LOOPCOUNT - -!$omp atomic - - dmax= max(dmax,d_array(i) ) - END DO -!$omp end do - -!$omp end parallel - - IF ( dmax .LT. LOOPCOUNT*dt )THEN - result = result + 1 - WRITE(1,*) "Error in double MAX" - END IF - - IF ( result .EQ. 0 ) THEN - = 1 - ELSE - = 0 - END IF - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_barrier.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_barrier.f +++ openmp/trunk/testsuite/fortran/omp_barrier.f @@ -1,50 +0,0 @@ - -Test which checks the omp barrier directive. The test creates several threads and sends one of them sleeping before setting a flag. After the barrier the other ones do some little work depending on the flag. -2.0 -omp barrier - - - SUBROUTINE do_some_work3() - REAL i - INTRINSIC sqrt - DOUBLE PRECISION sum - INCLUDE "omp_testsuite.f" - sum = 0.0 - DO WHILE (i < LOOPCOUNT-1) - sum = sum + sqrt(i) - i = i + 1 - END DO - END - - INTEGER FUNCTION omp_barrier() - IMPLICIT NONE - INTEGER sleeptime - INTEGER omp_get_thread_num - INTEGER result1, result2, rank - result1 = 0 - result2 = 0 - sleeptime = 1 -!$omp parallel private(rank) - rank = omp_get_thread_num() -! PRINT *, "rank", rank - IF ( rank .EQ. 1 ) THEN - CALL sleep(sleeptime) - result2 = 3 - END IF - - -!$omp barrier - - - IF ( rank .EQ. 0 ) THEN - result1 = result2 - END IF -!$omp end parallel - IF ( result1 .EQ. 3 ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/omp_copyin.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_copyin.f +++ openmp/trunk/testsuite/fortran/omp_copyin.f @@ -1,47 +0,0 @@ - -Test which checks the omp parallel copyin directive. -2.0 -omp parallel copyin -omp critical,omp threadprivate - -! Changelog: - INTEGER FUNCTION omp_copyin() - IMPLICIT NONE - INTEGER known_sum - -! INTEGER, SAVE::sum1 -! implicitly by omp_threadprivate, see spec25 Chap. 2.8.2 - INTEGER sum1 - COMMON /csum1/ sum1 - INTEGER sum, i, threads - COMMON /orphvars/ sum, i, threads -! C. Niethammer 30.11.06: moved threadprivate statement into the orphaned -! function -!$omp threadprivate(/csum1/) - - - sum = 0 - sum1 = 7 - threads = 0 - -!$omp parallel copyin(sum1) -! print *,"sum1",sum1 -!$omp do - DO i=1, 999 - sum1 = sum1 + i - END DO -!$omp critical - sum = sum + sum1 - threads = threads + 1 -!$omp end critical -!$omp end parallel - - known_sum = 999*1000/2 + 7*threads - IF ( known_sum .EQ. sum ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/omp_critical.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_critical.f +++ openmp/trunk/testsuite/fortran/omp_critical.f @@ -1,59 +0,0 @@ - -Test which checks the omp critical directive by counting up a variable in a parallelized region within a critical section. - - -2.0 -omp critical - - INTEGER FUNCTION omp_critical() - IMPLICIT NONE - INTEGER known_sum - - INTEGER i,j,myi,myj, sum - COMMON /orphvars/ sum, myi, myj - - sum = 0 - myi = 0 - myj = 500 -!$omp parallel -!$omp sections - -!$omp section - DO i = 0 , 499 - - -!$omp critical - - sum = sum + myi - myi = myi + 1 - -!$omp end critical - - - END DO - -!$omp section - DO j = 500 , 999 - - -!$omp critical - - sum = sum + myj - myj = myj + 1 - -!$omp end critical - - - END DO -!$omp end sections -!$omp end parallel - known_sum = 999*1000/2 - IF ( known_sum .EQ. sum ) THEN - = 1 - ELSE - WRITE (1,*) "Found sum was", sum, "instead", known_sum - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/omp_flush.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_flush.f +++ openmp/trunk/testsuite/fortran/omp_flush.f @@ -1,49 +0,0 @@ - -Test which checks the omp flush directive. -2.0 -omp flush -omp barrier - - INTEGER FUNCTION omp_flush() - IMPLICIT NONE - INTEGER result1, dummy, rank - INTEGER omp_get_thread_num - - INTEGER result2 - COMMON /orphvars/ result2 - - result1=0 - result2=0 -!$omp parallel private(rank) - rank = omp_get_thread_num() -!$omp barrier - IF ( rank .EQ. 1 ) THEN - result2 = 3 - - -!$omp flush(result2) - - - dummy = result2 - END IF - IF ( rank .EQ. 0 ) THEN - call sleep(1) - - -!$omp flush(result2) - - - result1 = result2 - END IF -!$omp end parallel - -! PRINT *,"1:", result1, "2:", result2, "dummy", dummy - IF ( (result1 .EQ. result2) .AND. (result2 .EQ. dummy) .AND. - & (result2 .EQ. 3) ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/omp_get_num_threads.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_get_num_threads.f +++ openmp/trunk/testsuite/fortran/omp_get_num_threads.f @@ -1,37 +0,0 @@ - -Test which checks that the omp_get_num_threads returns the correct number of threads. Therefor it counts up a variable in a parallelized section and compars this value with the result of the omp_get_num_threads function. -2.0 -omp_get_num_threads -omp critical,somp single - - INTEGER FUNCTION omp_get_num_threads() - INTEGER nthreads - INTEGER omp_get_num_threads - - INTEGER nthreads_lib - COMMON /orphvars/ nthreads_lib - - nthreads=0 - nthreads_lib=-1 - -!$omp parallel -!shared(nthreads,nthreads_lib) -!$omp critical - nthreads = nthreads + 1 -!$omp end critical -!$omp single - - - nthreads_lib=omp_get_num_threads() - - -!$omp end single -!$omp end parallel - IF (nthreads .EQ. nthreads_lib) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/omp_get_wticks.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_get_wticks.f +++ openmp/trunk/testsuite/fortran/omp_get_wticks.f @@ -1,28 +0,0 @@ - -Test which checks the omp_get_wtick function. -2.0 -omp_get_wtick - - INTEGER FUNCTION omp_get_wticks() - IMPLICIT NONE - - DOUBLE PRECISION tick - COMMON /orphvars/ tick - include "omp_lib.h" - -! DOUBLE PRECISION omp_get_wtick - tick = 1 - - - tick=omp_get_wticK() - - - WRITE(1,*) "work took",tick,"sec. time." - IF(tick .GT. 0. .AND. tick .LT. 0.01) THEN - =1 - ELSE - =0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_in_parallel.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_in_parallel.f +++ openmp/trunk/testsuite/fortran/omp_in_parallel.f @@ -1,41 +0,0 @@ - -Test which checks that omp_in_parallel returns false when called from a serial region and true when called within a parallel region. -2.0 -omp_in_parallel - - INTEGER FUNCTION omp_in_parallel() -! checks that false is returned when called from serial region -! and true is returned when called within parallel region - LOGICAL omp_in_parallel - -! LOGICAL omp_in_parallel - LOGICAL serial, parallel - COMMON /orphvars/ serial, parallel - - serial=.TRUE. - parallel=.FALSE. - - - - serial=omp_in_parallel() - - - -!$omp parallel -!$omp single - - - parallel=omp_in_parallel(); - - -!$omp end single -!$omp end parallel - - IF ( (.NOT. serial) .AND. (parallel) ) THEN - =1 - ELSE - =0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_lock.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_lock.f +++ openmp/trunk/testsuite/fortran/omp_lock.f @@ -1,58 +0,0 @@ - -Test which checks the omp_set_lock and the omp_unset_lock function by counting the threads entering and exiting a single region with locks. -3.0 -omp_lock -omp flush - - INTEGER FUNCTION omp_lock() - IMPLICIT NONE - INTEGER result - INTEGER nr_threads_in_single - INTEGER nr_iterations - INTEGER i -!lock variable - - INCLUDE "omp_lib.h" - INTEGER (KIND=OMP_LOCK_KIND) :: lock - COMMON /orphvars/ lock - - INCLUDE "omp_testsuite.f" - -!result is: -! 0 -- if the test fails -! 1 -- if the test succeeds - CALL omp_init_lock(lock) - nr_iterations=0 - nr_threads_in_single=0 - result=0 -!$omp parallel shared(lock,nr_threads_in_single,nr_iterations,result) -!$omp do - DO i=1,LOOPCOUNT - - - CALL omp_set_lock(lock) - - -!$omp flush - nr_threads_in_single=nr_threads_in_single+1 -!$omp flush - nr_iterations=nr_iterations+1 - nr_threads_in_single=nr_threads_in_single-1 - result=result+nr_threads_in_single - - - CALL omp_unset_lock(lock) - - - END DO -!$omp end do -!$omp end parallel - CALL omp_destroy_lock(lock) - IF(result.EQ.0 .AND. nr_iterations .EQ. LOOPCOUNT) THEN - =1 - ELSE - =0 - ENDIf - END - - Index: openmp/trunk/testsuite/fortran/omp_master.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_master.f +++ openmp/trunk/testsuite/fortran/omp_master.f @@ -1,39 +0,0 @@ - -Test which checks the omp master directive by counting up a variable in a omp master section. -2.0 -omp master -omp critical - - INTEGER FUNCTION omp_master() - IMPLICIT NONE - INTEGER omp_get_thread_num - - INTEGER nthreads, executing_thread - COMMON /orphvars/ nthreads, executing_thread - - nthreads=0 - executing_thread=-1 - -!$omp parallel - - -!$omp master - -!$omp critical - nthreads = nthreads + 1 -!$omp end critical - executing_thread=omp_get_thread_num() - -!$omp end master - - -!$omp end parallel - - IF ( (nthreads .EQ. 1) .AND. (executing_thread .EQ. 0) ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/omp_master_3.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_master_3.f +++ openmp/trunk/testsuite/fortran/omp_master_3.f @@ -1,49 +0,0 @@ - -Test which checks the omp master directive by counting up a variable in a omp master section. It also checks that the master thread has the thread number 0 as specified in the OpenMP standard version 3.0. -3.0 -omp master -omp critical - - INTEGER FUNCTION omp_master_3() - IMPLICIT NONE - INTEGER omp_get_thread_num - - INTEGER nthreads, executing_thread - INTEGER tid_result ! counts up the number of wrong thread no. - ! for the master thread - COMMON /orphvars/ nthreads, executing_thread, tid_result - - tid_result = 0 - nthreads=0 - executing_thread=-1 - -!$omp parallel - - -!$omp master - - if (omp_get_thread_num() .ne. 0) then -!$omp critical - tid_result = tid_result + 1 -!$omp end critical - end if -!$omp critical - nthreads = nthreads + 1 -!$omp end critical - executing_thread=omp_get_thread_num() - -!$omp end master - - -!$omp end parallel - - IF ( (nthreads .EQ. 1) .AND. (executing_thread .EQ. 0) .AND. - & (tid_result .EQ. 0) ) THEN - = 1 - ELSE - = 0 - END IF - END - - - Index: openmp/trunk/testsuite/fortran/omp_nest_lock.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_nest_lock.f +++ openmp/trunk/testsuite/fortran/omp_nest_lock.f @@ -1,59 +0,0 @@ - -Test which checks the omp_set_nest_lock and the omp_unset_nest_lock function. -2.0 -omp_nest_lock -omp flush - - INTEGER FUNCTION omp_nest_lock() - IMPLICIT NONE -!result is: -! 0 -- if the test fails -! 1 -- if the test succeeds - INTEGER result - INTEGER nr_threads_in_single - INTEGER nr_iterations - INTEGER i - - INCLUDE "omp_lib.h" - INTEGER (KIND=OMP_NEST_LOCK_KIND) :: lock - COMMON /orphvars/ lock - - INCLUDE "omp_testsuite.f" - - nr_iterations=0 - nr_threads_in_single=0 - CALL omp_init_nest_lock(lock) - result=0 - -!$omp parallel shared(lock,nr_threads_in_single,nr_iterations,result) -!$omp do - DO i=1,LOOPCOUNT - - - CALL omp_set_nest_lock(lock) - - -!$omp flush - nr_threads_in_single=nr_threads_in_single+1 -!$omp flush - nr_iterations=nr_iterations+1 - nr_threads_in_single=nr_threads_in_single-1 - result=result+nr_threads_in_single - - - CALL omp_unset_nest_lock(lock) - - - END DO -!$omp end do -!$omp end parallel - CALL omp_destroy_nest_lock(lock) -! PRINT *, result, nr_iterations - IF(result.EQ.0 .AND. nr_iterations .EQ. LOOPCOUNT) THEN - =1 - ELSE - =0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_nested.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_nested.f +++ openmp/trunk/testsuite/fortran/omp_nested.f @@ -1,53 +0,0 @@ - -Test if the compiler support nested parallelism. -2.5 -nestedtest -omp critical - - INTEGER FUNCTION omp_nested() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - - INTEGER counter - COMMON /orphvars/ counter - - - counter =0 - - -!$ CALL OMP_SET_NESTED(.TRUE.) -!#ifdef _OPENMP -! CALL OMP_SET_NESTED(.TRUE.) -!#endif - - -!$ CALL OMP_SET_NESTED(.FALSE.) -!#ifdef _OPENMP -! CALL OMP_SET_NESTED(.FALSE.) -!#endif - - -!$omp parallel - -!$omp critical - counter = counter + 1 -!$omp end critical - -!$omp parallel -!$omp critical - counter = counter - 1 -!$omp end critical -!$omp end parallel - -!$omp end parallel - - IF (counter .EQ. 0 ) THEN - WRITE (1,*) "Counter was 0" - = 0 - ELSE - WRITE (1,*) "Counter was", counter - = 1 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_num_threads.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_num_threads.f +++ openmp/trunk/testsuite/fortran/omp_num_threads.f @@ -1,60 +0,0 @@ - -Test which checks that the omp_get_num_threads returns the correct number of threads. Therefor it counts up a variable in a parallelized section and compars this value with the result of the omp_get_num_threads function. -2.0 -omp_get_num_threads - - INTEGER FUNCTION omp_num_threads() - IMPLICIT NONE - INTEGER i, max_threads - INTEGER omp_get_num_threads - - INTEGER failed,threads,nthreads,tmp - COMMON /orphvars/ failed,threads,nthreads - - - failed = 0 - max_threads = 0 - -!$omp parallel -!$omp master - max_threads = OMP_GET_NUM_THREADS() -!$omp end master -!$omp end parallel -! print *, "max threads:",max_threads - -!Yi Wen added omp_Set_dynamics here to make sure num_threads clause work -!Thanks to Dr. Yin Ma in Absoft. should be not be called before the test loop -!because it allows the dynamic adjustment of the number of threads at runtime -!instead of using the max_threads set. - - !CALL OMP_SET_DYNAMIC(.TRUE.) - DO threads = 1, max_threads - nthreads = 0 - -!$omp parallel num_threads(threads) reduction(+:failed) -! print *, threads, omp_get_num_threads() - tmp = omp_get_num_threads() - IF ( threads .NE. tmp ) THEN - failed = failed + 1 - WRITE (1,*) "Error: found ", tmp, " instead of ", - & threads, " threads" - END IF -!$omp atomic - nthreads = nthreads + 1 -!$omp end parallel - -! print *, threads, nthreads - IF ( nthreads .NE. threads ) THEN - IF ( nthreads .EQ. threads ) THEN - failed = failed + 1 - END IF - END DO - - IF(failed .NE. 0) THEN - = 0 - ELSE - = 1 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_single.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_single.f +++ openmp/trunk/testsuite/fortran/omp_single.f @@ -1,40 +0,0 @@ - -Test which checks the omp single directive by controlling how often a directive is called in an omp single region. -2.0 -omp single -omp parallel private,omp flush - - INTEGER FUNCTION omp_single() - IMPLICIT NONE - INTEGER i - - INTEGER nr_threads_in_single,nr_iterations,result - COMMON /orphvars/ nr_threads_in_single,nr_iterations,result - - INCLUDE "omp_testsuite.f" - nr_threads_in_single=0 - result=0 - nr_iterations=0 -!$omp parallel - DO i=0, LOOPCOUNT-1 - -!$omp single -!$omp flush - nr_threads_in_single = nr_threads_in_single + 1 -!$omp flush - nr_iterations = nr_iterations + 1 - nr_threads_in_single = nr_threads_in_single - 1 - nr_threads_in_single = nr_threads_in_single + 1 - result = result + nr_threads_in_single -!$omp end single - - END DO -!$omp end parallel - IF ( result .EQ. 0 .AND. nr_iterations .EQ. LOOPCOUNT ) THEN - = 1 - ELSE - = 0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_task.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_task.f +++ openmp/trunk/testsuite/fortran/omp_task.f @@ -1,50 +0,0 @@ - -Test which checks the omp task directive. The idea of the tests is to generate a set of tasks in a single region. We let pause the tasks generated so that other threads get sheduled to the newly opened tasks. -3.0 -omp task -omp single - - INCLUDE "omp_my_sleep.f" - - INTEGER FUNCTION omp_task() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - - INTEGER omp_get_num_threads, omp_get_thread_num - EXTERNAL my_sleep - INTEGER myj - INTEGER i,j - INTEGER tids(NUM_TASKS) - COMMON /orphvars/ j,tids - -!$omp parallel private(myj) shared(j) -!$omp single - do i=1, NUM_TASKS - j = i - - myj = j - -!$omp task - - call my_sleep(SLEEPTIME) - tids(myj) = omp_get_thread_num() - -!$omp end task - - - end do -!$omp end single -!$omp end parallel - - = 0 - - ! check if more than one thread executed the tasks. - do i=1, NUM_TASKS - if (tids(1) .ne. tids(i)) then - = 1 - end if - end do - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_task_firstprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_task_firstprivate.f +++ openmp/trunk/testsuite/fortran/omp_task_firstprivate.f @@ -1,54 +0,0 @@ - -Test which checks the firstprivate clause of the task directive. We create a set of tasks in a single region. We defines a variable named sum unequal zero which gets declared firstprivate for each task. Now each task calcualtes a sum using this private variable. Before each calcualation step we introduce a flush command so that maybe the private variabel gets bad. At the end we check if the calculated sum was right. -3.0 -omp task firstprivate -omp single,omp critical - - INCLUDE "omp_my_sleep.f" - - INTEGER FUNCTION omp_task_firstprivate() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - INTEGER j,i - - external my_sleep - INTEGER my_sum - INTEGER known_sum - INTEGER rslt - COMMON /orphvars/ my_sum, known_sum, rslt - - - my_sum = 1234 - known_sum = 1234 + (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - -!$omp parallel private(j) -!$omp single - do i=1, NUM_TASKS - -!$omp task firstprivate(my_sum) - do j = 0, LOOPCOUNT -!$omp flush - my_sum = my_sum + j - end do - - ! check if calculated my_sum was right - if (my_sum .ne. known_sum) then -!$omp critical - rslt = rslt + 1 -!$omp end critical - end if -!$omp end task - - end do -!$omp end single -!$omp end parallel - - if (rslt .eq. 0) then - = 1 - else - = 0 - end if - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_task_if.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_task_if.f +++ openmp/trunk/testsuite/fortran/omp_task_if.f @@ -1,45 +0,0 @@ - -Test which checks the if clause of the omp task directive. The idear of the tests is to generate a tasks in a single region and pause it immediately. The parent thread now shall set a counter variable which the paused task shall evaluate when woke up. -3.0 -omp task if -omp single,omp flush - - INCLUDE "omp_my_sleep.f" - - INTEGER FUNCTION omp_task_if() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - - external my_sleep - INTEGER dummy - LOGICAL condition_false - INTEGER cnt - INTEGER rslt - COMMON /orphvars/ condition_false, cnt, rslt - - - cnt = 0 - condition_false = (dummy .eq. 314159) - -!$omp parallel -!$omp single - -!$omp task if (condition_false) shared(cnt,rslt) - call my_sleep(SLEEPTIME_LONG) -!$omp flush - if (cnt .eq. 0) then - rslt = 1 - else - rslt = 0 - end if -!$omp end task - - cnt = 1 -!$omp end single -!$omp end parallel - - = rslt - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_task_private.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_task_private.f +++ openmp/trunk/testsuite/fortran/omp_task_private.f @@ -1,55 +0,0 @@ - -Test which checks the private clause of the task directive. We create a set of tasks in a single region. We defines a variable named sum which gets declared private for each task. Now each task calcualtes a sum using this private variable. Before each calcualation step we introduce a flush command so that maybe the private variabel gets bad. At the end we check if the calculated sum was right. -3.0 -omp task private -omp single,omp critical - - INCLUDE "omp_my_sleep.f" - - INTEGER FUNCTION omp_task_firstprivate() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - INTEGER j,i - - external my_sleep - INTEGER my_sum - INTEGER known_sum - INTEGER rslt - COMMON /orphvars/ my_sum, known_sum, rslt - - - my_sum = 0 - rslt = 0 - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - -!$omp parallel private(j) -!$omp single - do i=1, NUM_TASKS - -!$omp task private(my_sum) shared(rslt, known_sum) - my_sum = 0 - do j = 0, LOOPCOUNT - my_sum = my_sum + j - end do - - ! check if calculated my_sum was right - if (my_sum .ne. known_sum) then -!$omp critical - rslt = rslt + 1 -!$omp end critical - end if -!$omp end task - - end do -!$omp end single -!$omp end parallel - - if (rslt .eq. 0) then - = 1 - else - = 0 - end if - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_task_shared.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_task_shared.f +++ openmp/trunk/testsuite/fortran/omp_task_shared.f @@ -1,47 +0,0 @@ - - Test to see if implied shared works correctly -3.0 -omp task -omp single, omp task firstprivate - - INCLUDE "omp_my_sleep.f" - - INTEGER FUNCTION omp_task_shared() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - - external my_sleep - INTEGER i - COMMON /orphvars/ i - - INTEGER rslt - INTEGER k - - i = 0 - k = 0 - rslt = 0 - -!$omp parallel private(k) shared(i) -!$omp single - do k=1, NUM_TASKS - -!$omp task firstprivate(i) -!$omp+ shared(i) -!$omp atomic - i = i + 1 -!$omp end task - - end do -!$omp end single -!$omp end parallel - - rslt = i - if (rslt .eq. NUM_TASKS) then - = 1 - else - = 0 - end if - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_task_untied.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_task_untied.f +++ openmp/trunk/testsuite/fortran/omp_task_untied.f @@ -1,63 +0,0 @@ - -Test for untied clause. First generate a set of tasks and pause it immediately. Then we resume half of them and check whether they are scheduled by different threads -3.0 -omp task untied -omp taskwait - - INCLUDE "omp_my_sleep.f" - - INTEGER FUNCTION omp_task_untied() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - - EXTERNAL my_sleep - INTEGER omp_get_num_threads, omp_get_thread_num - INTEGER myj - INTEGER i,j - INTEGER cnt - INTEGER start_tid(NUM_TASKS) - INTEGER current_tid(NUM_TASKS) - COMMON /orphvars/ j, cnt, start_tid, current_tid - - - cnt = 0 - do i = 1, NUM_TASKS - start_tid(i) = 0 - current_tid(i) = 0 - end do - -!$omp parallel private(myj) shared(j) -!$omp single - do i=1, NUM_TASKS - j = i - - myj = j -!$omp task untied - call my_sleep(SLEEPTIME) - start_tid(myj) = omp_get_thread_num() -!$omp taskwait - if (MOD(start_tid(myj),2) .ne. 0) then - call my_sleep(SLEEPTIME) - current_tid(myj) = omp_get_thread_num() - - else - current_tid(myj) = omp_get_thread_num() - end if -!$omp end task - - end do -!$omp end single -!$omp end parallel - - = 0 - - ! check if at least one untied task switched threads - do i=1, NUM_TASKS - if (current_tid(i) .ne. start_tid(i)) then - = 1 - end if - end do - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_taskwait.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_taskwait.f +++ openmp/trunk/testsuite/fortran/omp_taskwait.f @@ -1,83 +0,0 @@ - -Test which checks the omp taskwait directive. First we generate a set of tasks, which set the elements of an array to a specific value. Then we do a taskwait and check if all tasks finished meaning all array elements contain the right value. Then we generate a second set setting the array elements to another value. After the parallel region we check if all tasks of the second set finished and were executed after the tasks of the first set. -3.0 -omp taskwait -omp single,omp task - - INCLUDE "omp_my_sleep.f" - - INTEGER FUNCTION omp_taskwait() - IMPLICIT NONE - INCLUDE "omp_testsuite.f" - INTEGER result1, result2 - INTEGER array(NUM_TASKS) - INTEGER i, myi - - external my_sleep - - - result1 = 0 - result2 = 0 - - ! fill array - do i = 1, NUM_TASKS - array(i) = 0 - end do - -!$omp parallel shared(i) private(myi) -!$omp single - do i=1, NUM_TASKS - ! First we have to store the value of the loop index in a new variable - ! which will be private for each task because otherwise it will be - ! overwritten if the execution of the task takes longer than the time - ! which is needed to enter the next step of the loop! - - myi = i - -!$omp task - call my_sleep(SLEEPTIME) - array(myi) = 1 -!$omp end task - end do - - - -!$omp taskwait - - - - ! check if all tasks were finished - do i=1, NUM_TASKS - if (array(i) .ne. 1) then - result1 = result1 + 1 - end if - end do - - ! generate some more tasks which now shall overwrite the valuesin the - ! array - do i=1, NUM_TASKS - myi = i -!$omp task - array(myi) = 2 -!$omp end task - end do - -!$omp end single -!$omp end parallel - - ! final check, if all array elements contain the right values - do i=1, NUM_TASKS - if (array(i) .ne. 2) then - result2 = result2 + 1 - end if - end do - - if ( (result1 .eq. 0) .and. (result2 .eq. 0) ) then - = 1 - else - = 0 - end if - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_test_nest_lock.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_test_nest_lock.f +++ openmp/trunk/testsuite/fortran/omp_test_nest_lock.f @@ -1,61 +0,0 @@ - -Test which checks the omp_test_nest_lock function. -2.0 -omp_test_nest_lock -omp flush - - INTEGER FUNCTION omp_test_nest_lock() - IMPLICIT NONE - INTEGER result -!result is: -! 0 -- if the test fails -! 1 -- if the test succeeds - INTEGER nr_threads_in_single - INTEGER nr_iterations - INTEGER i - - include "omp_lib.h" - INTEGER (KIND=OMP_NEST_LOCK_KIND) :: lock - COMMON /orphvars/ lock - -! INTEGER lck - INCLUDE "omp_testsuite.f" - - nr_iterations=0 - nr_threads_in_single=0 - CALL OMP_INIT_NEST_LOCK(lock) - result=0 - -!$omp parallel shared(lock,nr_threads_in_single,nr_iterations,result) -!$omp do - DO i=1,LOOPCOUNT - - - DO WHILE(OMP_TEST_NEST_LOCK(lock) .EQ. 0) - END DO - - -!$omp flush - nr_threads_in_single=nr_threads_in_single+1 -!$omp flush - nr_iterations=nr_iterations+1 - nr_threads_in_single=nr_threads_in_single-1 - result=result+nr_threads_in_single - - - CALL OMP_UNSET_NEST_LOCK(lock) - - - END DO -!$omp end do -!$omp end parallel - CALL omp_destroy_nest_lock(lock) -! print *, result, nr_iterations - IF(result.EQ.0 .AND. nr_iterations .EQ. LOOPCOUNT) THEN - =1 - ELSE - =0 - ENDIF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_testlock.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_testlock.f +++ openmp/trunk/testsuite/fortran/omp_testlock.f @@ -1,57 +0,0 @@ - -Test which checks the omp_testlock function. The test counts the threads entering and exiting a single region which is build with a test_lock in an endless loop. -2.0 -omp_test_lock -omp flush - - INTEGER FUNCTION omp_testlock() - IMPLICIT NONE - INTEGER result - INTEGER nr_threads_in_single - INTEGER nr_iterations - INTEGER i - - include "omp_lib.h" - INTEGER (KIND=OMP_LOCK_KIND)::lock - COMMON /orphvars/ lock - - INCLUDE "omp_testsuite.f" - - nr_iterations=0 - nr_threads_in_single=0 - CALL OMP_INIT_LOCK(lock) - result=0 - -!$omp parallel shared(lock,nr_threads_in_single,nr_iterations,result) -!$omp do - DO i=1,LOOPCOUNT - - - DO WHILE (.NOT. OMP_TEST_LOCK(lock)) - END DO - - -!$omp flush - nr_threads_in_single=nr_threads_in_single+1 -!$omp flush - nr_iterations=nr_iterations+1 - nr_threads_in_single=nr_threads_in_single-1 - result=result+nr_threads_in_single - - - CALL OMP_UNSET_LOCK(lock) - - - END DO -!$omp end do -!$omp end parallel - CALL OMP_DESTROY_LOCK(lock) -! print *, result, nr_iterations - IF(result.EQ.0 .AND. nr_iterations .EQ. LOOPCOUNT) THEN - =1 - ELSE - =0 - ENDIF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/omp_testsuite.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_testsuite.f +++ openmp/trunk/testsuite/fortran/omp_testsuite.f @@ -1,2 +0,0 @@ - integer LOOPCOUNT - parameter (LOOPCOUNT=1000) Index: openmp/trunk/testsuite/fortran/omp_threadprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_threadprivate.f +++ openmp/trunk/testsuite/fortran/omp_threadprivate.f @@ -1,89 +0,0 @@ - -Test which checks the omp threadprivate directive by filling an array with random numbers in an parallelised region. Each thread generates one number of the array and saves this in a temporary threadprivate variable. In a second parallelised region the test controls, that the temporary variable contains still the former value by comparing it with the one in the array. -2.0 -omp threadprivate -omp critical,omp_set_dynamic,omp_get_num_threads,omp master - -!Yi Wen modified this function from his own understanding of the semantics -!of C version at 05042004 -!The undeestanding is that sum0 and myvalue can be local static variables -!of the chk_omp_threadprivate function. There is no need to use common -!block - INTEGER FUNCTION omp_threadprivate() - IMPLICIT NONE - INTEGER sum, known_sum, i , iter, rank,size, failed - INTEGER omp_get_num_threads, omp_get_thread_num - REAL my_random - REAL, ALLOCATABLE:: data(:) - INTEGER random_size - INTRINSIC random_number - INTRINSIC random_seed - EXTERNAL omp_set_dynamic - -!Yi Wen modified at 05042004 : add "save" - INTEGER, SAVE:: sum0 - REAL, SAVE::myvalue -!Yi Wen commented two common blocks -! common/csum0/ sum0 -! common/cmyvalue/ myvalue -!!!!!!!!!!$omp threadprivate(/csum0/,/cmyvalue/) - -!$omp threadprivate(sum0,myvalue) - - INCLUDE "omp_testsuite.f" - - sum = 0 - failed = 0 - sum0=0 - myvalue=0 - random_size=45 - CALL omp_set_dynamic(.FALSE.) -!$omp parallel - sum0 = 0 -!$omp do - DO i=1, LOOPCOUNT - sum0 = sum0 + i - END DO -!$omp end do -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end parallel - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2 - IF ( known_sum .NE. sum ) THEN - PRINT *, ' known_sum =', known_sum, ', sum =',sum - END IF - - CALL omp_set_dynamic(.FALSE.) - -!$omp parallel -!$omp master - size = omp_get_num_threads() - ALLOCATE ( data(size) ) -!$omp end master -!$omp end parallel - CALL RANDOM_SEED(SIZE=random_size) - DO iter = 0, 99 - CALL RANDOM_NUMBER(HARVEST=my_random) -!$omp parallel private(rank) - rank = omp_get_thread_num()+1 - myvalue = my_random + rank - data(rank) = myvalue -!$omp end parallel -!$omp parallel private(rank) - rank = omp_get_thread_num()+1 - IF ( myvalue .NE. data(rank) ) THEN - failed = failed + 1 - PRINT *, ' myvalue =',myvalue,' data(rank)=', data(rank) - END IF -!$omp end parallel - END DO - DEALLOCATE( data) - IF ( (known_sum .EQ. sum) .AND. (failed .NE. 1) ) THEN - = 1 - else - = 0 - end if - END - - Index: openmp/trunk/testsuite/fortran/omp_workshare.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_workshare.f +++ openmp/trunk/testsuite/fortran/omp_workshare.f @@ -1,142 +0,0 @@ - -Test which checks if WORKSHARE is present. -2.0 -omp workshare -omp critical - -!******************************************************************** -! Function: omp_workshare -! -! by Chunhua Liao, University of Houston -! Oct. 2005 - First version -! -! The idea for the test is that if WORKSHARE is not present, -! the array assignment in PARALLEL region will be executed by each -! thread and then wrongfully repeated several times. -! -! TODO:Do we need test for WHERE and FORALL? -! A simple test for WHERE and FORALL is added by Zhenying Liu -!******************************************************************** - INTEGER FUNCTION omp_workshare() - IMPLICIT NONE - INTEGER result,i - INTEGER scalar02,scalar12,scalar22,scalar32,count - REAL, DIMENSION(1000)::FF - - INTEGER scalar0,scalar1,scalar2,scalar3 - INTEGER, DIMENSION(1000)::AA,BB,CC - REAL, DIMENSION(1000)::DD - COMMON /orphvars/ scalar0,scalar1,scalar2,scalar3, - & AA,BB,CC,DD - - - result=0 - scalar0=0 - scalar02=0 - scalar1=0 - scalar12=0 - scalar2=0 - scalar22=0 - scalar3=0 - scalar32=0 - - count = 0 - - AA=0 - BB=0 - - do i=1,1000 - CC(i) = i - FF(i) = 1.0/i - end do - -!$OMP PARALLEL - -!$OMP WORKSHARE - -! test if work is divided or not for array assignment - AA=AA+1 - -! test if scalar assignment is treated as a single unit of work - scalar0=scalar0+1 - -! test if atomic is treated as a single unit of work -!$OMP ATOMIC - scalar1=scalar1+1 -! test if critical is treated as a single unit of work -!$OMP CRITICAL - scalar2=scalar2+1 -!$OMP END CRITICAL - -! test if PARALLEL is treated as a single unit of work -!$OMP PARALLEL - scalar3=scalar3+1 -!$OMP END PARALLEL - - WHERE ( CC .ne. 0 ) DD = 1.0/CC - - FORALL (I=1:1000) CC(i) = -i - -!$OMP END WORKSHARE - -!$OMP END PARALLEL - -!sequential equivalent statements for comparison - BB=BB+1 - scalar02=scalar02+1 - scalar12=scalar12+1 - scalar22=scalar22+1 - scalar32=scalar32+1 - -! write (1,*) "ck:sum of AA is",SUM(AA)," sum of BB is ",sum(BB) - if (SUM(AA)/=SUM(BB)) then - write(1,*) "Array assignment has some problem" - result=result +1 - endif - if (scalar0/=scalar02) then - write(1,*) "Scalar assignment has some problem" - result = result +1 - endif - if (scalar1/=scalar12) then - write(1,*) "Atomic inside WORKSHARE has some problem" - result = result +1 - endif - if (scalar2/=scalar22) then - write(1,*) "CRITICAL inside WORKSHARE has some problem" - result = result +1 - endif - if (scalar3/=scalar32) then - write(1,*) "PARALLEL inside WORKSHARE has some problem" - result = result +1 - endif - do i=1,1000 - if ( abs( DD(i)- FF(i)) .gt. 1.0E-4 ) then - count = count + 1 - end if - end do - if ( count .ne. 0 ) then - result = result + 1 - write(1,*) "WHERE has some problem" - end if - - count = 0 - do i=1,1000 - if ( CC(i) .ne. -i ) then - count = count + 1 - end if - end do - if ( count .ne. 0 ) then - result = result + 1 - write(1,*) "FORALL has some problem" - end if - - -!if anything is wrong, set return value to 0 - if (result==0) then - = 1 - else - = 0 - end if - end - - Index: openmp/trunk/testsuite/fortran/omp_workshare_default.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_workshare_default.f +++ openmp/trunk/testsuite/fortran/omp_workshare_default.f @@ -1,36 +0,0 @@ - -Test which checks the omp master directive by counting up a variable in a omp master section. -2.0 -omp workshare default -omp critical - - INTEGER FUNCTION omp_workshare_default() - IMPLICIT NONE - INTEGER sum - INTEGER known_sum - INTEGER mysum - INTEGER i - - known_sum = 999*1000/2 - -!$omp parallel default(private) shared(sum) -!$omp do - DO i = 1, 999 - mysum = mysum + i - END DO -!$omp end do - -!$omp critical - sum = sum + mysum -!$omp end critical - -!$omp end parallel - - IF ( (known_sum .EQ. sum) ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/omp_wtime.f =================================================================== --- openmp/trunk/testsuite/fortran/omp_wtime.f +++ openmp/trunk/testsuite/fortran/omp_wtime.f @@ -1,43 +0,0 @@ - -Test which checks the omp_get_wtime function. It compares the time with which is called a sleep function with the time it took by messuring the difference between the call of the sleep function and its end. -2.0 -omp_get_wtime - - INTEGER FUNCTION omp_wtime() - IMPLICIT NONE - - DOUBLE PRECISION start - DOUBLE PRECISION endtime - COMMON start, endtime - include "omp_lib.h" - - INTEGER wait_time - DOUBLE PRECISION measured_time - INTEGER fileunit - wait_time=1 - - start = 0; - endtime = 0; - - - - start=omp_get_wtime() - - - CALL sleep(wait_time) - - - endtime=omp_get_wtime() - - - measured_time=endtime-start - WRITE(1,*) "work took",measured_time,"sec. time." - IF(measured_time.GT.0.99*wait_time .AND. - & measured_time .LT. 1.01*wait_time) THEN - =1 - ELSE - =0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/par_do_firstprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/par_do_firstprivate.f +++ openmp/trunk/testsuite/fortran/par_do_firstprivate.f @@ -1,26 +0,0 @@ - -Test which checks the omp parallel do firstprivate directive. -2.0 -omp parallel for firstprivate -par do reduction,par do private - - INTEGER FUNCTION par_do_firstprivate() - IMPLICIT NONE - INTEGER sum,known_sum, i2, i - INCLUDE "omp_testsuite.f" - sum =0 - i2 = 3 -!$omp parallel do firstprivate(i2)private(i2) reduction(+:sum) - DO i=1, LOOPCOUNT - sum = sum + ( i+ i2) - END DO -!$omp end parallel do - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2+3*LOOPCOUNT - IF ( known_sum .EQ. sum ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/par_do_if.f =================================================================== --- openmp/trunk/testsuite/fortran/par_do_if.f +++ openmp/trunk/testsuite/fortran/par_do_if.f @@ -1,32 +0,0 @@ - -Test which checks the omp parallel for if directive. Needs at least two threads. -2.0 -omp parallel do if - - - INTEGER FUNCTION par_do_if() - IMPLICIT NONE - INTEGER omp_get_num_threads - INTEGER sum,known_sum, i, num_threads - INTEGER control - INCLUDE "omp_testsuite.f" - sum = 0 - - control = 0 -!$omp parallel do if (control == 1) - DO i=1, LOOPCOUNT - sum = sum + i - num_threads = omp_get_num_threads () - END DO -!$omp end parallel do - WRITE (1,*) "Number of threads determined by:"\ - "omg_get_num_threasd:", num_threads - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2 - IF ( known_sum .EQ. sum .AND. num_threads .EQ. 1) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/par_do_lastprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/par_do_lastprivate.f +++ openmp/trunk/testsuite/fortran/par_do_lastprivate.f @@ -1,28 +0,0 @@ - -Test which checks the omp parallel do lastprivate directive. -2.0 -omp parallel do lastprivate -par do reduction, par do private - - INTEGER FUNCTION par_do_lastprivate() - IMPLICIT NONE - INTEGER sum, known_sum, i , i0 - INCLUDE "omp_testsuite.f" - sum = 0 - i0 = -1 - -!$omp parallel do reduction(+:sum) schedule(static,7) lastprivate(i0)private(i0) - DO i=1, LOOPCOUNT - sum = sum + i - i0 = i - END DO -!$omp end parallel do - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2 - IF ( (known_sum .EQ. sum) .AND. (i0 .EQ. LOOPCOUNT) ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/par_do_ordered.f =================================================================== --- openmp/trunk/testsuite/fortran/par_do_ordered.f +++ openmp/trunk/testsuite/fortran/par_do_ordered.f @@ -1,67 +0,0 @@ - -Test which checks the omp parallel do ordered directive -2.0 -omp parallel do ordered -par schedule stat - -! ********************************************************** -! Helper function is_larger -! ********************************************************** - INTEGER FUNCTION i_islarger2(i) - IMPLICIT NONE - INTEGER i - INTEGER last_i,islarger - COMMON /com/ last_i - INCLUDE "omp_testsuite.f" -! print *, "last_i",last_i, "i", i -! last_i is a global variable - IF ( i .GT. last_i ) THEN - islarger = 1 - ELSE - islarger = 0 - END IF - last_i = i - i_islarger2 = islarger - END FUNCTION - - INTEGER FUNCTION par_do_ordered() - IMPLICIT NONE - COMMON /com/ last_i - INTEGER known_sum,i, last_i - - INTEGER is_larger,sum,i_islarger2 - COMMON /orphvars/ is_larger,sum,i - - - sum=0 - is_larger=1 - last_i=0 -!$omp parallel do schedule(static, 1) ordered - DO i=1, 99 - - -!$omp ordered - - IF( i_islarger2(i) .EQ. 1 .AND. is_larger .EQ. 1 ) THEN - is_larger = 1 - ELSE - is_larger = 0 - END IF - sum = sum + i - -!$omp end ordered - - - END DO -!$omp end parallel do - known_sum = (99*100)/2 -!Yi Wen; Sun compiler will fail sometimes -! print *, "sum", sum, "ks", known_sum, "la", is_larger - IF ( known_sum .EQ. sum .AND. is_larger .EQ. 1 ) THEN - = 1 - ELSE - = 0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/par_do_private.f =================================================================== --- openmp/trunk/testsuite/fortran/par_do_private.f +++ openmp/trunk/testsuite/fortran/par_do_private.f @@ -1,46 +0,0 @@ - -Test which checks the omp parallel do private directive. -2.0 -omp parallel do private -par do reduction,omp flush - - SUBROUTINE do_some_work2() - IMPLICIT NONE - REAL i - DOUBLE PRECISION sum - INTRINSIC sqrt - INCLUDE "omp_testsuite.f" - sum = 0.0 - i = 0 - DO WHILE (i < LOOPCOUNT) - sum = sum + sqrt(i) - i = i + 1 - END DO - END - -!******************************************************************** - - INTEGER FUNCTION par_do_private() - IMPLICIT NONE - INTEGER sum,known_sum, i, i2, i3 - INCLUDE "omp_testsuite.f" - sum = 0 - -!$omp parallel do reduction(+:sum) private(i2) schedule(static,1) - DO i=1, LOOPCOUNT - i2 = i -!$omp flush - CALL do_some_work2() -!$omp flush - sum = sum + i2 - END DO -!$omp end parallel do - known_sum = (LOOPCOUNT*(LOOPCOUNT+1))/2 - IF ( known_sum .EQ. sum ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/par_do_reduction.f =================================================================== --- openmp/trunk/testsuite/fortran/par_do_reduction.f +++ openmp/trunk/testsuite/fortran/par_do_reduction.f @@ -1,415 +0,0 @@ - -Test which checks the omp parallel do reduction directive with all its options. -2.0 -omp parallel do reduction - - INTEGER FUNCTION par_do_reduction() - IMPLICIT NONE - INTEGER sum, sum2, known_sum, i, i2,diff - INTEGER product,known_product,int_const - INTEGER MAX_FACTOR - DOUBLE PRECISION dsum,dknown_sum,dt,dpt - DOUBLE PRECISION rounding_error, ddiff - INTEGER double_DIGITS - LOGICAL logic_and, logic_or, logic_eqv,logic_neqv - INTEGER bit_and, bit_or - INTEGER exclusiv_bit_or - INTEGER min_value, max_value - DOUBLE PRECISION dmin, dmax - INTEGER result - INCLUDE "omp_testsuite.f" - LOGICAL logics(LOOPCOUNT) - INTEGER int_array(LOOPCOUNT) - DOUBLE PRECISION d_array(LOOPCOUNT) - PARAMETER (int_const=10,known_product=3628800) - PARAMETER (double_DIGITS=20,MAX_FACTOR=10) - PARAMETER (rounding_error=1.E-6) - - dt = 1./3. - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - product = 1 - sum2 = 0 - sum = 0 - dsum = 0. - result =0 - logic_and = .true. - logic_or = .false. - bit_and = 1 - bit_or = 0 - exclusiv_bit_or = 0 -!$omp parallel do schedule(dynamic, 1) reduction(+:sum) - DO i =1, LOOPCOUNT - sum = sum + i - END DO -!$omp end parallel do - - IF (known_sum .NE. sum) THEN - result = result + 1 - WRITE(1,*) "Error in sum with integers: Result was ", - & sum,"instead of ", known_sum - END IF - - diff = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - - - -!$omp parallel do schedule(dynamic, 1) reduction (-: diff) - DO i =1, LOOPCOUNT - diff = diff - i - END DO -!$omp end parallel do - - IF ( diff .NE. 0 ) THEN - result = result + 1 - WRITE(1,*) "Error in difference with integers: Result was ", - & sum,"instead of 0." - END IF - -!... Test for doubles - dsum =0. - dpt = 1 - - DO i=1, DOUBLE_DIGITS - dpt= dpt * dt - END DO - dknown_sum = (1-dpt)/(1-dt) -!$omp parallel do schedule(dynamic,1) reduction(+:dsum) - DO i=0,DOUBLE_DIGITS-1 - dsum = dsum + dt**i - END DO -!$omp end parallel do - - - IF(dsum .NE. dknown_sum .AND. - & abs(dsum - dknown_sum) .GT. rounding_error ) THEN - result = result + 1 - write(1,*) "Error in sum with doubles: Result was ", - & dsum,"instead of ",dknown_sum,"(Difference: ", - & dsum - dknown_sum,")" - END IF - dpt = 1 - - DO i=1, DOUBLE_DIGITS - dpt = dpt*dt - END DO - ddiff = ( 1-dpt)/(1-dt) - -!$omp parallel do schedule(dynamic,1) reduction(-:ddiff) - DO i=0, DOUBLE_DIGITS-1 - ddiff = ddiff - dt**i - END DO -!$omp end parallel do - - IF ( ABS(ddiff) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in Difference with doubles: Result was ", - & ddiff,"instead of 0.0" - END IF - -!$omp parallel do schedule(dynamic,1) reduction(*:product) - DO i=1,MAX_FACTOR - product = product * i - END DO -!$omp end parallel do - - IF (known_product .NE. product) THEN - result = result + 1 - WRITE(1,*) "Error in Product with integers: Result was ", - & product," instead of",known_product - END IF - - DO i=1,LOOPCOUNT - logics(i) = .TRUE. - END DO - -!$omp parallel do schedule(dynamic,1) reduction(.AND.:logic_and) - DO i=1,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp end parallel do - - IF (.NOT. logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND part 1" - END IF - - - logic_and = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel do schedule(dynamic,1) reduction(.AND.:logic_and) - DO i=1,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp end parallel do - - IF (logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND pass 2" - END IF - - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - -!$omp parallel do schedule(dynamic,1) reduction(.OR.:logic_or) - DO i = 1, LOOPCOUNT - logic_or = logic_or .or. logics(i) - END DO -!$omp end parallel do - - IF (logic_or) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 1" - END IF - - logic_or = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel do schedule(dynamic,1) reduction(.OR.:logic_or) - DO i=1,LOOPCOUNT - logic_or = logic_or .OR. logics(i) - END DO -!$omp end parallel do - - IF ( .NOT. logic_or ) THEn - result = result + 1 - WRITE(1,*) "Error in logic OR part 2" - END IF - -!... Test logic EQV, unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .TRUE. - END DO - - logic_eqv = .TRUE. - -!$omp parallel do schedule(dynamic,1) reduction(.EQV.:logic_eqv) - DO i = 1, LOOPCOUNT - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end parallel do - - IF (.NOT. logic_eqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 1" - END IF - - logic_eqv = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel do schedule(dynamic,1) reduction(.EQV.:logic_eqv) - DO i=1,LOOPCOUNT - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end parallel do - - IF ( logic_eqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 2" - END IF - -!... Test logic NEQV, which is unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - - logic_neqv = .FALSE. - -!$omp parallel do schedule(dynamic,1) reduction(.NEQV.:logic_neqv) - DO i = 1, LOOPCOUNT - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp end parallel do - - IF (logic_neqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 1" - END IF - - logic_neqv = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel do schedule(dynamic,1) reduction(.NEQV.:logic_neqv) - DO i=1,LOOPCOUNT - logic_neqv = logic_neqv .neqv. logics(i) - END DO -!$omp end parallel do - - IF ( .NOT. logic_neqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 1 - END DO -!$omp parallel do schedule(dynamic,1) reduction(IAND:bit_and) - DO i=1, LOOPCOUNT -!... iand(I,J): Returns value resulting from boolean AND of -!... pair of bits in each of I and J. - bit_and = IAND(bit_and,int_array(i)) - END DO -!$omp end parallel do - - IF ( bit_and .LT. 1 ) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 1" - END IF - - bit_and = 1 - int_array(LOOPCOUNT/2) = 0 - -!$omp parallel do schedule(dynamic,1) reduction(IAND:bit_and) - DO i=1, LOOPCOUNT - bit_and = IAND ( bit_and, int_array(i) ) - END DO -!$omp end parallel do - - IF( bit_and .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - - -!$omp parallel do schedule(dynamic,1) reduction(IOR:bit_or) - DO i=1, LOOPCOUNT -!... Ior(I,J): Returns value resulting from boolean OR of -!... pair of bits in each of I and J. - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp end parallel do - - IF ( bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 1" - END IF - - - bit_or = 0 - int_array(LOOPCOUNT/2) = 1 -!$omp parallel do schedule(dynamic,1) reduction(IOR:bit_or) - DO i=1, LOOPCOUNT - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp end parallel do - - IF ( bit_or .LE. 0) then - result = result + 1 - WRITE(1,*) "Error in Ior part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - -!$omp parallel do schedule(dynamic,1) reduction(IEOR:exclusiv_bit_or) - DO i = 1, LOOPCOUNT - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp end parallel do - - IF ( exclusiv_bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 1" - END IF - - exclusiv_bit_or = 0 - int_array(LOOPCOUNT/2) = 1 - -!$omp parallel do schedule(dynamic,1) reduction(IEOR:exclusiv_bit_or) - DO i = 1, LOOPCOUNT - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp end parallel do - - IF ( exclusiv_bit_or .le. 0) then - result = result + 1 - WRITE(1,*) "Error in Ieor part 2" - END IF - - DO i=1,LOOPCOUNT - int_array(i) = 10 - i - END DO - - min_value = 65535 - -!$omp parallel do schedule(dynamic,1) reduction(MIN:min_value) - DO i = 1, LOOPCOUNT - min_value = MIN(min_value,int_array(i) ) - END DO -!$omp end parallel do - - IF ( min_value .GT. (10-LOOPCOUNT) )THEN - result = result + 1 - WRITE(1,*) "Error in integer MIN" - END IF - - - DO i=1,LOOPCOUNT - int_array(i) = i - END DO - - max_value = -32768 - -!$omp parallel do schedule(dynamic,1) reduction(MAX:max_value) - DO i = 1, LOOPCOUNT - max_value = MAX(max_value,int_array(i) ) - END DO -!$omp end parallel do - - IF ( max_value .LT. LOOPCOUNT )THEN - result = result + 1 - WRITE(1,*) "Error in integer MAX" - END IF - -!... test double min, max - DO i=1,LOOPCOUNT - d_array(i) = 10 - i*dt - END DO - - dmin = 2**10 - dt = 0.5 - -!$omp parallel do schedule(dynamic,1) reduction(MIN:dmin) - DO i = 1, LOOPCOUNT - dmin= MIN(dmin,d_array(i) ) - END DO -!$omp end parallel do - - IF ( dmin .GT. (10-dt) )THEN - result = result + 1 - WRITE(1,*) "Error in double MIN" - END IF - - - DO i=1,LOOPCOUNT - d_array(i) = i * dt - END DO - - dmax= - (2**10) - -!$omp parallel do schedule(dynamic,1) reduction(max:dmax) - DO i = 1, LOOPCOUNT - dmax= max(dmax,d_array(i) ) - END DO -!$omp end parallel do - - IF ( dmax .LT. LOOPCOUNT*dt )THEN - result = result + 1 - WRITE(1,*) "Error in double MAX" - END IF - - IF ( result .EQ. 0 ) THEN - = 1 - ELSE - = 0 - END IF - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/par_section_firstprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/par_section_firstprivate.f +++ openmp/trunk/testsuite/fortran/par_section_firstprivate.f @@ -1,34 +0,0 @@ - -Test which checks the omp parallel sections firstprivate clause. -2.0 -omp parallel sections firstprivate -omp critical - - INTEGER FUNCTION par_section_firstprivate() - IMPLICIT NONE - INTEGER sum, sum0, known_sum - sum = 7 - sum0 = 11 -!$omp parallel sections firstprivate(sum0)private(sum0) -!$omp section -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end parallel sections - known_sum = 11*3 + 7 - IF ( known_sum .EQ. sum ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/par_section_lastprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/par_section_lastprivate.f +++ openmp/trunk/testsuite/fortran/par_section_lastprivate.f @@ -1,51 +0,0 @@ - -Test which checks the omp parallel sections lastprivate directive. -2.0 -omp parallel sections lastprivate -omp critical,omp parallel sections private - - INTEGER FUNCTION par_section_lastprivate() - IMPLICIT NONE - INTEGER sum, sum0, known_sum, i ,i0 - sum = 0 - sum0 = 0 - i0 = -1 -!$omp parallel sections lastprivate(i0)private(i0) private(i,sum0) -!$omp section - sum0 = 0 - DO i=1, 399 - sum0 = sum0 + i - i0=i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=400, 699 - sum0 = sum0 + i - i0 = i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=700, 999 - sum0 = sum0 + i - i0 = i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end parallel sections - known_sum = (999*1000)/2 -! print *, "sum", sum, "ks", known_sum, i0 - IF ( known_sum .EQ. sum .AND. i0 .EQ. 999 ) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/par_section_private.f =================================================================== --- openmp/trunk/testsuite/fortran/par_section_private.f +++ openmp/trunk/testsuite/fortran/par_section_private.f @@ -1,86 +0,0 @@ - -Test which checks the parallel section private clause. -2.0 -omp parallel section private -omp critical - - INTEGER FUNCTION par_section_private() - IMPLICIT NONE - INTEGER sum, sum0, known_sum, i - sum = 7 - sum0 = 0 -!$omp parallel sectionsprivate(sum0,i)private(i) -!$omp section - sum0 = 0 - DO i=1, 399 - sum0 = sum0 + i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=400, 699 - sum0 = sum0 + i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=700, 999 - sum0 = sum0 + i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end parallel sections - known_sum = (999*1000)/2+7 - IF ( known_sum .eq. sum ) then - = 1 - ELSE - = 0 - END IF - END - - - - integer function crschk_par_section_private() - implicit none - integer sum, sum0, known_sum, i - sum = 7 - sum0 = 0 -!$omp parallel sections private(i) -!$omp section - sum0 = 0 - do i=1, 399 - sum0 = sum0 + i - end do -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - do i=400, 699 - sum0 = sum0 + i - end do -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - do i=700, 999 - sum0 = sum0 + i - end do -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end parallel sections - known_sum = (999*1000)/2+7 - if ( known_sum .eq. sum ) then - crschk_par_section_private = 1 - else - crschk_par_section_private = 0 - end if - end - Index: openmp/trunk/testsuite/fortran/par_section_reduct.f =================================================================== --- openmp/trunk/testsuite/fortran/par_section_reduct.f +++ openmp/trunk/testsuite/fortran/par_section_reduct.f @@ -1,631 +0,0 @@ - -Test which checks the omp parallel sections reduction directive with all its option. -2.0 -omp parallel sections reduction - - INTEGER FUNCTION par_section_reduct() - IMPLICIT NONE - INTEGER sum, sum2, known_sum, i, i2,diff - INTEGER product,known_product,int_const - INTEGER MAX_FACTOR - DOUBLE PRECISION dsum,dknown_sum,dt,dpt - DOUBLE PRECISION rounding_error, ddiff - INTEGER DOUBLE_DIGITS - LOGICAL logic_and, logic_or, logic_eqv,logic_neqv - INTEGER bit_and, bit_or - INTEGER exclusiv_bit_or - INTEGER min_value, max_value - DOUBLE PRECISION dmin, dmax - INTEGER result - INCLUDE "omp_testsuite.f" - LOGICAL logics(LOOPCOUNT) - INTEGER int_array(LOOPCOUNT) - DOUBLE PRECISION d_array(LOOPCOUNT) - PARAMETER (int_const=10,known_product=3628800) - PARAMETER (DOUBLE_DIGITS=20,MAX_FACTOR=10) - PARAMETER (rounding_error=1.E-6) - - INTEGER cut1, cut2, cut3, cut4 - - dt = 1./3. - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - product = 1 - sum2 = 0 - sum = 0 - dsum = 0. - result =0 - logic_and = .TRUE. - logic_or = .FALSE. - bit_and = 1 - bit_or = 0 - exclusiv_bit_or = 0 - cut1 = NINT(LOOPCOUNT / 3.) - cut2 = cut1 + 1 - cut3 = 2 * cut1 - cut4 = cut3 + 1 - -!$omp parallel sections private(i) reduction(+:sum) -!$omp section - DO i =1, cut1 - sum = sum + i - END DO -!$omp section - DO i =cut2, cut3 - sum = sum + i - END DO -!$omp section - DO i =cut4, LOOPCOUNT - sum = sum + i - END DO -!$omp end parallel sections - - IF (known_sum .NE. sum) THEN - result = result + 1 - WRITE(1,*) "Error in sum with integers: Result was ", - & sum,"instead of ", known_sum - END IF - - diff = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - - -!$omp parallel sections reduction (-: diff) -!$omp section - DO i =1, cut1 - diff = diff - i - END DO -!$omp section - DO i =cut2, cut3 - diff = diff - i - END DO -!$omp section - DO i =cut4, LOOPCOUNT - diff = diff - i - END DO -!$omp end parallel sections - - IF ( diff .NE. 0 ) THEN - result = result + 1 - WRITE(1,*) "Error in difference with integers: Result was ", - & sum,"instead of 0." - END IF - -!... Test for doubles - dsum =0. - dpt = 1 - - DO i=1, DOUBLE_DIGITS - dpt= dpt * dt - END DO - dknown_sum = (1-dpt)/(1-dt) -!$omp parallel sections reduction(+:dsum) -!$omp section - DO i=0,6 - dsum = dsum + dt**i - END DO -!$omp section - DO i=7,12 - dsum = dsum + dt**i - END DO -!$omp section - DO i=13,DOUBLE_DIGITS-1 - dsum = dsum + dt**i - END DO -!$omp end parallel sections - - - IF(dsum .NE. dknown_sum .AND. - & ABS(dsum - dknown_sum) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in sum with doubles: Result was ", - & dsum,"instead of ",dknown_sum,"(Difference: ", - & dsum - dknown_sum,")" - END IF - dpt = 1 - - - - DO i=1, DOUBLE_DIGITS - dpt = dpt*dt - END DO - ddiff = ( 1-dpt)/(1-dt) -!$omp parallel sections reduction(-:ddiff) -!$omp section - DO i=0, 6 - ddiff = ddiff - dt**i - END DO -!$omp section - DO i=7, 12 - ddiff = ddiff - dt**i - END DO -!$omp section - DO i=13, DOUBLE_DIGITS-1 - ddiff = ddiff - dt**i - END DO -!$omp end parallel sections - - IF ( ABS(ddiff) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in Difference with doubles: Result was ", - & ddiff,"instead of 0.0" - END IF - -!$omp parallel sections reduction(*:product) -!$omp section - DO i=1,3 - product = product * i - END DO -!$omp section - DO i=4,6 - product = product * i - END DO -!$omp section - DO i=7,10 - product = product * i - END DO -!$omp end parallel sections - - IF (known_product .NE. product) THEN - result = result + 1 - WRITE(1,*) "Error in Product with integers: Result was ", - & product," instead of",known_product - END IF - - DO i=1,LOOPCOUNT - logics(i) = .TRUE. - END DO - -!$omp parallel sections reduction(.AND.:logic_and) -!$omp section - DO i=1,cut1 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp end parallel sections - - if (.not. logic_and) then - result = result + 1 - write(1,*) "Error in logic AND part 1" - end if - - - logic_and = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel sections reduction(.AND.:logic_and) -!$omp section - DO i=1,cut1 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp end parallel sections - - IF (logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND pass 2" - END IF - - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - -!$omp parallel sections reduction(.OR.:logic_or) -!$omp section - DO i = 1, cut1 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i = cut2, cut3 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - logic_or = logic_or .OR. logics(i) - END DO -!$omp end parallel sections - - IF (logic_or) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 1" - END IF - - logic_or = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel sections reduction(.OR.:logic_or) -!$omp section - DO i=1,cut1 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_or = logic_or .OR. logics(i) - END DO -!$omp end parallel sections - - IF ( .NOT. logic_or ) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 2" - END IF - -!... Test logic EQV, unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .TRUE. - END DO - - logic_eqv = .TRUE. - -!$omp parallel sections reduction(.EQV.:logic_eqv) -!$omp section - DO i = 1, cut1 - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp section - DO i = cut2, cut3 - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end parallel sections - - IF (.NOT. logic_eqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 1" - END IF - - logic_eqv = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel sections reduction(.EQV.:logic_eqv) -!$omp section - DO i=1,cut1 - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp end parallel sections - - IF ( logic_eqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 2" - END IF - -!... Test logic NEQV, which is unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - - logic_neqv = .FALSE. - -!$omp parallel sections reduction(.NEQV.:logic_neqv) -!$omp section - DO i = 1, cut1 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i = cut2, cut3 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp end parallel sections - - IF (logic_neqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 1" - END IF - - logic_neqv = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel sections reduction(.NEQV.:logic_neqv) -!$omp section - DO i=1,cut1 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp end parallel sections - - IF ( .NOT. logic_neqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 1 - END DO -!$omp parallel sections reduction(IAND:bit_and) -!... iand(I,J): Returns value resulting from boolean AND of -!... pair of bits in each of I and J. -!$omp section - DO i=1, cut1 - bit_and = IAND(bit_and,int_array(i)) - END DO -!$omp section - DO i=cut2, cut3 - bit_and = IAND(bit_and,int_array(i)) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_and = IAND(bit_and,int_array(i)) - END DO -!$omp end parallel sections - - IF ( bit_and .LT. 1 ) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 1" - END IF - - bit_and = 1 - int_array(LOOPCOUNT/2) = 0 - -!$omp parallel sections reduction(IAND:bit_and) -!$omp section - DO i=1, cut1 - bit_and = IAND ( bit_and, int_array(i) ) - END DO -!$omp section - DO i=cut2, cut3 - bit_and = IAND ( bit_and, int_array(i) ) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_and = IAND ( bit_and, int_array(i) ) - END DO -!$omp end parallel sections - - IF( bit_and .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - - -!$omp parallel sections reduction(IOR:bit_or) -!... Ior(I,J): Returns value resulting from boolean OR of -!... pair of bits in each of I and J. -!$omp section - DO i=1, cut1 - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut2, cut3 - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp end parallel sections - - IF ( bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 1" - END IF - - - bit_or = 0 - int_array(LOOPCOUNT/2) = 1 -!$omp parallel sections reduction(IOR:bit_or) -!$omp section - DO i=1, cut1 - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut2, cut3 - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_or = IOR(bit_or, int_array(i) ) - END DO -!$omp end parallel sections - - IF ( bit_or .LE. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - -!$omp parallel sections reduction(IEOR:exclusiv_bit_or) -!$omp section - DO i = 1, cut1 - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut2, cut3 - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp end parallel sections - - IF ( exclusiv_bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 1" - END IF - - exclusiv_bit_or = 0 - int_array(LOOPCOUNT/2) = 1 - -!$omp parallel sections reduction(IEOR:exclusiv_bit_or) -!$omp section - DO i = 1, cut1 - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut2, cut3 - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - exclusiv_bit_or = IEOR(exclusiv_bit_or, int_array(i)) - END DO -!$omp end parallel sections - - IF ( exclusiv_bit_or .LE. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 2" - END IF - - DO i=1,LOOPCOUNT - int_array(i) = 10 - i - END DO - - min_value = 65535 - -!$omp parallel sections reduction(MIN:min_value) -!$omp section - DO i = 1, cut1 - min_value = MIN(min_value,int_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - min_value = MIN(min_value,int_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - min_value = MIN(min_value,int_array(i) ) - END DO -!$omp end parallel sections - - IF ( min_value .GT. (10-LOOPCOUNT) )THEN - result = result + 1 - WRITE(1,*) "Error in integer MIN" - END IF - - - DO i=1,LOOPCOUNT - int_array(i) = i - END DO - - max_value = -32768 - -!$omp parallel sections reduction(MAX:max_value) -!$omp section - DO i = 1, cut1 - max_value = MAX(max_value,int_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - max_value = MAX(max_value,int_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - max_value = MAX(max_value,int_array(i) ) - END DO -!$omp end parallel sections - - IF ( max_value .LT. LOOPCOUNT )THEN - result = result + 1 - WRITE(1,*) "Error in integer MAX" - END IF - -!... test double min, max - DO i=1,LOOPCOUNT - d_array(i) = 10 - i*dt - END DO - - dmin = 2**10 - dt = 0.5 - -!$omp parallel sections reduction(MIN:dmin) -!$omp section - DO i = 1, cut1 - dmin= MIN(dmin,d_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - dmin= MIN(dmin,d_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - dmin= MIN(dmin,d_array(i) ) - END DO -!$omp end parallel sections - - IF ( dmin .GT. (10-dt) )THEN - result = result + 1 - WRITE(1,*) "Error in double MIN" - END IF - - - DO i=1,LOOPCOUNT - d_array(i) = i * dt - END DO - - dmax= - (2**10) - -!$omp parallel sections reduction(MAX:dmax) -!$omp section - DO i = 1, cut1 - dmax= MAX(dmax,d_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - dmax= MAX(dmax,d_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - dmax= MAX(dmax,d_array(i) ) - END DO -!$omp end parallel sections - - IF ( dmax .lt. LOOPCOUNT*dt )THEN - result = result + 1 - write(1,*) "Error in double MAX" - END IF - - IF ( result .EQ. 0 ) THEN - = 1 - ELSE - = 0 - END IF - - CLOSE(2) - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/section_firstprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/section_firstprivate.f +++ openmp/trunk/testsuite/fortran/section_firstprivate.f @@ -1,41 +0,0 @@ - -Test which checks the omp section firstprivate directive by adding a variable which is defined before the parallel region. -2.0 -omp firstprivate - - INTEGER FUNCTION section_firstprivate() - IMPLICIT NONE - INTEGER known_sum - - INTEGER sum,sum0 - COMMON /orphvars/ sum,sum0 - - sum = 7 - sum0 = 11 -!$omp parallel - -!$omp sections firstprivate(sum0)private(sum0) -!$omp section -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end sections - -!$omp end parallel - known_sum = 11*3+7 - IF ( known_sum .EQ. sum) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/section_lastprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/section_lastprivate.f +++ openmp/trunk/testsuite/fortran/section_lastprivate.f @@ -1,62 +0,0 @@ - -Test which checks the omp section lastprivate directive. -2.0 -omp section lastprivate - - INTEGER FUNCTION section_lastprivate() - INTEGER known_sum - - - INTEGER i, i0, sum, sum0 - COMMON /orphvars/ i,i0,sum - - - sum = 0 - sum0 = 0 - i0 = -1 - -!$omp parallel - -!$omp sections lastprivate(i0)private(i0) private(i,sum0) -!$omp section - sum0 = 0 - DO i=1, 399 - sum0 = sum0 + i - i0 = i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=400, 699 - sum0 = sum0 + i - i0 = i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=700, 999 - sum0 = sum0 + i - i0 = i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end sections - -!$omp end parallel - - known_sum = (999*1000)/2 - IF ( known_sum .EQ. sum .AND. i0 .EQ. 999 ) THEN - = 1 - ELSE - = 0 - END IF - END - - - - Index: openmp/trunk/testsuite/fortran/section_private.f =================================================================== --- openmp/trunk/testsuite/fortran/section_private.f +++ openmp/trunk/testsuite/fortran/section_private.f @@ -1,55 +0,0 @@ - -Test which checks the parallel section private clause. -2.0 -omp parallel section private -omp critical - - INTEGER FUNCTION section_private() - IMPLICIT NONE - INTEGER known_sum - - INTEGER sum,sum0,i - COMMON /orphvars/ sum,sum0,i - - - sum = 7 - sum0 = 0 -!$omp parallel - -!$omp sections private(sum0,i)private(i) -!$omp section - sum0 = 0 - DO i=1, 399 - sum0 = sum0 + i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=400, 699 - sum0 = sum0 + i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp section - sum0 = 0 - DO i=700, 999 - sum0 = sum0 + i - END DO -!$omp critical - sum = sum + sum0 -!$omp end critical -!$omp end sections - -!$omp end parallel - known_sum = (999*1000)/2+7 - IF ( known_sum .EQ. sum) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/section_reduction.f =================================================================== --- openmp/trunk/testsuite/fortran/section_reduction.f +++ openmp/trunk/testsuite/fortran/section_reduction.f @@ -1,743 +0,0 @@ - -Test which checks the omp sections reduction directive with all its options. -2.0 -omp sections reduction - - INTEGER FUNCTION section_reduction() - IMPLICIT NONE - INTEGER sum2, known_sum, i2 - INTEGER known_product,int_const - INTEGER MAX_FACTOR - DOUBLE PRECISION dknown_sum,dpt - INTEGER result - INCLUDE "omp_testsuite.f" - PARAMETER (int_const=10,known_product=3628800) - - - INTEGER i,dummy - INTEGER sum, dIFf - DOUBLE PRECISION dt - DOUBLE PRECISION dsum, ddIFf - INTEGER product - LOGICAL logics(LOOPCOUNT) - INTEGER int_array(LOOPCOUNT) - LOGICAL logic_and, logic_or, logic_eqv,logic_neqv - INTEGER bit_and, bit_or - INTEGER exclusiv_bit_or - INTEGER min_value, max_value - DOUBLE PRECISION d_array(LOOPCOUNT) - DOUBLE PRECISION dmin, dmax - - INTEGER DOUBLE_DIGITS - INTEGER cut1, cut2, cut3, cut4 - PARAMETER (DOUBLE_DIGITS=20,MAX_FACTOR=10) - DOUBLE PRECISION rounding_error - PARAMETER (rounding_error=1.E-6) - - COMMON /orphvars/ i,sum,dIFf,product,dt,dsum,ddIFf,logic_and, - & logic_or,logic_eqv,logic_neqv,logics,int_array,bit_and,bit_or, - & exclusiv_bit_or,min_value,dmin,dmax,d_array,max_value - - cut1 = NINT(LOOPCOUNT / 3.3) - cut2 = cut1 + 1 - cut3 = cut1 * 2 - cut4 = cut3 + 1 - - - - dt = 1./3. - known_sum = (LOOPCOUNT * (LOOPCOUNT + 1)) / 2 - product = 1 - sum2 = 0 - sum = 0 - dsum = 0. - result =0 - logic_and = .true. - logic_or = .false. - bit_and = 1 - bit_or = 0 - exclusiv_bit_or = 0 - cut1 = NINT(LOOPCOUNT / 3.3) - cut2 = cut1 + 1 - cut3 = cut1 * 2 - cut4 = cut3 + 1 - -!$omp parallel - -!$omp sections private(i) reduction(+:sum) -!$omp section - DO i =1, cut1 - sum = sum + i - END DO -!$omp section - DO i =cut2, cut3 - sum = sum + i - END DO -!$omp section - DO i =cut4, LOOPCOUNT - sum = sum + i - END DO -!$omp END sections - -!$omp END parallel - - IF (known_sum .NE. sum) THEN - result = result + 1 - WRITE(1,*) "Error in sum with integers: Result was ", - & sum,"instead of ", known_sum - END IF - - dIFf = known_sum - - - -!$omp parallel - -!$omp sections reduction (-: dIFf) -!$omp section - DO i =1, cut1 - dIFf = dIFf - i - END DO -!$omp section - DO i =cut2, cut3 - dIFf = dIFf - i - END DO -!$omp section - DO i =cut4, LOOPCOUNT - dIFf = dIFf - i - END DO -!$omp END sections - -!$omp END parallel - - IF ( dIFf .NE. 0 ) THEN - result = result + 1 - WRITE(1,*) "Error in dIFference with integers: Result was ", - & sum,"instead of 0." - END IF - -!**********************************************************************! -! Test for DOubles -!**********************************************************************! - dsum = 0. - dpt = 1 - - DO i=1, DOUBLE_DIGITS - dpt= dpt * dt - END DO - dknown_sum = (1-dpt)/(1-dt) - -!$omp parallel - -!$omp sections reduction(+:dsum) -!$omp section - DO i=0,6 - dsum = dsum + dt**i - END DO -!$omp section - DO i=7,12 - dsum = dsum + dt**i - END DO -!$omp section - DO i=13,DOUBLE_DIGITS-1 - dsum = dsum + dt**i - END DO -!$omp END sections - -!$omp END parallel - - - IF (dsum .NE. dknown_sum .AND. - & abs(dsum - dknown_sum) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in sum with DOubles: Result was ", - & dsum,"instead of ",dknown_sum,"(DIFference: ", - & dsum - dknown_sum,")" - END IF - - dpt = 1 - DO i=1, DOUBLE_DIGITS - dpt = dpt*dt - END DO - - ddIFf = ( 1-dpt)/(1-dt) -!$omp parallel -!$omp sections reduction(-:ddIFf) -!$omp section - DO i=0, 6 - ddIFf = ddIFf - dt**i - END DO -!$omp section - DO i=7, 12 - ddIFf = ddIFf - dt**i - END DO -!$omp section - DO i=13, DOUBLE_DIGITS-1 - ddIFf = ddIFf - dt**i - END DO -!$omp END sections -!$omp END parallel - - IF ( abs(ddIFf) .GT. rounding_error ) THEN - result = result + 1 - WRITE(1,*) "Error in DIFference with DOubles: Result was ", - & ddIFf,"instead of 0.0" - END IF - -!$omp parallel - -!$omp sections reduction(*:product) -!$omp section - DO i=1,3 - product = product * i - END DO -!$omp section - DO i=4,6 - product = product * i - END DO -!$omp section - DO i=7,10 - product = product * i - END DO -!$omp END sections - -!$omp END parallel - - IF (known_product .NE. product) THEN - result = result + 1 - WRITE(1,*) "Error in Product with integers: Result was ", - & product," instead of",known_product - END IF - - DO i=1,LOOPCOUNT - logics(i) = .TRUE. - END DO - -!$omp parallel - -!$omp sections reduction(.and.:logic_and) -!$omp section - DO i=1,cut1 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF (.NOT. logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND part 1" - END IF - - - logic_and = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel - -!$omp sections reduction(.and.:logic_and) -!$omp section - DO i=1,cut1 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_and = logic_and .AND. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_and = logic_and .AND. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF (logic_and) THEN - result = result + 1 - WRITE(1,*) "Error in logic AND pass 2" - END IF - - DO i=1, LOOPCOUNT - logics(i) = .FALSE. - END DO - -!$omp parallel - -!$omp sections reduction(.or.:logic_or) -!$omp section - DO i = 1, cut1 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i = cut2, cut3 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - logic_or = logic_or .OR. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF (logic_or) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 1" - END IF - - logic_or = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel - -!$omp sections reduction(.or.:logic_or) -!$omp section - DO i=1,cut1 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_or = logic_or .OR. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_or = logic_or .OR. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF ( .NOT. logic_or ) THEN - result = result + 1 - WRITE(1,*) "Error in logic OR part 2" - END IF - -!... Test logic EQV, unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .TRUE. - END DO - - logic_eqv = .TRUE. - -!$omp parallel - -!$omp sections reduction(.eqv.:logic_eqv) -!$omp section - DO i = 1, cut1 - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp section - DO i = cut2, cut3 - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF (.NOT. logic_eqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 1" - END IF - - logic_eqv = .TRUE. - logics(LOOPCOUNT/2) = .FALSE. - -!$omp parallel - -!$omp sections reduction(.eqv.:logic_eqv) -!$omp section - DO i=1,cut1 - logic_eqv = logic_eqv .EQV. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_eqv = logic_eqv .eqv. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_eqv = logic_eqv .eqv. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF ( logic_eqv ) THEN - result = result + 1 - WRITE(1,*) "Error in logic EQV part 2" - END IF - -!... Test logic NEQV, which is unique in Fortran - DO i=1, LOOPCOUNT - logics(i) = .false. - END DO - - logic_neqv = .false. - -!$omp parallel - -!$omp sections reduction(.neqv.:logic_neqv) -!$omp section - DO i = 1, cut1 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i = cut2, cut3 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF (logic_neqv) THEN - result = result + 1 - WRITE(1,*) "Error in logic NEQV part 1" - END IF - - logic_neqv = .FALSE. - logics(LOOPCOUNT/2) = .TRUE. - -!$omp parallel - -!$omp sections reduction(.neqv.:logic_neqv) -!$omp section - DO i=1,cut1 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i=cut2,cut3 - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp section - DO i=cut4,LOOPCOUNT - logic_neqv = logic_neqv .NEQV. logics(i) - END DO -!$omp END sections - -!$omp END parallel - - IF ( .NOT. logic_neqv ) THEN - result = result + 1 - write(1,*) "Error in logic NEQV part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 1 - END DO - -!$omp parallel - -!$omp sections reduction(iand:bit_and) -!... iand(I,J): Returns value resulting from boolean AND of -!... pair of bits in each of I and J. -!$omp section - DO i=1, cut1 - bit_and = iand(bit_and,int_array(i)) - END DO -!$omp section - DO i=cut2, cut3 - bit_and = iand(bit_and,int_array(i)) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_and = iand(bit_and,int_array(i)) - END DO -!$omp END sections - -!$omp END parallel - - IF ( bit_and .lt. 1 ) THEN - result = result + 1 - write(1,*) "Error in IAND part 1" - END IF - - bit_and = 1 - int_array(LOOPCOUNT/2) = 0 - -!$omp parallel - -!$omp sections reduction(iand:bit_and) -!$omp section - DO i=1, cut1 - bit_and = iand ( bit_and, int_array(i) ) - END DO -!$omp section - DO i=cut2, cut3 - bit_and = iand ( bit_and, int_array(i) ) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_and = iand ( bit_and, int_array(i) ) - END DO -!$omp END sections - -!$omp END parallel - - IF( bit_and .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in IAND part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - - -!$omp parallel - -!$omp sections reduction(ior:bit_or) -!... Ior(I,J): Returns value resulting from boolean OR of -!... pair of bits in each of I and J. -!$omp section - DO i=1, cut1 - bit_or = ior(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut2, cut3 - bit_or = ior(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_or = ior(bit_or, int_array(i) ) - END DO -!$omp END sections - -!$omp END parallel - - IF ( bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 1" - END IF - - - bit_or = 0 - int_array(LOOPCOUNT/2) = 1 -!$omp parallel - -!$omp sections reduction(ior:bit_or) -!$omp section - DO i=1, cut1 - bit_or = Ior(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut2, cut3 - bit_or = Ior(bit_or, int_array(i) ) - END DO -!$omp section - DO i=cut4, LOOPCOUNT - bit_or = Ior(bit_or, int_array(i) ) - END DO -!$omp END sections - -!$omp END parallel - - IF ( bit_or .LE. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ior part 2" - END IF - - DO i=1, LOOPCOUNT - int_array(i) = 0 - END DO - -!$omp parallel - -!$omp sections reduction(ieor:exclusiv_bit_or) -!$omp section - DO i = 1, cut1 - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut2, cut3 - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp END sections - -!$omp END parallel - - IF ( exclusiv_bit_or .GE. 1) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 1" - END IF - - exclusiv_bit_or = 0 - int_array(LOOPCOUNT/2) = 1 - -!$omp parallel - -!$omp sections reduction(ieor:exclusiv_bit_or) -!$omp section - DO i = 1, cut1 - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut2, cut3 - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - exclusiv_bit_or = ieor(exclusiv_bit_or, int_array(i)) - END DO -!$omp END sections - -!$omp END parallel - - IF ( exclusiv_bit_or .LE. 0) THEN - result = result + 1 - WRITE(1,*) "Error in Ieor part 2" - END IF - - DO i=1,LOOPCOUNT - int_array(i) = 10 - i - END DO - - min_value = 65535 - -!$omp parallel - -!$omp sections reduction(min:min_value) -!$omp section - DO i = 1, cut1 - min_value = min(min_value,int_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - min_value = min(min_value,int_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - min_value = min(min_value,int_array(i) ) - END DO -!$omp END sections - -!$omp END parallel - - IF ( min_value .GT. (10-LOOPCOUNT) ) THEN - result = result + 1 - WRITE(1,*) "Error in integer MIN" - END IF - - - DO i=1,LOOPCOUNT - int_array(i) = i - END DO - - max_value = -32768 - -!$omp parallel - -!$omp sections reduction(max:max_value) -!$omp section - DO i = 1, cut1 - max_value = max(max_value,int_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - max_value = max(max_value,int_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - max_value = max(max_value,int_array(i) ) - END DO -!$omp END sections - -!$omp END parallel - - IF ( max_value .LT. LOOPCOUNT ) THEN - result = result + 1 - WRITE(1,*) "Error in integer MAX" - END IF - -!... test DOuble min, max - DO i=1,LOOPCOUNT - d_array(i) = 10 - i*dt - END DO - - dmin = 2**10 - dt = 0.5 - -!$omp parallel - -!$omp sections reduction(min:dmin) -!$omp section - DO i = 1, cut1 - dmin= min(dmin,d_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - dmin= min(dmin,d_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - dmin= min(dmin,d_array(i) ) - END DO -!$omp END sections - -!$omp END parallel - - IF ( dmin .GT. (10-dt) ) THEN - result = result + 1 - WRITE(1,*) "Error in DOuble MIN" - END IF - - - DO i=1,LOOPCOUNT - d_array(i) = i * dt - END DO - - dmax= - (2**10) - -!$omp parallel - -!$omp sections reduction(max:dmax) -!$omp section - DO i = 1, cut1 - dmax= max(dmax,d_array(i) ) - END DO -!$omp section - DO i = cut2, cut3 - dmax= max(dmax,d_array(i) ) - END DO -!$omp section - DO i = cut4, LOOPCOUNT - dmax= max(dmax,d_array(i) ) - END DO -!$omp END sections - -!$omp END parallel - - IF ( dmax .LT. LOOPCOUNT*dt ) THEN - result = result + 1 - WRITE(1,*) "Error in DOuble MAX" - END IF - - IF ( result .EQ. 0 ) THEN - = 1 - ELSE - = 0 - END IF - - CLOSE(2) - - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/single_copyprivate.f =================================================================== --- openmp/trunk/testsuite/fortran/single_copyprivate.f +++ openmp/trunk/testsuite/fortran/single_copyprivate.f @@ -1,41 +0,0 @@ - -Test which checks the omp single copyprivate directive. -2.0 -omp single copyprivate -omp parllel,omp critical - - INTEGER FUNCTION single_copyprivate() - IMPLICIT NONE - INTEGER omp_get_thread_num - INCLUDE "omp_testsuite.f" - - INTEGER i,j,thread,nr_iterations,result - COMMON /orphvars/ nr_iterations,result - - - result=0 - nr_iterations=0 - -!$omp parallel private(i,j,thread) - - DO i=0,LOOPCOUNT-1 - thread=OMP_GET_THREAD_NUM() -!$omp single - nr_iterations=nr_iterations+1 - j=i -!$omp end single copyprivate(j) -!$omp critical - result=result+j-i; -!$omp end critical - END DO - -!$omp end parallel - IF(result .EQ. 0 .AND. - & nr_iterations .EQ. LOOPCOUNT) THEN - =1 - ELSE - =0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/single_nowait.f =================================================================== --- openmp/trunk/testsuite/fortran/single_nowait.f +++ openmp/trunk/testsuite/fortran/single_nowait.f @@ -1,50 +0,0 @@ - - -2.0 -omp single nowait -omp critical,omp atomic - - INTEGER FUNCTION single_nowait() - IMPLICIT NONE - INTEGER result, total_iterations, my_iterations,i - INCLUDE "omp_testsuite.f" - - INTEGER nr_iterations - COMMON /orphvars/ nr_iterations - - - result=0 - nr_iterations=0 - total_iterations=0 - my_iterations=0 - -!$omp parallel private(i) - DO i=0, LOOPCOUNT -1 - -!$omp single -!$omp atomic - nr_iterations = nr_iterations + 1 -!$omp end single nowait - - END DO -!$omp end parallel -!$omp parallel private(i,my_iterations) - my_iterations = 0 - DO i=0, LOOPCOUNT -1 -!$omp single - my_iterations = my_iterations + 1 -!$omp end single nowait - END DO -!$omp critical - total_iterations = total_iterations + my_iterations -!$omp end critical -!$omp end parallel - IF ( nr_iterations .EQ. LOOPCOUNT .AND. - & total_iterations .EQ. LOOPCOUNT ) THEN - = 1 - ELSE - = 0 - END IF - END FUNCTION - - Index: openmp/trunk/testsuite/fortran/single_private.f =================================================================== --- openmp/trunk/testsuite/fortran/single_private.f +++ openmp/trunk/testsuite/fortran/single_private.f @@ -1,51 +0,0 @@ - -Test which checks the omp single private directive. -2.0 -omp singel private -omp critical,omp flush,omp single nowait - - INTEGER FUNCTION single_private() - IMPLICIT NONE - INTEGER nr_iterations, i - - INTEGER result - INTEGER nr_threads_in_single, myresult, myit - COMMON /orphvars/ result,nr_iterations - - INCLUDE "omp_testsuite.f" - nr_threads_in_single=0 - result=0 - myresult=0 - myit=0 - nr_iterations=0 -!$omp parallel private(i, myresult, myit) - - myresult = 0 - myit = 0 - nr_threads_in_single=0 -!$omp barrier - DO i=0, LOOPCOUNT -1 -!$omp single private(nr_threads_in_single) - nr_threads_in_single = 0 -!$omp flush - nr_threads_in_single = nr_threads_in_single + 1 -!$omp flush - myit = myit + 1 - myresult = myresult + nr_threads_in_single -!$omp end single nowait - END DO -!$omp critical - result = result + nr_threads_in_single - nr_iterations = nr_iterations + myit -!$omp end critical - -!$omp end parallel - WRITE(1,*) "result is",result,"nr_it is",nr_iterations - IF ( result .EQ. 0 .AND. nr_iterations .EQ. LOOPCOUNT) THEN - = 1 - ELSE - = 0 - END IF - END - - Index: openmp/trunk/testsuite/fortran/testlist-f.txt =================================================================== --- openmp/trunk/testsuite/fortran/testlist-f.txt +++ openmp/trunk/testsuite/fortran/testlist-f.txt @@ -1,45 +0,0 @@ -do_firstprivate.f -do_lastprivate -do_ordered -do_private -do_reduction -#do_schedule_dynamic -#do_schedule_guided -#do_schedule_static -has_openmp -#omp_atomic -omp_barrier -omp_copyin -omp_critical -#omp_flush -omp_get_num_threads -omp_in_parallel -omp_lock -omp_master -omp_nest_lock -omp_nest_testlock -omp_nested -omp_num_threads -omp_testlock -omp_testsuite -omp_threadprivate -#omp_ticks_time -#omp_workshare -#omp_wtime -#par_dofirstprivate -#par_do_lastprivate -#par_do_ordered -#par_do_private -#par_do_reduction -#par_sectionirstprivate.f -#par_section_lastprivate -#par_section_private -#par_section_reduction -#sectionirstprivate.f -#section_lastprivate -#section_private -#section_reduction -#single -#single_copyprivate -#single_nowait -#single_private Index: openmp/trunk/testsuite/omp_my_sleep.h =================================================================== --- openmp/trunk/testsuite/omp_my_sleep.h +++ openmp/trunk/testsuite/omp_my_sleep.h @@ -1,35 +0,0 @@ -#ifndef MY_SLEEP_H -#define MY_SLEEP_H - -#include -#include -#include - -#include -#include -#include -#include - -/*! Utility function to have a sleep function with better resolution and which only stops one thread. */ - -static void my_sleep(double sleeptime){ - struct timeval tv; - struct timezone tzp; - double start; - double real; - if(gettimeofday(&tv,&tzp)!=0) { - perror("get_time: "); - exit(-1); - } - start = (double)tv.tv_sec + ((double)tv.tv_usec/1000000.0); - real=start; - while( (real-start) -#include - -/* Version info */ -/**********************************************************/ -#define OMPTS_VERSION "3.0a" - -/* General */ -/**********************************************************/ -#define LOOPCOUNT 1000 -#define REPETITIONS 20 -/* following times are in seconds */ -#define SLEEPTIME 0.01 -#define SLEEPTIME_LONG 0.5 - -/* Definitions for tasks */ -/**********************************************************/ -#define NUM_TASKS 25 -#define MAX_TASKS_PER_THREAD 5 -int test_omp_parallel_for_ordered(FILE * logfile); /* Test for omp parallel for ordered */ -int crosstest_omp_parallel_for_ordered(FILE * logfile); /* Crosstest for omp parallel for ordered */ -int test_omp_task_imp_firstprivate(FILE * logfile); /* Test for omp task */ -int crosstest_omp_task_imp_firstprivate(FILE * logfile); /* Crosstest for omp task */ -int test_omp_taskwait(FILE * logfile); /* Test for omp taskwait */ -int crosstest_omp_taskwait(FILE * logfile); /* Crosstest for omp taskwait */ -int test_omp_barrier(FILE * logfile); /* Test for omp barrier */ -int crosstest_omp_barrier(FILE * logfile); /* Crosstest for omp barrier */ -int test_omp_parallel_for_if(FILE * logfile); /* Test for omp parallel for if */ -int crosstest_omp_parallel_for_if(FILE * logfile); /* Crosstest for omp parallel for if */ -int test_omp_atomic(FILE * logfile); /* Test for omp atomic */ -int crosstest_omp_atomic(FILE * logfile); /* Crosstest for omp atomic */ -int test_omp_get_num_threads(FILE * logfile); /* Test for omp_get_num_threads */ -int crosstest_omp_get_num_threads(FILE * logfile); /* Crosstest for omp_get_num_threads */ -int test_omp_section_private(FILE * logfile); /* Test for omp section private */ -int crosstest_omp_section_private(FILE * logfile); /* Crosstest for omp section private */ -int test_omp_parallel_if(FILE * logfile); /* Test for omp parallel if */ -int crosstest_omp_parallel_if(FILE * logfile); /* Crosstest for omp parallel if */ -int test_omp_lock(FILE * logfile); /* Test for omp_lock */ -int crosstest_omp_lock(FILE * logfile); /* Crosstest for omp_lock */ -int test_omp_parallel_shared(FILE * logfile); /* Test for omp parallel shared */ -int crosstest_omp_parallel_shared(FILE * logfile); /* Crosstest for omp parallel shared */ -int test_omp_task_imp_shared(FILE * logfile); /* Test for omp task */ -int crosstest_omp_task_imp_shared(FILE * logfile); /* Crosstest for omp task */ -int test_omp_task_private(FILE * logfile); /* Test for omp task private */ -int crosstest_omp_task_private(FILE * logfile); /* Crosstest for omp task private */ -int test_omp_section_lastprivate(FILE * logfile); /* Test for omp section lastprivate */ -int crosstest_omp_section_lastprivate(FILE * logfile); /* Crosstest for omp section lastprivate */ -int test_omp_parallel_firstprivate(FILE * logfile); /* Test for omp parallel firstprivate */ -int crosstest_omp_parallel_firstprivate(FILE * logfile); /* Crosstest for omp parallel firstprivate */ -int test_omp_for_auto(FILE * logfile); /* Test for omp for auto */ -int crosstest_omp_for_auto(FILE * logfile); /* Crosstest for omp for auto */ -int test_omp_for_schedule_static(FILE * logfile); /* Test for omp for schedule(static) */ -int crosstest_omp_for_schedule_static(FILE * logfile); /* Crosstest for omp for schedule(static) */ -int test_omp_threadprivate_for(FILE * logfile); /* Test for omp threadprivate */ -int crosstest_omp_threadprivate_for(FILE * logfile); /* Crosstest for omp threadprivate */ -int test_omp_task_untied(FILE * logfile); /* Test for omp task untied */ -int crosstest_omp_task_untied(FILE * logfile); /* Crosstest for omp task untied */ -int test_omp_parallel_private(FILE * logfile); /* Test for omp parallel private */ -int crosstest_omp_parallel_private(FILE * logfile); /* Crosstest for omp parallel private */ -int test_omp_single_nowait(FILE * logfile); /* Test for omp single nowait */ -int crosstest_omp_single_nowait(FILE * logfile); /* Crosstest for omp single nowait */ -int test_omp_critical(FILE * logfile); /* Test for omp critical */ -int crosstest_omp_critical(FILE * logfile); /* Crosstest for omp critical */ -int test_omp_get_wtick(FILE * logfile); /* Test for omp_get_wtick */ -int crosstest_omp_get_wtick(FILE * logfile); /* Crosstest for omp_get_wtick */ -int test_omp_single(FILE * logfile); /* Test for omp single */ -int crosstest_omp_single(FILE * logfile); /* Crosstest for omp single */ -int test_omp_parallel_sections_reduction(FILE * logfile); /* Test for omp parallel sections reduction */ -int crosstest_omp_parallel_sections_reduction(FILE * logfile); /* Crosstest for omp parallel sections reduction */ -int test_omp_taskyield(FILE * logfile); /* Test for omp taskyield */ -int crosstest_omp_taskyield(FILE * logfile); /* Crosstest for omp taskyield */ -int test_has_openmp(FILE * logfile); /* Test for _OPENMP */ -int crosstest_has_openmp(FILE * logfile); /* Crosstest for _OPENMP */ -int test_omp_parallel_for_lastprivate(FILE * logfile); /* Test for omp parallel for lastprivate */ -int crosstest_omp_parallel_for_lastprivate(FILE * logfile); /* Crosstest for omp parallel for lastprivate */ -int test_omp_parallel_sections_lastprivate(FILE * logfile); /* Test for omp parallel sections lastprivate */ -int crosstest_omp_parallel_sections_lastprivate(FILE * logfile); /* Crosstest for omp parallel sections lastprivate */ -int test_omp_for_lastprivate(FILE * logfile); /* Test for omp for lastprivate */ -int crosstest_omp_for_lastprivate(FILE * logfile); /* Crosstest for omp for lastprivate */ -int test_omp_parallel_sections_firstprivate(FILE * logfile); /* Test for omp parallel sections firstprivate */ -int crosstest_omp_parallel_sections_firstprivate(FILE * logfile); /* Crosstest for omp parallel sections firstprivate */ -int test_omp_parallel_for_reduction(FILE * logfile); /* Test for omp parallel for reduction */ -int crosstest_omp_parallel_for_reduction(FILE * logfile); /* Crosstest for omp parallel for reduction */ -int test_omp_test_lock(FILE * logfile); /* Test for omp_test_lock */ -int crosstest_omp_test_lock(FILE * logfile); /* Crosstest for omp_test_lock */ -int test_omp_parallel_for_firstprivate(FILE * logfile); /* Test for omp parallel for firstprivate */ -int crosstest_omp_parallel_for_firstprivate(FILE * logfile); /* Crosstest for omp parallel for firstprivate */ -int test_omp_parallel_sections_private(FILE * logfile); /* Test for omp parallel sections private */ -int crosstest_omp_parallel_sections_private(FILE * logfile); /* Crosstest for omp parallel sections private */ -int test_omp_parallel_num_threads(FILE * logfile); /* Test for omp parellel num_threads */ -int crosstest_omp_parallel_num_threads(FILE * logfile); /* Crosstest for omp parellel num_threads */ -int test_omp_for_reduction(FILE * logfile); /* Test for omp for reduction */ -int crosstest_omp_for_reduction(FILE * logfile); /* Crosstest for omp for reduction */ -int test_omp_sections_nowait(FILE * logfile); /* Test for omp parallel sections nowait */ -int crosstest_omp_sections_nowait(FILE * logfile); /* Crosstest for omp parallel sections nowait */ -int test_omp_parallel_reduction(FILE * logfile); /* Test for omp parallel reduction */ -int crosstest_omp_parallel_reduction(FILE * logfile); /* Crosstest for omp parallel reduction */ -int test_omp_nested(FILE * logfile); /* Test for omp_nested */ -int crosstest_omp_nested(FILE * logfile); /* Crosstest for omp_nested */ -int test_omp_threadprivate(FILE * logfile); /* Test for omp threadprivate */ -int crosstest_omp_threadprivate(FILE * logfile); /* Crosstest for omp threadprivate */ -int test_omp_sections_reduction(FILE * logfile); /* Test for omp sections reduction */ -int crosstest_omp_sections_reduction(FILE * logfile); /* Crosstest for omp sections reduction */ -int test_omp_for_schedule_guided(FILE * logfile); /* Test for omp for schedule(guided) */ -int crosstest_omp_for_schedule_guided(FILE * logfile); /* Crosstest for omp for schedule(guided) */ -int test_omp_task_final(FILE * logfile); /* Test for omp task final */ -int crosstest_omp_task_final(FILE * logfile); /* Crosstest for omp task final */ -int test_omp_parallel_for_private(FILE * logfile); /* Test for omp parallel for private */ -int crosstest_omp_parallel_for_private(FILE * logfile); /* Crosstest for omp parallel for private */ -int test_omp_flush(FILE * logfile); /* Test for omp flush */ -int crosstest_omp_flush(FILE * logfile); /* Crosstest for omp flush */ -int test_omp_for_private(FILE * logfile); /* Test for omp for private */ -int crosstest_omp_for_private(FILE * logfile); /* Crosstest for omp for private */ -int test_omp_for_ordered(FILE * logfile); /* Test for omp for ordered */ -int crosstest_omp_for_ordered(FILE * logfile); /* Crosstest for omp for ordered */ -int test_omp_single_copyprivate(FILE * logfile); /* Test for omp single copyprivate */ -int crosstest_omp_single_copyprivate(FILE * logfile); /* Crosstest for omp single copyprivate */ -int test_omp_task_if(FILE * logfile); /* Test for omp task if */ -int crosstest_omp_task_if(FILE * logfile); /* Crosstest for omp task if */ -int test_omp_section_firstprivate(FILE * logfile); /* Test for omp firstprivate */ -int crosstest_omp_section_firstprivate(FILE * logfile); /* Crosstest for omp firstprivate */ -int test_omp_for_schedule_static_3(FILE * logfile); /* Test for omp for schedule(static) */ -int crosstest_omp_for_schedule_static_3(FILE * logfile); /* Crosstest for omp for schedule(static) */ -int test_omp_task_firstprivate(FILE * logfile); /* Test for omp task firstprivate */ -int crosstest_omp_task_firstprivate(FILE * logfile); /* Crosstest for omp task firstprivate */ -int test_omp_for_collapse(FILE * logfile); /* Test for omp for collapse */ -int crosstest_omp_for_collapse(FILE * logfile); /* Crosstest for omp for collapse */ -int test_omp_in_parallel(FILE * logfile); /* Test for omp_in_parallel */ -int crosstest_omp_in_parallel(FILE * logfile); /* Crosstest for omp_in_parallel */ -int test_omp_for_schedule_dynamic(FILE * logfile); /* Test for omp for schedule(dynamic) */ -int crosstest_omp_for_schedule_dynamic(FILE * logfile); /* Crosstest for omp for schedule(dynamic) */ -int test_omp_for_firstprivate(FILE * logfile); /* Test for omp for firstprivate */ -int crosstest_omp_for_firstprivate(FILE * logfile); /* Crosstest for omp for firstprivate */ -int test_omp_master(FILE * logfile); /* Test for omp master */ -int crosstest_omp_master(FILE * logfile); /* Crosstest for omp master */ -int test_omp_single_private(FILE * logfile); /* Test for omp singel private */ -int crosstest_omp_single_private(FILE * logfile); /* Crosstest for omp singel private */ -int test_omp_task(FILE * logfile); /* Test for omp task */ -int crosstest_omp_task(FILE * logfile); /* Crosstest for omp task */ -int test_omp_parallel_default(FILE * logfile); /* Test for omp parallel default */ -int crosstest_omp_parallel_default(FILE * logfile); /* Crosstest for omp parallel default */ -int test_omp_for_nowait(FILE * logfile); /* Test for omp parallel for nowait */ -int crosstest_omp_for_nowait(FILE * logfile); /* Crosstest for omp parallel for nowait */ -int test_omp_test_nest_lock(FILE * logfile); /* Test for omp_test_nest_lock */ -int crosstest_omp_test_nest_lock(FILE * logfile); /* Crosstest for omp_test_nest_lock */ -int test_omp_nest_lock(FILE * logfile); /* Test for omp_nest_lock */ -int crosstest_omp_nest_lock(FILE * logfile); /* Crosstest for omp_nest_lock */ -int test_omp_parallel_copyin(FILE * logfile); /* Test for omp parallel copyin */ -int crosstest_omp_parallel_copyin(FILE * logfile); /* Crosstest for omp parallel copyin */ -int test_omp_master_3(FILE * logfile); /* Test for omp master */ -int crosstest_omp_master_3(FILE * logfile); /* Crosstest for omp master */ -int test_omp_get_wtime(FILE * logfile); /* Test for omp_get_wtime */ -int crosstest_omp_get_wtime(FILE * logfile); /* Crosstest for omp_get_wtime */ - -#endif Index: openmp/trunk/testsuite/omp_testsuite.f =================================================================== --- openmp/trunk/testsuite/omp_testsuite.f +++ openmp/trunk/testsuite/omp_testsuite.f @@ -1,14 +0,0 @@ - INTEGER N !The number of times each test is run - PARAMETER (N=1) - CHARACTER*8 OMPTS_VERSION - PARAMETER (OMPTS_VERSION="3.0.a") - INTEGER LOOPCOUNT !The number of times each loop is run - PARAMETER (LOOPCOUNT=1000) - DOUBLE PRECISION SLEEPTIME - PARAMETER (SLEEPTIME = .01) - DOUBLE PRECISION SLEEPTIME_LONG - PARAMETER (SLEEPTIME_LONG = 0.5) - INTEGER NUM_TASKS - PARAMETER (NUM_TASKS=25) - INTEGER MAX_TASKS_PER_THREAD - PARAMETER (MAX_TASKS_PER_THREAD=5) Index: openmp/trunk/testsuite/ompts-c.conf =================================================================== --- openmp/trunk/testsuite/ompts-c.conf +++ openmp/trunk/testsuite/ompts-c.conf @@ -1,19 +0,0 @@ -#include -#include - -/* Version info */ -/**********************************************************/ -#define OMPTS_VERSION "3.0a" - -/* General */ -/**********************************************************/ -#define LOOPCOUNT 1000 -#define REPETITIONS 20 -/* following times are in seconds */ -#define SLEEPTIME 0.01 -#define SLEEPTIME_LONG 0.5 - -/* Definitions for tasks */ -/**********************************************************/ -#define NUM_TASKS 25 -#define MAX_TASKS_PER_THREAD 5 Index: openmp/trunk/testsuite/ompts-f.conf =================================================================== --- openmp/trunk/testsuite/ompts-f.conf +++ openmp/trunk/testsuite/ompts-f.conf @@ -1 +0,0 @@ -!Empty config file Index: openmp/trunk/testsuite/ompts.conf =================================================================== --- openmp/trunk/testsuite/ompts.conf +++ openmp/trunk/testsuite/ompts.conf @@ -1,26 +0,0 @@ - - -ompts.log -120 -1 -0 -OMP_NUM_THREADS=%n; export OMP_NUM_THREADS; -results.txt -8 - - - - -c -c -c -template_parser_c.pl - - -fortran -fortran -f -template_parser_fortran.pl - - - Index: openmp/trunk/testsuite/ompts_makeHeader.pl =================================================================== --- openmp/trunk/testsuite/ompts_makeHeader.pl +++ openmp/trunk/testsuite/ompts_makeHeader.pl @@ -1,101 +0,0 @@ -#!/usr/bin/perl -w - -# ompts_makeHeader [options] -f=NAME -t=DIR -# -# Creats the headerfile for the OpenMP-Testsuite out of the templatefiles -# witch are in the default/explicitely specified dir and the settings in the -# given config file. -# -# ATTENTION: -# At the moment it builts only a c-headerfile! -# -# -f=FILENAME: Using file FILENAME as configfile -# -t=DIR: Directory holding the template files -# -# options -# -i=FILENAME: Include other Headerfile. The files to be included must be specified -# after setting this option. (Not implemented yet.) -# -o=FILENAME: outputfilename (default is "omp_testsuite.h") - -$headerfile = "\/\* Global headerfile of the OpenMP Testsuite \*\/\n\n\/\* This file was created with the ompts_makeHeader.pl script using the following opions:\ *\/\n\/\* "; -if(@ARGV > 0) -{ - foreach $opt (@ARGV) - { - $headerfile .= "$opt "; - } -} -else -{ - $headerfile .= "No options were specified"; -} -$headerfile .=" \*\/\n\n\n"; - -use Getopt::Long; -GetOptions("-o=s" => \$outfile, "-f=s" =>\$configfile, "-t=s" => \$templatedir, "-i=s" => \$include); - -$include = ""; - - -# Getting and verifying the necessary options: -if(!$configfile) { - die "Config file name is missing."; -} -else { - if (!(-e $configfile)) { - die "Could not find config file $configfile."; - } -} - -if(!$templatedir) { - die "Directoryname is missing."; -} - -if(!$outfile){ - $outfile = "omp_testsuite.h"; # setting default value for the headerfile -} - - - -#@includefiles; # list holing extra includefiles specified by the user - - -# generating the head of the includeguard: -$headerfile .= "\#ifndef OMP_TESTSUITE_H\n\#define OMP_TESTSUITE_H\n\n"; - -# inserting general settings out of the configfile: -open(OMPTS_CONF,$configfile) or die "Could not open the global config file $configfile."; -while(){ - $headerfile .= $_; -} -close(OMPTS_CONF); - -# searching the tests: -opendir TEMPLATEDIR, $templatedir or die "Could not open dir $templatedir."; -@templates = grep /(.*)\.c/, readdir TEMPLATEDIR; -closedir TEMPLATEDIR; - -# inserting the function declarations: -foreach $template (@templates){ - $source = ""; - open(TEMPLATE,$templatedir."/".$template) or die "Could not open the following sourcefile: ".$templatedir."/".$template; - while(