-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcuda.m4
79 lines (74 loc) · 2.43 KB
/
cuda.m4
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
# This file is part of Nanos6 and is licensed under the terms contained in the COPYING file.
#
# Copyright (C) 2015-2020 Barcelona Supercomputing Center (BSC)
AC_DEFUN([AC_CHECK_CUDA],
[
AC_ARG_WITH(
[cuda],
[AS_HELP_STRING([--with-cuda, --with-cuda=prefix], [enable CUDA; optionally specify the installation prefix of CUDA])],
[ ac_cv_use_cuda_prefix=$withval;
ac_use_cuda="yes" ],
[ ac_use_cuda="no" ]
)
if test x"${ac_use_cuda}" != x"no" ;then
if test x"${ac_cv_use_cuda_prefix}" != x"yes" ; then
AC_MSG_CHECKING([the CUDA installation prefix])
AC_MSG_RESULT([${ac_cv_use_cuda_prefix}])
# hacky way to obtain the quoted string for rpath
cuda_lib_path_q=`echo \"${ac_cv_use_cuda_prefix}/lib64\"`
CUDA_LIBS="-L${ac_cv_use_cuda_prefix}/lib64 -lcudart"
CUDA_LIBS="${CUDA_LIBS} -Wl,-rpath,${cuda_lib_path_q}"
CUDA_CFLAGS="-I${ac_cv_use_cuda_prefix}/include"
ac_use_cuda=yes
else
PKG_CHECK_MODULES([CUDA], [cudart-10.2], [ac_use_cuda=yes], [
PKG_CHECK_MODULES([CUDA], [cudart-10.1], [ac_use_cuda=yes], [
PKG_CHECK_MODULES([CUDA], [cudart-10.0], [ac_use_cuda=yes], [
PKG_CHECK_MODULES([CUDA], [cudart-9.2], [ac_use_cuda=yes], [
PKG_CHECK_MODULES([CUDA], [cudart-9.1], [ac_use_cuda=yes], [
PKG_CHECK_MODULES([CUDA], [cudart-9.0], [ac_use_cuda=yes], [
PKG_CHECK_MODULES([CUDA], [cudart-8.0], [ac_use_cuda=yes], [ac_use_cuda=no]
)])])])])])])
fi
if test x"${ac_use_cuda}" != x"yes" ; then
AC_CHECK_HEADERS([cuda.h, cuda_runtime_api.h])
# check support of all used runtime calls in CUDA library;
# spaces mangled for output consistency.
AC_CHECK_LIB([cudart],
[cudaSetDevice,
cudaGetDeviceCount,
cudaMalloc,
cudaFree,
cudaMemcpy,
cudaMemcpyKind,
cudaHostGetDevicePointer,
cudaGetErrorString,
cudaGetErrorName,
cudaHostRegister,
cudaHostRegisterDefault,
cudaHostUnregister,
cudaStreamCreate,
cudaStreamDestroy,
cudaEventCreateWithFlags,
cudaEventDestroy,
cudaEventDisableTiming,
cudaEventRecord,
cudaEventQuery],
[
CUDA_LIBS="-lcudart"
ac_use_cuda=yes
],
[
ac_use_cuda=no
]
)
fi
fi
AM_CONDITIONAL([USE_CUDA], [test x"${ac_use_cuda}" = x"yes"])
if test x"${ac_use_cuda}" = x"yes" ; then
AC_DEFINE([USE_CUDA], [1], [Define if CUDA is enabled.])
fi
AC_SUBST([CUDA_LIBS])
AC_SUBST([CUDA_CFLAGS])
]
)