Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
parlib
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
Model registry
Operate
Environments
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
Debolskiy Andrey
parlib
Commits
423fd280
Commit
423fd280
authored
4 years ago
by
Debolskiy Andrey
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
449bd231
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+23
-3
23 additions, 3 deletions
README.md
with
23 additions
and
3 deletions
README.md
+
23
−
3
View file @
423fd280
INM ParLib v2.2
INM ParLib v2.2
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
authors: Val Gloukhov
authors: Val Gloukhov
...
@@ -7,9 +6,13 @@ authors: Val Gloukhov
...
@@ -7,9 +6,13 @@ authors: Val Gloukhov
(gluhoff@inm.ras.ru)
(gluhoff@inm.ras.ru)
Evgeny Mortikov
Evgeny Mortikov
Research Computing Center of Lomonosov Moscow State University
Research Computing Center of Lomonosov Moscow State University
(evgeny.mortikov@gmail.com)
Andrey Debolskiy
Research Computing Center of Lomonosov Moscow State University
(and.debol@srcc.msu.ru)
latest update:
11/30
/200
1
latest update:
22/06
/20
2
0
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
INM ParLib is a high level library facilitating the coding of finite
INM ParLib is a high level library facilitating the coding of finite
...
@@ -37,6 +40,23 @@ then run cmake to configure build
...
@@ -37,6 +40,23 @@ then run cmake to configure build
```
```
cmake -DCMAKE_INSTALL_PREFIX=/path/to/install/parlib/to -s ../parlib
cmake -DCMAKE_INSTALL_PREFIX=/path/to/install/parlib/to -s ../parlib
```
```
on some clusters higher versions of cmake are aliased with cmake3 (f.ex. Lomonosov-1,2), so use
`cmake3`
in that case
on some clusters higher versions of cmake are aliased with cmake3
(f.ex. Lomonosov-1,2), so use
`cmake3`
in that case.
then compile,test and install parlib into directory specified by
`CMAKE_INSTALL_PREFIX`
```
make all
make test
make install
```
By default cmake will build both shared and static libraries as well
as fortran wrapper libraries. to toggle which libraries to build use these
cmake variables:
`BUILD_SHARED_LIBS`
,
`BUILD_STATIC_LIBS`
,
`BUILD_FORT_LIBS`
.
For example:
```
cmake -DBUILD_SHARED_LIBS=OFF -BUILD_STATIC_LIBS=ON -DBUILD_FORT_LIBS=OFF -s ../parlib
```
will build only C static library. You can check other configuration options either
by using cmake-gui or using
`cmake -LAH `
.
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