Initial release

This commit is contained in:
civ
2026-08-16 18:24:52 +07:00
commit 876886a39a
13244 changed files with 2353959 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
CXX ?= g++
CXXFLAGS ?= -std=c++17 -O2
INCLUDES = -I../src
test-philox: test-philox.cpp ../src/philox.h
$(CXX) $(CXXFLAGS) $(INCLUDES) -o $@ $< -lm
clean:
rm -f test-philox philox-noise.f32
.PHONY: clean