mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
33 lines
758 B
C
33 lines
758 B
C
/*
|
|
* Copyright (C) 2017 Freie Universität Berlin
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License v2.1. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup sys_benchmark
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Utility functions for the benchmark module
|
|
*
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "benchmark.h"
|
|
|
|
void benchmark_print_time(uint32_t time, unsigned long runs, const char *name)
|
|
{
|
|
uint32_t full = (time / runs);
|
|
uint32_t div = (time - (full * runs)) / (runs / 1000);
|
|
|
|
printf("%11s: %9" PRIu32 "us --- %2" PRIu32 ".%03" PRIu32 "us per call\n",
|
|
name, time, full, div);
|
|
}
|