Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pypocketfft
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Martin Reinecke
pypocketfft
Commits
7791e525
Commit
7791e525
authored
Jun 26, 2019
by
Martin Reinecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
d1874b1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
pocketfft_hdronly.h
pocketfft_hdronly.h
+1
-8
No files found.
pocketfft_hdronly.h
View file @
7791e525
...
...
@@ -232,14 +232,7 @@ template<bool fwd, typename T> void ROTX90(cmplx<T> &a)
template
<
typename
T
>
class
sincos_2pibyn
{
private:
template
<
typename
Ta
,
typename
Tb
,
bool
bigger
>
struct
TypeSelector
{};
template
<
typename
Ta
,
typename
Tb
>
struct
TypeSelector
<
Ta
,
Tb
,
true
>
{
using
type
=
Ta
;
};
template
<
typename
Ta
,
typename
Tb
>
struct
TypeSelector
<
Ta
,
Tb
,
false
>
{
using
type
=
Tb
;
};
using
Thigh
=
typename
TypeSelector
<
T
,
double
,
(
sizeof
(
T
)
>
sizeof
(
double
))
>::
type
;
using
Thigh
=
typename
conditional
<
(
sizeof
(
T
)
>
sizeof
(
double
)),
T
,
double
>::
type
;
arr
<
T
>
data
;
void
my_sincosm1pi
(
Thigh
a_
,
Thigh
*
POCKETFFT_RESTRICT
res
)
...
...
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