simd-reduce

SIMD reduce implementation and benchmark
git clone git://git.rr3.xyz/simd-reduce
Log | Files | Refs

commit 2ca54556d6ea13fff15404bb818872afa977c025
parent 40dbe5ef3ef2f69f0ab4135b3b9a7237dedf70a7
Author: Robert Russell <robert@rr3.xyz>
Date:   Sun, 17 Aug 2025 18:14:25 -0700

Fix memory bug

Diffstat:
MMakefile | 3+--
Mmain.c | 2+-
2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,8 +1,7 @@ main: main.c func.c func.h - gcc -c -Wall -flax-vector-conversions -O3 -march=native func.c -lrcx + gcc -c -Wall -O3 -march=native func.c -lrcx gcc -o main -Wall -O3 -march=native main.c func.o -lrcx .PHONY: clean clean: rm -f func.o main - diff --git a/main.c b/main.c @@ -3,7 +3,7 @@ #include "func.h" -u64 in[16]; +u64 in[32]; volatile u128 out; #define BENCHMARK(f) \