Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hfft #16

Merged
merged 2 commits into from
Jan 3, 2024
Merged

Add hfft #16

merged 2 commits into from
Jan 3, 2024

Conversation

yasahi-hpc
Copy link
Collaborator

In this PR, I have implemented hfft.
Optimal argument n (See fft) has also been introduced.
For the moment, hfft only accept Views with complex numbers. In order to allow the Views with real numbers,
it is needed to derive a complex view type from the input real view type, e.g.,

using InputViewType = Kokkos::View<double**,  execution_space>;

using DerivedViewType = Kokkos::View<Kokkos::complex<double>**,  execution_space>;
// How to get the following DerivedViewType just from InputViewType?

@yasahi-hpc yasahi-hpc merged commit cc7a0be into main Jan 3, 2024
2 checks passed
@yasahi-hpc yasahi-hpc deleted the add-hfft branch January 3, 2024 15:16
@yasahi-hpc yasahi-hpc mentioned this pull request Jan 3, 2024
31 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant