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

🚀 FEAT : Refactor FFT function to take Dynamic Values #11

Closed
0xpanicError opened this issue Dec 4, 2023 · 0 comments · Fixed by #14
Closed

🚀 FEAT : Refactor FFT function to take Dynamic Values #11

0xpanicError opened this issue Dec 4, 2023 · 0 comments · Fixed by #14
Assignees

Comments

@0xpanicError
Copy link
Member

🚀 [FEAT]

Description:
Current fft implementation in solidity requires an input of int256[4] arrays of real and complex parts. This restricts the program to only run FFT for 4 discrete points.

function fft(int256[4] memory real_part, int256[4] memory complex_part)
        public
        view
        returns (int256[4] memory, int256[4] memory)
{ ... }

Scope:
FFT implemented in src/FFT_Implementation/fft.sol

Objective:
Refactor code such that the fft function can input a dynamic array of arbitrary length.

@0xpanicError 0xpanicError linked a pull request Dec 5, 2023 that will close this issue
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 a pull request may close this issue.

2 participants