Files
Toooba/Tests/isa/CPrograms/Benchmarks/barnes/barnes.c
2026-04-19 23:07:57 +01:00

77 lines
1.5 KiB
C

/* The Computer Language Benchmarks Game
* https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
*
* Contributed by Mr Ledrug
* https://github.com/dstogov/c-benchmarks
* spectral-norm
* Algorithm lifted from Intel Fortran #2 code by Steve Decker et al.
*/
// #include <stdio.h>
// #include <math.h>
#include <stddef.h>
#include <stdint.h>
void* tiny_malloc(size_t);
void tiny_free(void*);
static inline int A(int i, int j) {
return ((i+j) * (i+j+1) / 2 + i + 1);
}
double dot(double * v, double * u, int n) {
int i;
double sum = 0;
for (i = 0; i < n; i++)
sum += v[i] * u[i];
return sum;
}
void mult_Av(double * v, double * out, int n) {
int i, j;
double sum;
for (i = 0; i < n; i++) {
for (sum = j = 0; j < n; j++)
sum += v[j] / A(i,j);
out[i] = sum;
}
}
void mult_Atv(double * v, double * out,int n) {
int i, j;
double sum;
for (i = 0; i < n; i++) {
for (sum = j = 0; j < n; j++)
sum += v[j] / A(j,i);
out[i] = sum;
}
}
double *tmp;
void mult_AtAv(double *v, double *out,int n) {
//mult_Av(v, tmp, n);
mult_Atv(tmp, out, n);
}
int main(void) {
int n = 1;
// if (n <= 0) n = 2000;
double *u, *v;
u = tiny_malloc(n * sizeof(double));
v = tiny_malloc(n * sizeof(double));
tmp = tiny_malloc(n * sizeof(double));
int i;
for (i = 0; i < n; i++) u[i] = 1;
for (i = 0; i < 10; i++) {
mult_AtAv(u, v, n);
mult_AtAv(v, u, n);
}
// printf("%.9f\n", sqrt(dot(u,v, n) / dot(v,v,n)));
return 0;
}