Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
redesign-prototype
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
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
Nektar
redesign-prototype
Commits
83e445a1
Commit
83e445a1
authored
1 year ago
by
Chris Cantwell
Browse files
Options
Downloads
Plain Diff
Merge branch 'add_readme' into 'master'
Add README.md See merge request
!18
parents
2f79a27b
1c15d8ac
No related branches found
Branches containing commit
Tags
v4.3.4
Tags containing commit
1 merge request
!18
Add README.md
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+40
-0
40 additions, 0 deletions
README.md
with
40 additions
and
0 deletions
README.md
0 → 100644
+
40
−
0
View file @
83e445a1
# How to install redesign-prototye
## Build Nektar++ e.g. on current master
-
See README.md under
[
Nektar++ repository
](
https://gitlab.nektar.info/nektar/nektar
)
-
For development, the
`Debug`
option is recommended
-
Note that the SIMD options have to be turned off, if you want to use CUDA support (Should be by default).
## Build Nektar++ redesign-prototype
In main directory of the redesign, create a
`build`
directory
`cd`
into it, configure and build via:
```
bash
mkdir
build
cd
build
cmake ../
-DNektar
++_DIR
=
~/code/nektarMaster/build/dist/lib64/nektar++/cmake
-DCMAKE_BUILD_TYPE
=
Debug
make
```
If boost is not available on system, build boost (e.g. v1.71.1)
-
One option is via the Ubuntu package manager
`sudo apt install libboost-all-dev`
-
Another option is to download boost and install it manually
After installing boost, run again:
```
bash
cmake ../
-DNektar
++_DIR
=
~/code/nektarMaster/build/dist/lib64/nektar++/cmake
-DCMAKE_BUILD_TYPE
=
Debug
make
```
When the installation was successful, check it via tests:
```
bash
ctest
--output-on-failure
```
## Build Nektar++ redesign-prototype with CUDA
To build the redesign project with CUDA:
-
The CUDA option must be turned on
-
The SIMD option must be turned off
This can be obtained by using the following command
```
bash
cmake ../
-DNektar
++_DIR
=
~/code/nektarMaster/build/dist/lib64/nektar++/cmake
-DCMAKE_BUILD_TYPE
=
Debug
-DNEKTAR_USE_CUDA
=
ON
-DNEKTAR_USE_SIMD
=
OFF
make
```
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