Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gyacomo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Cyril David Hoffmann
Gyacomo
Commits
62c68d97
Commit
62c68d97
authored
1 year ago
by
Antoine Cyril David Hoffmann
Browse files
Options
Downloads
Patches
Plain Diff
clearer and CLA compiles without LAPACK if needed
parent
35f9e135
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
local/dirs.inc
+7
-3
7 additions, 3 deletions
local/dirs.inc
src/CLA_mod.F90
+4
-0
4 additions, 0 deletions
src/CLA_mod.F90
with
11 additions
and
3 deletions
local/dirs.inc
+
7
−
3
View file @
62c68d97
...
...
@@ -6,9 +6,13 @@ OBJDIR = $(PREFIX)/obj
LIBDIR
=
$
(
PREFIX
)
/
lib
MODDIR
=
$
(
PREFIX
)
/
mod
HDF5_LIB
=
/
usr
/
local
/
hdf5
-
1.8.22
/
lib
FMDIR
=
$
(
HOME
)
/
lib
/
FM
FUTILS_DIR
=
$
(
HOME
)
/
lib
/
futils
/
src
# For local install :
HDF5_LIB
=
/
usr
/
local
/
hdf5
-
1.8.22
/
lib
FFTW3DIR
=
$
(
HOME
)
/
lib
/
fftw
-
3.3.10
# For marconi:
# -comment HDF5_LIB and FFTW3DIR
# -uncomment the following lines
#FFTW3DIR = $(FFTW_HOME)#for Marconi
FUTILS_DIR
=
$
(
HOME
)
/
lib
/
futils
/
src
LAPACKDIR
=
$
(
HOME
)
/
lib
/
lapack
-
3.10.0
\ No newline at end of file
#LAPACKDIR = $(HOME)/lib/lapack-3.10.0
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/CLA_mod.F90
+
4
−
0
View file @
62c68d97
...
...
@@ -75,10 +75,14 @@ CONTAINS
! local variables
INTEGER
::
info
invU
=
U
#ifdef LAPACKDIR
#ifdef SINGLE_PRECISION
CALL
STRTRI
(
'U'
,
'N'
,
N
,
invU
,
N
,
info
)
#else
CALL
DTRTRI
(
'U'
,
'N'
,
N
,
invU
,
N
,
info
)
#endif
#else
ERROR STOP
"Cannot use monomial truncation without LAPACK"
#endif
IF
(
info
.LT.
0
)
THEN
print
*
,
info
...
...
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