Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openfpm_pdata
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
Container 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
argupta
openfpm_pdata
Commits
59a705a8
Commit
59a705a8
authored
6 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing installation of SUITESPARSE on Intel compiler
parent
4d4dd9d1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
build.sh
+0
-1
0 additions, 1 deletion
build.sh
script/install_PETSC.sh
+1
-1
1 addition, 1 deletion
script/install_PETSC.sh
script/install_SUITESPARSE.sh
+1
-1
1 addition, 1 deletion
script/install_SUITESPARSE.sh
with
3 additions
and
3 deletions
CHANGELOG.md
+
1
−
0
View file @
59a705a8
...
...
@@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file.
-
CRITICAL-BUG scalar product in combination with vector product is broken (it return 0)
-
Fixing 2D IO in binary for vector
-
Fixing 1D grid writer in ASCII mode
-
Fixing Intel compilation of Linear algebra
## [1.0.0] 13 September 2017 (Codename: Vortex)
...
...
This diff is collapsed.
Click to expand it.
build.sh
+
0
−
1
View file @
59a705a8
...
...
@@ -83,7 +83,6 @@ then
echo
"
$PATH
"
module load gcc/7.1.0
module load openmpi/3.0.0-gnu7.1
module unload bullxmpi
export
LD_LIBRARY_PATH
=
"
$LD_LIBRARY_PATH
:/home/incard/PARMETIS/lib:/home/incard/METIS/lib:/home/incard/HDF5/lib"
...
...
This diff is collapsed.
Click to expand it.
script/install_PETSC.sh
+
1
−
1
View file @
59a705a8
...
...
@@ -99,7 +99,7 @@ else
fi
if
[
!
-d
"
$1
/SUITESPARSE"
]
;
then
./script/install_SUITESPARSE.sh
$1
./script/install_SUITESPARSE.sh
$1
$2
if
[
$?
-eq
0
]
;
then
configure_options
=
"
$configure_options
--with-suitesparse=yes --with-suitesparse-dir=
$1
/SUITESPARSE "
fi
...
...
This diff is collapsed.
Click to expand it.
script/install_SUITESPARSE.sh
+
1
−
1
View file @
59a705a8
...
...
@@ -34,7 +34,7 @@ if [ x"$platform" == x"cygwin" ]; then
fi
echo
"Compiling SuiteSparse without CUDA (old variable
$CUDA
)"
make
"CUDA=no"
"BLAS=-L
$1
/OPENBLAS/lib -lopenblas -pthread"
"LAPACK="
"LDLIBS=
$STS_LIB
"
"LD_LIBRARY_PATH=
$LD_LIBRARY_PATH
:
$1
/OPENBLAS/lib"
make
-j
$2
"CUDA=no"
"BLAS=-L
$1
/OPENBLAS/lib -lopenblas -pthread"
"LAPACK="
if
[
$?
!=
0
]
;
then
echo
"Failed to compile SuiteSparse"
exit
1
...
...
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