Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_pdata
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openfpm
openfpm_pdata
Commits
59a705a8
Commit
59a705a8
authored
Apr 15, 2018
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing installation of SUITESPARSE on Intel compiler
parent
4d4dd9d1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
CHANGELOG.md
CHANGELOG.md
+1
-0
build.sh
build.sh
+0
-1
script/install_PETSC.sh
script/install_PETSC.sh
+1
-1
script/install_SUITESPARSE.sh
script/install_SUITESPARSE.sh
+1
-1
No files found.
CHANGELOG.md
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)
...
...
build.sh
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"
...
...
script/install_PETSC.sh
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
...
...
script/install_SUITESPARSE.sh
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
...
...
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