Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbor
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arbor-sim
arbor
Commits
b0baa71b
Unverified
Commit
b0baa71b
authored
4 years ago
by
thorstenhater
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add SIMD target to CI. (#1367)
Adda Linux pipeline with SIMD and not MPI to GitHub Actions.
parent
3989637d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/basic.yml
+25
-9
25 additions, 9 deletions
.github/workflows/basic.yml
with
25 additions
and
9 deletions
.github/workflows/basic.yml
+
25
−
9
View file @
b0baa71b
name
:
Basic Tests and Documentation
name
:
Arbor
on
:
push
:
...
...
@@ -8,7 +8,7 @@ on:
jobs
:
build
:
name
:
"
Default
test
set
"
name
:
"
Default"
runs-on
:
${{ matrix.config.os }}
strategy
:
matrix
:
...
...
@@ -20,7 +20,8 @@ jobs:
cxx
:
"
g++-8"
,
py
:
"
3.6"
,
cmake
:
"
3.12.x"
,
mpi
:
"
ON"
mpi
:
"
ON"
,
simd
:
"
OFF"
}
-
{
name
:
"
Linux
Min
Clang"
,
...
...
@@ -29,7 +30,8 @@ jobs:
cxx
:
"
clang++-8"
,
py
:
"
3.6"
,
cmake
:
"
3.12.x"
,
mpi
:
"
ON"
mpi
:
"
ON"
,
simd
:
"
OFF"
}
-
{
name
:
"
MacOS
Min"
,
...
...
@@ -38,7 +40,8 @@ jobs:
cxx
:
"
clang++"
,
py
:
"
3.6"
,
cmake
:
"
3.12.x"
,
mpi
:
"
ON"
mpi
:
"
ON"
,
simd
:
"
OFF"
}
-
{
name
:
"
Linux
Max
GCC"
,
...
...
@@ -47,7 +50,18 @@ jobs:
cxx
:
"
g++-10"
,
py
:
"
3.9"
,
cmake
:
"
3.19.x"
,
mpi
:
"
ON"
mpi
:
"
ON"
,
simd
:
"
OFF"
}
-
{
name
:
"
Linux
SIMD"
,
os
:
"
ubuntu-20.04"
,
cc
:
"
gcc-10"
,
cxx
:
"
g++-10"
,
py
:
"
3.9"
,
cmake
:
"
3.19.x"
,
mpi
:
"
OFF"
,
simd
:
"
ON"
}
-
{
name
:
"
Linux
Max
Clang"
,
...
...
@@ -56,7 +70,8 @@ jobs:
cxx
:
"
clang++-10"
,
py
:
"
3.9"
,
cmake
:
"
3.19.x"
,
mpi
:
"
ON"
mpi
:
"
ON"
,
simd
:
"
OFF"
}
-
{
name
:
"
MacOS
Max"
,
...
...
@@ -65,7 +80,8 @@ jobs:
cxx
:
"
clang++"
,
py
:
"
3.9"
,
cmake
:
"
3.19.x"
,
mpi
:
"
ON"
mpi
:
"
ON"
,
simd
:
"
OFF"
}
env
:
CC
:
${{ matrix.config.cc }}
...
...
@@ -125,7 +141,7 @@ jobs:
run
:
|
mkdir build
cd build
cmake .. -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC -DARB_WITH_PYTHON=ON -DPython3_EXECUTABLE=`which python` -DARB_WITH_MPI=${{ matrix.config.mpi }} -DARB_USE_BUNDLED_LIBS=ON
cmake .. -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC -DARB_WITH_PYTHON=ON
-DARB_VECTORIZE=${{ matrix.config.simd }}
-DPython3_EXECUTABLE=`which python` -DARB_WITH_MPI=${{ matrix.config.mpi }} -DARB_USE_BUNDLED_LIBS=ON
make -j4 tests examples pyarb html
cd -
-
name
:
Run unit tests
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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