initial commit

This commit is contained in:
Adien Akhmad 2025-08-07 23:36:19 +07:00
commit 245de56dfd
11 changed files with 2913 additions and 0 deletions

11
README.md Normal file
View file

@ -0,0 +1,11 @@
## Setup
```shell
mkdir build
cd pocketfft
gcc -std=c99 -O2 -W -Wall -fPIC -shared *.c -lm -o libpocketfft.dylib # libpocketfft.so for linux
cp libpocketfft.dylib ../build
cd ..
dotnet publish -c Release -o build ./src/pocketfft-demo.csproj
./build/Demo.PocketFFT
```