Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Martin Reinecke
ducc
Commits
c860e8b7
Commit
c860e8b7
authored
Feb 16, 2020
by
Martin Reinecke
Browse files
more packaging
parent
98f96ef0
Changes
3
Hide whitespace changes
Inline
Side-by-side
nifty_gridder/MANIFEST.in
0 → 100644
View file @
c860e8b7
prune mr_util
include gridder_cxx.h
include mr_util/useful_macros.h
include mr_util/constants.h
include mr_util/gl_integrator.h
include mr_util/fft.h
include mr_util/fft1d.h
include mr_util/mav.h
include mr_util/threading.h
include mr_util/aligned_array.h
include mr_util/simd.h
include mr_util/cmplx.h
include mr_util/unity_roots.h
include mr_util/error_handling.h
include mr_util/threading.cc
nifty_gridder/setup.py
View file @
c860e8b7
...
...
@@ -11,7 +11,7 @@ class _deferred_pybind11_include(object):
return
pybind11
.
get_include
(
self
.
user
)
include_dirs
=
[
'../'
,
'./'
,
_deferred_pybind11_include
(
True
),
include_dirs
=
[
'./'
,
_deferred_pybind11_include
(
True
),
_deferred_pybind11_include
()]
extra_compile_args
=
[
'-Wall'
,
'-Wextra'
,
'-Wfatal-errors'
,
'-Wstrict-aliasing=2'
,
'-Wwrite-strings'
,
'-Wredundant-decls'
,
'-Woverloaded-virtual'
,
'-Wcast-qual'
,
'-Wcast-align'
,
'-Wpointer-arith'
,
'-Wfloat-conversion'
]
#, '-Wsign-conversion', '-Wconversion'
...
...
@@ -32,11 +32,22 @@ else:
def
get_extension_modules
():
return
[
Extension
(
'nifty_gridder'
,
sources
=
[
'nifty_gridder.cc'
,
'../mr_util/threading.cc'
],
depends
=
[
'../mr_util/error_handling.h'
,
'../mr_util/fft.h'
,
'../mr_util/threading.h'
,
'../mr_util/aligned_array.h'
,
'../mr_util/simd.h'
,
'../mr_util/mav.h'
,
'../mr_util/cmplx.h'
,
'../mr_util/unity_roots.h'
,
'setup.py'
,
'gridder_cxx.h'
],
sources
=
[
'nifty_gridder.cc'
,
'mr_util/threading.cc'
],
depends
=
[
'mr_util/useful_macros.h'
,
'mr_util/constants.h'
,
'mr_util/gl_integrator.h'
,
'mr_util/error_handling.h'
,
'mr_util/fft.h'
,
'mr_util/fft1d.h'
,
'mr_util/threading.h'
,
'mr_util/aligned_array.h'
,
'mr_util/simd.h'
,
'mr_util/mav.h'
,
'mr_util/cmplx.h'
,
'mr_util/unity_roots.h'
,
'gridder_cxx.h'
,
'setup.py'
],
include_dirs
=
include_dirs
,
extra_compile_args
=
extra_compile_args
,
extra_link_args
=
python_module_link_args
)]
...
...
nifty_gridder/test.py
→
nifty_gridder/test
/test
.py
View file @
c860e8b7
File moved
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment