13#ifndef TPGLIBS_NAIVEABSRUNSUMPROCESSOR_HPP_
14#define TPGLIBS_NAIVEABSRUNSUMPROCESSOR_HPP_
Naive signal processor: Calculates the running sum of the signal's absolute value.
naive_array_t process(const naive_array_t &signal) override
Calculate and store the running sum with absolute values.
std::array< int16_t, 16 > naive_array_t
The naive version uses a standard array instead of __m256i.
Naive signal processor: Calculates the running sum of the signal.