mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
46 lines
1 KiB
C
46 lines
1 KiB
C
#include <villas/utils.h>
|
|
|
|
#include <villas/fpga/card.h>
|
|
|
|
#include <villas/fpga/ips/intc.h>
|
|
|
|
#include "bench.h"
|
|
|
|
int fpga_benchmark_memcpy(struct fpga_card *c)
|
|
{
|
|
char *map = c->map + 0x200000;
|
|
uint32_t *mapi = (uint32_t *) map;
|
|
|
|
char fn[256];
|
|
snprintf(fn, sizeof(fn), "results/bar0_%s_%s.dat", intc_flags & INTC_POLLING ? "polling" : "irq", uts.release);
|
|
FILE *g = fopen(fn, "w");
|
|
fprintf(g, "# bytes cycles\n");
|
|
|
|
uint32_t dummy = 0;
|
|
|
|
for (int exp = BENCH_DM_EXP_MIN; exp <= BENCH_DM_EXP_MAX; exp++) {
|
|
uint64_t len = 1 << exp;
|
|
uint64_t start, end, total = 0;
|
|
uint64_t runs = (BENCH_RUNS << 2) >> exp;
|
|
|
|
for (int i = 0; i < runs + BENCH_WARMUP; i++) {
|
|
start = rdtsc();
|
|
|
|
for (int j = 0; j < len / 4; j++)
|
|
// mapi[j] = j; // write
|
|
dummy += mapi[j]; // read
|
|
|
|
end = rdtsc();
|
|
|
|
if (i > BENCH_WARMUP)
|
|
total += end - start;
|
|
}
|
|
|
|
info("exp = %u\truns = %ju\ttotal = %ju\tavg = %ju\tavgw = %ju", exp, runs, total, total / runs, total / (runs * len));
|
|
fprintf(g, "%zu %lu %ju\n", len, total / runs, runs);
|
|
}
|
|
|
|
fclose(g);
|
|
|
|
return 0;
|
|
}
|