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
2158d2c6
Unverified
Commit
2158d2c6
authored
4 years ago
by
Benjamin Cumming
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Version bump and ready for release (#1301)
parent
73256fc3
No related branches found
Branches containing commit
Tags
v0.5
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
MANIFEST.in
+1
-0
1 addition, 0 deletions
MANIFEST.in
VERSION
+1
-1
1 addition, 1 deletion
VERSION
setup.py
+3
-2
3 additions, 2 deletions
setup.py
with
5 additions
and
3 deletions
MANIFEST.in
+
1
−
0
View file @
2158d2c6
...
...
@@ -12,6 +12,7 @@ graft modcc
graft python
graft sup
graft test
graft arborio
prune ext/sphinx_rtd_theme
prune ext/google-benchmark
This diff is collapsed.
Click to expand it.
VERSION
+
1
−
1
View file @
2158d2c6
0.
4.1-dev
0.
5
This diff is collapsed.
Click to expand it.
setup.py
+
3
−
2
View file @
2158d2c6
...
...
@@ -18,7 +18,8 @@ class CL_opt:
CL_opt
.
instance
=
{
'
mpi
'
:
False
,
'
gpu
'
:
'
none
'
,
'
vec
'
:
False
,
'
arch
'
:
'
native
'
}
'
arch
'
:
'
native
'
,
'
bundled
'
:
True
}
def
settings
(
self
):
return
CL_opt
.
instance
...
...
@@ -111,7 +112,7 @@ class cmake_build(build_ext):
'
-DARB_VECTORIZE={}
'
.
format
(
'
on
'
if
opt
[
'
vec
'
]
else
'
off
'
),
'
-DARB_ARCH={}
'
.
format
(
opt
[
'
arch
'
]),
'
-DARB_GPU={}
'
.
format
(
opt
[
'
gpu
'
]),
'
-DARB_USE_BUNDLED_LIBS={}
'
.
format
(
'
on
'
if
opt
[
'
bundled
'
]
else
'
off
'
]
),
'
-DARB_USE_BUNDLED_LIBS={}
'
.
format
(
'
on
'
if
opt
[
'
bundled
'
]
else
'
off
'
),
'
-DCMAKE_BUILD_TYPE=Release
'
# we compile with debug symbols in release mode.
]
...
...
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