Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
elpa
elpa
Commits
cc1bf575
Commit
cc1bf575
authored
Mar 03, 2021
by
Andreas Marek
Browse files
Add old --enable-gpu flag, for compatibility
parent
9b6dcccf
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
cc1bf575
...
...
@@ -794,6 +794,7 @@ clean-local:
-
rm
-rf
single_complex_2stage
*
.sh
-
rm
-rf
single_real_2stage
*
.sh
-
rm
-rf
double_instance_onenode
*
.sh
-
rm
-rf
test_
*
.sh
-
rm
-rf
$(generated_headers)
distclean-local
:
...
...
configure.ac
View file @
cc1bf575
...
...
@@ -1465,6 +1465,18 @@ if test x"${need_bgq}" = x"yes"; then
fi
AC_LANG_POP([Fortran])
#compatibiility flag
AC_MSG_CHECKING(whether GPU version should be used)
AC_ARG_ENABLE([gpu],
AS_HELP_STRING([--enable-gpu],
[do use Nvidia GPU version (compatibility flag, better set explicitely)]),
[if test x"$enableval" = x"yes"; then
use_gpu=yes
else
use_gpu=no
fi],
[use_gpu=no])
AC_MSG_RESULT([${use_gpu}])
AC_MSG_CHECKING(whether Nvidia-GPU version should be used)
AC_ARG_ENABLE([Nvidia-gpu],
...
...
@@ -1482,6 +1494,13 @@ if test x"${use_nvidia_gpu}" = x"yes" ; then
use_nvidia_real_gpu=yes
use_nvidia_complex_gpu=yes
fi
if test x"${use_gpu}" = x"yes" ; then
need_nvidia_gpu=yes
use_nvidia_real_gpu=yes
use_nvidia_complex_gpu=yes
fi
AC_MSG_CHECKING(whether INTEL GPU version should be used)
AC_ARG_ENABLE([intel-gpu],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment