Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Mulas
NP_TMcode
Commits
ded0e7d7
Commit
ded0e7d7
authored
9 months ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Add option to use MAGMA SVD
parent
a9381890
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/configure
+22
-0
22 additions, 0 deletions
build/configure
build/configure.ac
+13
-0
13 additions, 0 deletions
build/configure.ac
with
35 additions
and
0 deletions
build/configure
+
22
−
0
View file @
ded0e7d7
...
...
@@ -823,6 +823,7 @@ enable_optimize
with_lapack
with_magma
enable_nvtx
enable_svd
with_include
with_fflags
with_ldflags
...
...
@@ -1489,6 +1490,7 @@ Optional Features:
--enable-openmp enable OpneMP multi-threading [default=yes]
--enable-optimize=LEVEL use optimization level LEVEL [default=3]
--enable-nvtx use NVTX profiling [default=no]
--enable-svd use MAGMA SVD [default=no]
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
...
...
@@ -25597,6 +25599,26 @@ esac
fi
# Check whether --enable-svd was given.
if test ${enable_svd+y}
then :
enableval=$enable_svd;
if test "x$enableval" != "xno"; then
MAGMAFLAGS="$MAGMAFLAGS -DUSE_MAGMA_SVD"
else
MAGMAFLAGS=$MAGMAFLAGS
fi
else case e in #(
e) MAGMAFLAGS=$MAGMAFLAGS
;;
esac
fi
# Test for additional user configurations
# Test for specific include folders
...
...
This diff is collapsed.
Click to expand it.
build/configure.ac
+
13
−
0
View file @
ded0e7d7
...
...
@@ -608,6 +608,19 @@ AC_ARG_ENABLE(
]
)
AC_ARG_ENABLE(
[svd],
[AS_HELP_STRING([--enable-svd], [use MAGMA SVD [default=no]])],
[
if test "x$enableval" != "xno"; then
AC_SUBST([MAGMAFLAGS], ["$MAGMAFLAGS -DUSE_MAGMA_SVD"])
else
AC_SUBST([MAGMAFLAGS], [$MAGMAFLAGS])
fi
],
[AC_SUBST([MAGMAFLAGS], [$MAGMAFLAGS])]
)
# Test for additional user configurations
# Test for specific include folders
AC_ARG_WITH(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment