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
7bc96528
Commit
7bc96528
authored
8 years ago
by
Benjamin Cumming
Browse files
Options
Downloads
Plain Diff
move modparser to externals
parents
0ffd49a9
6687c3de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitmodules
+3
-0
3 additions, 0 deletions
.gitmodules
README.md
+30
-0
30 additions, 0 deletions
README.md
external/modparser
+1
-0
1 addition, 0 deletions
external/modparser
mechanisms/generate.sh
+1
-1
1 addition, 1 deletion
mechanisms/generate.sh
with
35 additions
and
1 deletion
.gitmodules
+
3
−
0
View file @
7bc96528
...
...
@@ -4,3 +4,6 @@
[submodule "json"]
path = external/json
url = git@github.com:bcumming/json.git
[submodule "modparser"]
path = external/modparser
url = git@github.com:eth-cscs/modparser.git
This diff is collapsed.
Click to expand it.
README.md
+
30
−
0
View file @
7bc96528
# cell_algorithms
```
bash
# clone repo
git clone git@github.com:eth-cscs/cell_algorithms.git
cd
cell_algorithms/
# setup sub modules
git submodule init
git submodule update
# setup environment
module load gcc
module load cmake
export
CC
=
`
which gcc
`
export
CXX
=
`
which g++
`
# build modparser
cd
modparser
cmake
.
make
-j
cd
..
# create mechanisms
cd
mechanisms
./generate.sh
cd
..
# build main project
cmake
.
make
-j
# test
cd
tests
./test.exe
```
This diff is collapsed.
Click to expand it.
modparser
@
d1dd8fa8
Subproject commit d1dd8fa868c0dc7e348093ed4a4b5c6c94e29e34
This diff is collapsed.
Click to expand it.
mechanisms/generate.sh
+
1
−
1
View file @
7bc96528
for
mech
in
pas hh
do
modcc
-t
cpu
-o
../include/mechanisms/
$mech
.hpp ./mod/
$mech
.mod
../modparser/bin/
modcc
-t
cpu
-o
../include/mechanisms/
$mech
.hpp ./mod/
$mech
.mod
done
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