search for: sum_org

Displaying 1 result from an estimated 1 matches for "sum_org".

Did you mean: sum_opt
2016 Aug 26
2
[PATCH 9/9] Optimize silk_inner_prod_aligned_scale() for ARM NEON
...+#include <stdio.h> +#include <string.h> + +#include "modes.h" +#include "SigProc_FIX.h" + +#define MAX_LEN 240 + +static int test_silk_inner_prod_aligned_scale(int arch) +{ + opus_int16 inVec1[MAX_LEN], inVec2[MAX_LEN]; + opus_int scale, len; + opus_int32 sum_org, sum_opt; + opus_int i; + + printf("%44s() ...", __func__); + for(scale = 0; scale <= 31; scale++) { + for(len = 0; len <= MAX_LEN; len++) { /* len is larger than or equal to d. */ + for (i=0;i<len;++i) { + inVec1[i] = (rand() % 65536)...