[dpdk-dev] [PATCH v2 5/6] app/regex: support performance measurements per QP
Thomas Monjalon
thomas at monjalon.net
Fri Jan 8 10:08:58 CET 2021
20/12/2020 11:41, Ophir Munk:
> Up to this commit measuring the parsing elapsed time and Giga bits per
> second performance was done on the aggregation of all QPs (per core).
> This commit separates the time measurements per individual QP.
>
> Signed-off-by: Ophir Munk <ophirmu at nvidia.com>
> ---
> --- a/app/test-regex/main.c
> +++ b/app/test-regex/main.c
> + for (qp_id = 0; qp_id < nb_qps; qp_id++) {
> + time = ((double)qp->end - qp->start) / CLOCKS_PER_SEC;
This line triggers an error with PPC compiler:
error: ‘qp’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
time = ((double)qp->end - qp->start) / CLOCKS_PER_SEC;
More information about the dev
mailing list