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
pypocketfft
Commits
2c80bd37
Commit
2c80bd37
authored
Jan 07, 2020
by
Martin Reinecke
Browse files
Merge branch 'good_size_export' into 'master'
Export good_size using raw C-API See merge request
!32
parents
8961a318
e4576e41
Changes
1
Hide whitespace changes
Inline
Side-by-side
pypocketfft.cc
View file @
2c80bd37
...
...
@@ -372,10 +372,29 @@ py::array genuine_hartley(const py::array &in, const py::object &axes_,
out_
,
nthreads
))
}
size_t
good_size
(
size_t
n
,
bool
real
)
// Export good_size in raw C-API to reduce overhead (~4x faster)
PyObject
*
good_size
(
PyObject
*
self
,
PyObject
*
args
)
{
Py_ssize_t
n_
=
-
1
;
int
real
=
false
;
if
(
!
PyArg_ParseTuple
(
args
,
"n|p:good_size"
,
&
n_
,
&
real
))
return
nullptr
;
if
(
n_
<
0
)
{
PyErr_SetString
(
PyExc_ValueError
,
"Target length must be positive"
);
return
nullptr
;
}
if
((
n_
-
1
)
>
static_cast
<
Py_ssize_t
>
(
std
::
numeric_limits
<
size_t
>::
max
()
/
11
))
{
PyErr_Format
(
PyExc_ValueError
,
"Target length is too large to perform an FFT: %zi"
,
n_
);
return
nullptr
;
}
const
auto
n
=
static_cast
<
size_t
>
(
n_
);
using
namespace
pocketfft
::
detail
;
return
real
?
util
::
good_size_real
(
n
)
:
util
::
good_size_cmplx
(
n
);
return
PyLong_FromSize_t
(
real
?
util
::
good_size_real
(
n
)
:
util
::
good_size_cmplx
(
n
));
}
const
char
*
pypocketfft_DS
=
R"""(Fast Fourier and Hartley transforms.
...
...
@@ -702,5 +721,8 @@ PYBIND11_MODULE(pypocketfft, m)
"out"
_a
=
None
,
"nthreads"
_a
=
1
);
m
.
def
(
"dst"
,
dst
,
dst_DS
,
"a"
_a
,
"type"
_a
,
"axes"
_a
=
None
,
"inorm"
_a
=
0
,
"out"
_a
=
None
,
"nthreads"
_a
=
1
);
m
.
def
(
"good_size"
,
good_size
,
good_size_DS
,
"n"
_a
,
"real"
_a
=
false
);
static
PyMethodDef
good_size_meth
[]
=
{{
"good_size"
,
good_size
,
METH_VARARGS
,
good_size_DS
},
{
0
}};
PyModule_AddFunctions
(
m
.
ptr
(),
good_size_meth
);
}
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