Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
nifty_gridder
Commits
18c0cba6
Commit
18c0cba6
authored
Aug 29, 2019
by
Martin Reinecke
Browse files
single precision support for high-level routines
parent
53e3a866
Changes
1
Hide whitespace changes
Inline
Side-by-side
nifty_gridder.cc
View file @
18c0cba6
...
...
@@ -810,6 +810,10 @@ PYBIND11_MODULE(nifty_gridder, m)
m
.
def
(
"full_gridding"
,
&
Pyfull_gridding
<
double
>
,
"uvw"
_a
,
"freq"
_a
,
"vis"
_a
,
"wgt"
_a
,
"npix_x"
_a
,
"npix_y"
_a
,
"pixsize_x"
_a
,
"pixsize_y"
_a
,
"epsilon"
_a
);
m
.
def
(
"full_gridding_f"
,
&
Pyfull_gridding
<
float
>
,
"uvw"
_a
,
"freq"
_a
,
"vis"
_a
,
"wgt"
_a
,
"npix_x"
_a
,
"npix_y"
_a
,
"pixsize_x"
_a
,
"pixsize_y"
_a
,
"epsilon"
_a
);
m
.
def
(
"full_degridding"
,
&
Pyfull_degridding
<
double
>
,
"uvw"
_a
,
"freq"
_a
,
"dirty"
_a
,
"wgt"
_a
,
"pixsize_x"
_a
,
"pixsize_y"
_a
,
"epsilon"
_a
);
m
.
def
(
"full_degridding_f"
,
&
Pyfull_degridding
<
float
>
,
"uvw"
_a
,
"freq"
_a
,
"dirty"
_a
,
"wgt"
_a
,
"pixsize_x"
_a
,
"pixsize_y"
_a
,
"epsilon"
_a
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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