comparison src/fftw-3.3.8/libbench2/aset.c @ 82:d0c2a83c1364

Add FFTW 3.3.8 source, and a Linux build
author Chris Cannam
date Tue, 19 Nov 2019 14:52:55 +0000
parents
children
comparison
equal deleted inserted replaced
81:7029a4916348 82:d0c2a83c1364
1 /* not worth copyrighting */
2
3 #include "libbench2/bench.h"
4
5 void aset(bench_real *A, int n, bench_real x)
6 {
7 int i;
8 for (i = 0; i < n; ++i)
9 A[i] = x;
10 }