1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/*
* This file is part of the Score-P software (http://www.score-p.org)
*
* Copyright (c) 2009-2011,
* RWTH Aachen University, Germany
*
* Copyright (c) 2009-2011,
* Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
*
* Copyright (c) 2009-2011,
* Technische Universitaet Dresden, Germany
*
* Copyright (c) 2009-2011,
* University of Oregon, Eugene, USA
*
* Copyright (c) 2009-2011, 2013
* Forschungszentrum Juelich GmbH, Germany
*
* Copyright (c) 2009-2011,
* German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
*
* Copyright (c) 2009-2011,
* Technische Universitaet Muenchen, Germany
*
* This software may be modified and distributed under the terms of
* a BSD-style license. See the COPYING file in the package base
* directory for details.
*
*/
#include <stdio.h>
/*Disable unknown pragma warning for the intel compiler.
* This avoids warnings for pomp pragmas if the file is
* not preprocessed with opari.*/
#ifdef __INTEL_COMPILER
#pragma warning disable 161
#endif
int
foo()
{
int i = 0;
#pragma pomp inst begin(foo)
//usefull work could be done here which changes i
printf( "Hello from foo.\n" );
if ( i == 0 )
{
#pragma pomp inst altend(foo)
return 42;
}
//other work might be done here
#pragma pomp inst end(foo)
return i;
}
int
main( int argc, char** argv )
{
#pragma pomp inst init
printf( "Hello from main.\n" );
foo();
return 0;
}
|