Skip to content

Instantly share code, notes, and snippets.

@githublqs
githublqs / fast_convolve_1D.cpp
Created June 3, 2022 03:02 — forked from vermorel/fast_convolve_1D.cpp
Fast 1D convolution with AVX
// Fast 1D convolution with AXV
// By Joannes Vermorel, Lokad, January 2018
// Released under MIT license
#include <string.h>
#include <stdio.h>
#include <malloc.h>
/* A simple implementation of a 1D convolution that just iterates over
* scalar values of the input array.