From 46a0d83d3dbaabae1c9d25e809df88012ee90f14 Mon Sep 17 00:00:00 2001 From: Josh <36625023+JoshuaBrest@users.noreply.github.com> Date: Mon, 20 Jan 2025 23:36:05 -0800 Subject: [PATCH] feat: add sse2 support. --- Sources/blake3-c/blake3_sse2.c | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Sources/blake3-c/blake3_sse2.c diff --git a/Sources/blake3-c/blake3_sse2.c b/Sources/blake3-c/blake3_sse2.c new file mode 100644 index 0000000..05e7bf0 --- /dev/null +++ b/Sources/blake3-c/blake3_sse2.c @@ -0,0 +1,3 @@ +#if __SSE2__ +#include "../../lib/blake3/c/blake3_sse2.c" +#endif