replaced huge 2d twiddle arrays by smaller 1d arrays. Now it uses very low memory

This commit is contained in:
2025-10-09 13:11:36 +03:00
parent f54daffb72
commit 580ba1f9f6
13 changed files with 65843 additions and 1130 deletions

View File

@ -1,5 +1,14 @@
all:
gcc FP_math.c -o FP_math -lm
SRCS := FP_math.c FFT_FP_realisation.c
OBJS := $(SRCS:.c=.o)
TARGET := FP_math
all: $(TARGET)
$(TARGET): $(OBJS)
gcc $(OBJS) -o $@ -lm
%.o: %.c
gcc -c $< -o $@
clean:
-rm FP_math
-rm -f $(TARGET) $(OBJS)