-
Notifications
You must be signed in to change notification settings - Fork 104
/
configure.ac
500 lines (449 loc) · 17 KB
/
configure.ac
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT([SHOC], [1.1.5], [[email protected]])
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/common/Timer.h])
AC_CONFIG_HEADERS([config/config.h])
# SHOC is a collection of C++ programs
AC_LANG([C++])
# Because of the nature of SHOC (a collection of benchmark programs),
# autoconf's default prefix (/usr/local) is not appropriate.
# Instead, we set the default installation location to be the build
# location.
AC_PREFIX_DEFAULT(`pwd`)
# Checks for fundamental programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_RANLIB
AC_CHECK_TOOL([AR], [ar], [:])
AC_PATH_PROG([PERL], [perl])
AC_PATH_PROG([UNZIP], [unzip])
# check whether special NVCXXFLAGS were specified
# if not, set default flags based on whehter we are using g++ and whether our
# C++ compiler supports -g.
# Logic based on the logic used in the AC_PROG_CXX macro.
ac_save_NVCXXFLAGS=${NVCXXFLAGS}
ac_test_NVCXXFLAGS=${NVCXXFLAGS+set}
if test "$ac_test_NVCXXFLAGS" = set
then
NVCXXFLAGS=$ac_save_NVCXXFLAGS
elif test $ac_cv_prog_cxx_g = yes
then
if test "$GXX" = yes; then
NVCXXFLAGS="-g -O2"
else
NVCXXFLAGS="-g"
fi
else
if test "$GXX" = yes
then
NVCXXFLAGS="-O2"
else
NVCXXFLAGS=
fi
fi
# on Linux, we expect that the clock_gettime function will be available,
# but it seems to require the rt library
AS_CASE([$host],
[*-*-linux*], [LIBS="$LIBS -lrt"],
[*], []
)
# Checks for header files.
AC_FUNC_ALLOCA
AC_CHECK_HEADERS([float.h stdlib.h string.h sys/time.h sys/timeb.h time.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_C_RESTRICT
AC_TYPE_SIZE_T
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_CHECK_FUNCS([clock_gettime floor gethostname gettimeofday localtime_r memset pow sqrt strdup])
AS_IF([test "x$ac_cv_func_clock_gettime" = xyes],
[ AC_MSG_CHECKING([whether clock_gettime() supports CLOCK_PROCESS_CPUTIME_ID timer])
AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
[AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_CLOCK_PROCESS_CPUTIME_ID],[1],[Define to 1 if you have the CLOCK_PROCESS_CPUTIME_ID timer for the 'clock_gettime' function])
],
[AC_MSG_RESULT([no])]
)
]
)
# OpenCL support
AC_ARG_WITH([opencl],
[AS_HELP_STRING([--with-opencl],
[build OpenCL versions of SHOC benchmark programs @<:@default=check@:>@])],
[],
[with_opencl=check])
# detect/verify we have a working OpenCL header and library
AS_IF([test "x$with_opencl" != xno],
[
# check for usable OpenCL header
# note C++ binding uses opencl.h, not just cl.h
AC_MSG_NOTICE([checking for usable OpenCL opencl.h header])
AC_CHECK_HEADER([OpenCL/opencl.h],
[OPENCL_HEADER='"OpenCL/opencl.h"'],
[AC_CHECK_HEADER([CL/opencl.h],
[OPENCL_HEADER='"CL/opencl.h"'],
[if test "x$with_opencl" != xcheck; then
AC_MSG_FAILURE([OpenCL support was requested, but no usable OpenCL header was found])
fi
]
)
]
)
AS_IF([test "x$OPENCL_HEADER" != x],
[
# we have a header, check for usable OpenCL library
# we cannot use AC_CHECK_LIB because we want to check
# using the OS X OpenCL framework, and AC_CHECK_LIB does not
# know how to use the framework linker syntax.
# (we also do not want the OpenCL libs to be added to the
# LIBS variable, and AC_CHECK_LIB does that if it succeeds)
AC_MSG_CHECKING([for usable OpenCL library])
savedLIBS=$LIBS
OPENCL_LIBS="-framework OpenCL"
LIBS="$OPENCL_LIBS $savedLIBS"
AC_LINK_IFELSE( [AC_LANG_PROGRAM([@%:@include $OPENCL_HEADER],[clGetPlatformIDs(0,0,0);])],
[AC_MSG_RESULT($OPENCL_LIBS)],
[OPENCL_LIBS="-lOpenCL"
LIBS="$OPENCL_LIBS $savedLIBS"
AC_LINK_IFELSE( [AC_LANG_PROGRAM([@%:@include $OPENCL_HEADER],[clGetPlatformIDs(0,0,0);])],
[AC_MSG_RESULT($OPENCL_LIBS)],
[AC_MSG_RESULT([no])
if test "x$with_opencl" != xcheck; then
AC_MSG_FAILURE([OpenCL support was requested, but no usable OpenCL library was found])
fi
]
)
]
)
LIBS=$savedLIBS
]
)
AS_IF([test "x$OPENCL_HEADER" != "x" -a "x$OPENCL_LIBS" != "x"],
[with_opencl=yes
MPI_SUBDIRS="$MPI_SUBDIRS opencl"
AC_SUBST([OPENCL_LIBS])
],
[AC_MSG_NOTICE([no usable OpenCL installation found])
with_opencl=no
])
])
AM_CONDITIONAL([BUILD_OPENCL], [test "x$with_opencl" = "xyes"])
# CUDA support
AC_ARG_WITH([cuda],
[AS_HELP_STRING([--with-cuda],
[build CUDA versions of SHOC benchmark programs @<:@default=check@:>@])],
[],
[with_cuda=check])
USE_CUDA=no
AS_IF([test "x$with_cuda" != xno],
[
# check for the nvcc program
AC_PATH_PROG([NVCC],[nvcc],[])
AS_IF([test "x$NVCC" != x],
[ savedCXX=$CXX
CXX=$NVCC
savedLIBS=$LIBS
savedCPPFLAGS=$CPPFLAGS
savedCXXFLAGS=$CXXFLAGS
savedLDFLAGS=$LDFLAGS
CXXFLAGS=$NVCXXFLAGS
LDFLAGS=""
# find cuda include path based on location of nvcc command
cudabindir=`AS_DIRNAME([$NVCC])`
CUDA_INCDIR=`AS_DIRNAME([$cudabindir])`/include
CPPFLAGS="$CPPFLAGS -I$CUDA_INCDIR"
AC_CHECK_HEADERS([cuda.h cuda_runtime.h],[],
[NVCC=""]
)
AC_CHECK_LIB([cublas], [cublasInit],[],
[NVCC=""]
)
AC_CHECK_LIB([cufft], [cufftPlan1d], [],
[NVCC=""]
)
# get list of supported archs
supported_NVCC_archs=""
for i in `$NVCC --help | grep -o "compute_[[0-9]][[0-9]]" | sed 's,compute,,' | sort | uniq`
do
supported_NVCC_archs+="-gencode=arch=compute$i,code=sm$i "
done
CPPFLAGS=$savedCPPFLAGS
LIBS=$savedLIBS
CXX=$savedCXX
CXXFLAGS=$savedCXXFLAGS
LDFLAGS=$savedLDFLAGS
],
[ if test "x$with_cuda" != xcheck; then
AC_MSG_FAILURE([CUDA support was requested, but no usable CUDA installation found])
fi
NVCC=""
]
)
AS_IF([test "x$NVCC" != x],
[with_cuda=yes
USE_CUDA=yes
MPI_SUBDIRS="$MPI_SUBDIRS cuda"
AC_SUBST([CUDA_INCDIR])],
[AC_MSG_NOTICE([no usable CUDA installation found])
with_cuda=no
])
AS_IF([test "x$with_cuda" = xyes],
[AS_IF([test "x$CUDA_CPPFLAGS" = x],
[dnl generate CUDA code for broad spectrum of devices
CUDA_CPPFLAGS="$supported_NVCC_archs"
AC_MSG_NOTICE([using CUDA_CPPFLAGS=$CUDA_CPPFLAGS])
AC_MSG_WARN([*** SHOC programs may fail if these -gencode values do not apply to your GPU. If they don't apply, or if you want to shorten SHOC's compile time, determine the -gencode options that apply for your GPU and re-configure SHOC explicitly specifying only those options in CUDA_CPPFLAGS during the configure. ***])
]
)
AC_SUBST([CUDA_CPPFLAGS])
]
)
]
)
AM_CONDITIONAL([BUILD_CUDA], [test "x$with_cuda" = "xyes"])
# build documentation? by default, just copy existing documentation
AC_ARG_ENABLE([builddoc],
[AS_HELP_STRING([--enable-builddoc],
[build SHOC documentation; requires pdflatex, bibtex, and latexmk @<:@default=disabled@:>@])],
[],
[enable_builddoc=no]
)
COND_BUILDDOC=no
AS_IF([test "x$enable_builddoc" = xyes],
[
AC_PATH_PROG([PDFLATEX], [pdflatex], [])
AS_IF([test "x$PDFLATEX" != x],
[
AC_PATH_PROG([BIBTEX], [bibtex], [])
AS_IF([test "x$BIBTEX" != x],
[
AC_PATH_PROG([LATEXMK], [latexmk], [])
AS_IF([test "x$LATEXMK" != x],
[
# we have been asked to build documentation,
# we have pdflatex, bibtex, and latexmk
COND_BUILDDOC=yes
]
)
]
)
]
)
AS_IF([test "x$COND_BUILDDOC" != xyes],
[
AC_MSG_FAILURE([Documentation build requested, but required tools (pdflatex, bibtex, latexmk) were not all found])
]
)
]
)
AM_CONDITIONAL([BUILD_DOC], [test "x$COND_BUILDDOC" = "xyes"])
# Unzip and move data by default, just copy existing documentation
AC_ARG_ENABLE([dataunzip],
[AS_HELP_STRING([--enable-data-unzip],
[Unzip and move SHOC data; requires unzip and cp @<:@default=enabled@:>@])],
[],
[enable_dataunzip=check]
)
COND_DATAUNZIP=no
AS_IF([test "x$enable_dataunzip" != xno],
[
#Just test to make sure unzip exists
AS_IF([test "$UNZIP" != ''],
[
# we have been asked to unzip and move data,
# we have unzip
COND_DATAUNZIP=yes
]
)
AS_IF([test "x$COND_DATAUNZIP" != xyes],
[
AC_MSG_FAILURE([Data unzip requested, but required tools (unzip) were not all found])
]
)
]
)
AM_CONDITIONAL([DATA_UNZIP], [test "x$COND_DATAUNZIP" = "xyes"])
# build stability tests? by default, enable if CUDA is enabled
AC_ARG_ENABLE([stability],
[AS_HELP_STRING([--disable-stability],
[build SHOC stability test; requires CUDA @<:@default=enabled@:>@])],
[],
[enable_stability=check]
)
COND_STABILITY=no
AS_IF([test "x$enable_stability" = xyes],
[AS_IF([test "x$with_cuda" != xno],
[COND_STABILITY=yes],
[ AC_MSG_FAILURE([CUDA-based stability test enabled but no usable CUDA installation found])
with_stability=no
]
)
],
[AS_IF([test "x$enable_stability" != xno],
[AS_IF([test "x$with_cuda" != xno],
[COND_STABILITY=yes],
[
with_stability=no
]
)]
)]
)
AM_CONDITIONAL([BUILD_STABILITY], [test "x$COND_STABILITY" = "xyes"])
# MPI
AC_ARG_WITH([mpi],
[AS_HELP_STRING([--with-mpi],
[build MPI-based parallel versions of SHOC benchmarks @<:@default=check@:>@])],
[],
[with_mpi=check]
)
USE_MPI=no
AS_IF([test "x$with_mpi" != xno],
[
AC_PATH_PROGS([MPICXX], [[$MPICXX] mpicxx mpic++ mpiCC])
savedCXX=$CXX
CXX=$MPICXX
AS_IF([test "x$MPICXX" != "x"],
[
AC_MSG_CHECKING([whether we can compile an MPI program using $CXX])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([@%:@include "mpi.h"],[MPI_Init(0,0);])],
[ AC_MSG_RESULT([yes])],
[ AC_MSG_RESULT([no])
MPICXX=""
]
)
]
)
AS_IF([test "x$MPICXX" != "x"],
[
AC_MSG_CHECKING([whether we can link an MPI program using $CXX])
AC_LINK_IFELSE([AC_LANG_PROGRAM([@%:@include "mpi.h"],[MPI_Init(0,0);])],
[
AC_MSG_RESULT([yes])
],
[
AC_MSG_RESULT([no])
MPICXX=""
]
)
]
)
CXX=$savedCXX
AS_IF([test "x$MPICXX" != "x"],
[ AS_IF([test "x$with_opencl" = xyes -o "x$with_cuda" = xyes],
[ with_mpi=yes
USE_MPI=yes
],
[ AC_MSG_FAILURE([MPI support was requested, but is only meaningful if OpenCL and/or CUDA support is available])
with_mpi=no
]
)
],
[ AS_IF([test "x$with_mpi" != xcheck],
[ AC_MSG_FAILURE([--with-mpi specified, but no usable MPI installation found.])
with_mpi=no
]
)
]
)
]
)
AM_CONDITIONAL([BUILD_MPI], [test "x$with_mpi" = "xyes"])
AC_SUBST([USE_MPI])
AC_SUBST([MPICXX])
AC_SUBST([USE_CUDA])
AC_SUBST([MPI_SUBDIRS])
AC_SUBST([NVCXXFLAGS])
AC_CONFIG_FILES([Makefile
config/common.mk
config/config.mk
config/dirtargets.mk
config/targets.mk
doc/Makefile
src/Makefile
src/common/Makefile
src/cuda/Makefile
src/cuda/level0/Makefile
src/cuda/level0/epmpi/Makefile
src/cuda/level1/Makefile
src/cuda/level1/bfs/Makefile
src/cuda/level1/bfs/epmpi/Makefile
src/cuda/level1/fft/Makefile
src/cuda/level1/fft/epmpi/Makefile
src/cuda/level1/md/Makefile
src/cuda/level1/md/epmpi/Makefile
src/cuda/level1/md5hash/Makefile
src/cuda/level1/md5hash/epmpi/Makefile
src/cuda/level1/neuralnet/Makefile
src/cuda/level1/neuralnet/epmpi/Makefile
src/cuda/level1/reduction/Makefile
src/cuda/level1/reduction/epmpi/Makefile
src/cuda/level1/reduction/tpmpi/Makefile
src/cuda/level1/scan/Makefile
src/cuda/level1/scan/epmpi/Makefile
src/cuda/level1/scan/tpmpi/Makefile
src/cuda/level1/gemm/Makefile
src/cuda/level1/gemm/epmpi/Makefile
src/cuda/level1/sort/Makefile
src/cuda/level1/sort/epmpi/Makefile
src/cuda/level1/spmv/Makefile
src/cuda/level1/spmv/epmpi/Makefile
src/cuda/level1/stencil2d/Makefile
src/cuda/level1/stencil2d/tpmpi/Makefile
src/cuda/level1/triad/Makefile
src/cuda/level1/triad/epmpi/Makefile
src/cuda/level2/Makefile
src/cuda/level2/qtclustering/Makefile
src/cuda/level2/qtclustering/tpmpi/Makefile
src/cuda/level2/s3d/Makefile
src/cuda/level2/s3d/epmpi/Makefile
src/mpi/Makefile
src/mpi/common/Makefile
src/mpi/contention/Makefile
src/mpi/contention/cuda/Makefile
src/mpi/contention/opencl/Makefile
src/mpi/contention-mt/Makefile
src/mpi/contention-mt/cuda/Makefile
src/mpi/contention-mt/opencl/Makefile
src/opencl/Makefile
src/opencl/common/Makefile
src/opencl/level0/Makefile
src/opencl/level0/epmpi/Makefile
src/opencl/level1/Makefile
src/opencl/level1/bfs/Makefile
src/opencl/level1/bfs/epmpi/Makefile
src/opencl/level1/fft/Makefile
src/opencl/level1/fft/epmpi/Makefile
src/opencl/level1/md/Makefile
src/opencl/level1/md/epmpi/Makefile
src/opencl/level1/md5hash/Makefile
src/opencl/level1/md5hash/epmpi/Makefile
src/opencl/level1/reduction/Makefile
src/opencl/level1/reduction/epmpi/Makefile
src/opencl/level1/reduction/tpmpi/Makefile
src/opencl/level1/scan/Makefile
src/opencl/level1/scan/epmpi/Makefile
src/opencl/level1/scan/tpmpi/Makefile
src/opencl/level1/gemm/Makefile
src/opencl/level1/gemm/epmpi/Makefile
src/opencl/level1/sort/Makefile
src/opencl/level1/sort/epmpi/Makefile
src/opencl/level1/spmv/Makefile
src/opencl/level1/spmv/epmpi/Makefile
src/opencl/level1/stencil2d/Makefile
src/opencl/level1/stencil2d/tpmpi/Makefile
src/opencl/level1/triad/Makefile
src/opencl/level1/triad/epmpi/Makefile
src/opencl/level2/Makefile
src/opencl/level2/s3d/Makefile
src/opencl/level2/s3d/epmpi/Makefile
src/stability/Makefile
src/stability/epmpi/Makefile
tools/Makefile
])
AC_OUTPUT