-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.cygwin.gcc
105 lines (77 loc) · 3.09 KB
/
Makefile.cygwin.gcc
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#@HEADER
# ************************************************************************
#
# HPCCG: Simple Conjugate Gradient Benchmark Code
# Copyright (2006) Sandia Corporation
#
# Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
# license for use of this work by or on behalf of the U.S. Government.
#
# This library is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2.1 of the
# License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
# Questions? Contact Michael A. Heroux (maherou@sandia.gov)
#
# ************************************************************************
#@HEADER
# Simple hand-tuned makefile. Modify as necessary for your environment.
# Questions? Contact Mike Heroux (maherou@sandia.gov).
#
#
# 0) Specify compiler and linker:
CXX=g++
LINKER=g++
# 1) Build with MPI or not?
# If you want to run the program with MPI, make sure USE_MPI is set
# to -DUSING_MPI
#USE_MPI =
USE_MPI = -DUSING_MPI
# 2) MPI headers:
# If you:
# - Are building MPI mode (-DUSING_MPI is set above).
# - Do not have the MPI headers installed a default search directory and
# - Are not using MPI compiler wrappers
# Then specify the path to your MPI header file (include a -I)
MPI_INC = -I/usr/MPICH/SDK.gcc/include
# 3) Specify C++ compiler optimization flags (if any)
# Typically some reasonably high level of optimization should be used to
# enhance performance.
#IA32 with GCC:
#CPP_OPT_FLAGS = -O3 -funroll-all-loops -malign-double
CPP_OPT_FLAGS = -O3 -funroll-all-loops
#
# 4) MPI library:
# If you:
# - Are building MPI mode (-DUSING_MPI is set above).
# - Do not have the MPI library installed a default search directory and
# - Are not using MPI compiler wrappers for linking
# Then specify the path to your MPI library (include -L and -l directives)
MPI_LIB = -L/usr/MPICH/SDK.gcc/lib -lmpich
#
# 5) System libraries:
SYS_LIB = -lg2c -lm
#
# 6) Specify name if executable (optional):
TARGET = test_HPCCG
################### Derived Quantities (no modification required) ##############
CXXFLAGS= $(CPP_OPT_FLAGS) $(USE_MPI) $(MPI_INC)
LIB_PATHS= $(MPI_LIB) $(SYS_LIB)
TEST_CPP = main.cpp generate_matrix.cpp read_HPC_row.cpp compute_residual.cpp mytimer.cpp \
HPC_sparsemv.cpp HPCCG.cpp waxpby.cpp ddot.cpp \
make_local_matrix.cpp exchange_externals.cpp
TEST_OBJ = $(TEST_CPP:.cpp=.o)
$(TARGET): $(TEST_OBJ)
$(LINKER) $(CFLAGS) $(TEST_OBJ) $(LIB_PATHS) -o $(TARGET)
clean:
@rm -f *.o *~ $(TARGET) $(TARGET).exe