ovni/test/emu/ovni/flush-overhead.c
Rodrigo Arias f848ddb37f Increase the flush overhead limit to 2 ms
The current CI disk is slower doing the flushes.
2023-04-05 15:35:37 +02:00

80 lines
1.6 KiB
C

/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "instr.h"
#include "ovni.h"
static void
emit(uint8_t *buf, size_t size)
{
struct ovni_ev ev = {0};
ovni_ev_set_mcv(&ev, "OB.");
ovni_ev_set_clock(&ev, ovni_clock_now());
ovni_ev_jumbo_emit(&ev, buf, size);
}
#define NRUNS 50
int
main(void)
{
if (setenv("OVNI_TMPDIR", "/dev/shm/ovni-flush-overhead", 1) != 0) {
perror("setenv failed");
exit(EXIT_FAILURE);
}
instr_start(0, 1);
/* Use 1 MiB of payload */
size_t payload_size = 1024 * 1024;
uint8_t *payload_buf = calloc(1, payload_size);
if (!payload_buf) {
perror("calloc failed");
exit(EXIT_FAILURE);
}
double *times = calloc(sizeof(double), NRUNS);
if (times == NULL) {
perror("calloc failed");
exit(EXIT_FAILURE);
}
for (int i = 0; i < NRUNS; i++) {
emit(payload_buf, payload_size);
double t0 = (double) ovni_clock_now();
ovni_flush();
double t1 = (double) ovni_clock_now();
times[i] = (t1 - t0) * 1e-6; /* to milliseconds */
}
double mean = 0.0;
for (int i = 0; i < NRUNS; i++)
mean += times[i];
mean /= (double) NRUNS;
fprintf(stderr, "mean %f ms\n", mean);
/* It should be able to write 1 MiB in less than 2 ms */
if (mean > 2.0) {
fprintf(stderr, "took too much time to flush: %f ms\n", mean);
fprintf(stderr, "times (in ms):\n");
for (int i = 0; i < NRUNS; i++)
fprintf(stderr, " %4d %f\n", i, times[i]);
exit(EXIT_FAILURE);
}
instr_end();
free(payload_buf);
free(times);
return 0;
}