source: CIVL/examples/mpi-omp/AMG2013/Makefile.include

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#BHEADER**********************************************************************
2# Copyright (c) 2008, Lawrence Livermore National Security, LLC.
3# Produced at the Lawrence Livermore National Laboratory.
4# This file is part of HYPRE. See file COPYRIGHT for details.
5#
6# HYPRE is free software; you can redistribute it and/or modify it under the
7# terms of the GNU Lesser General Public License (as published by the Free
8# Software Foundation) version 2.1 dated February 1999.
9#
10# $Revision: 2.4 $
11#EHEADER**********************************************************************
12
13
14# set the compiler here
15CC = mpicc
16
17# set compile flags here
18# MPI only:
19# add '-DTIMER_USE_MPI' to 'INCLUDE_CFLAGS'
20# MPI with OpenMP:
21# add '-DHYPRE_USING_OPENMP -DTIMER_USE_MPI' to 'INCLUDE_CFLAGS'
22# Use assumed partition (for thousands of processors):
23# add '-DHYPRE_NO_GLOBAL_PARTITION' to 'INCLUDE_CFLAGS'
24# Use 64-bit integers for global variables (needed for large problems
25# with more than 2 billion variables)
26# add '-DHYPRE_LONG_LONG' to 'INCLUDE_CFLAGS'
27INCLUDE_CFLAGS = -O2 -DTIMER_USE_MPI -DHYPRE_USING_OPENMP -DHYPRE_LONG_LONG -DHYPRE_NO_GLOBAL_PARTITION -fopenmp
28
29# set link flags here
30#INCLUDE_LFLAGS = -lm -openmp -qsmp
31INCLUDE_LFLAGS = -lm -fopenmp
32
Note: See TracBrowser for help on using the repository browser.