[dpdk-dev] [PATCH v3 07/14] test-bbdev: support for performance tests
Akhil Goyal
akhil.goyal at nxp.com
Wed Mar 25 14:47:11 CET 2020
>
> From: Nic Chautru <nicolas.chautru at intel.com>
>
> Includes support for BLER wireless performance test with
> new arguments for SNR and number of iterations for 5G.
>
It would be better to add more info in the commit log.
You can add reference to some standard link which is being
Followed so that patch can be reviewed.
There should be some documentation about the test cases in this
Patch.
> Signed-off-by: Nic Chautru <nicolas.chautru at intel.com>
> +
> +static inline double
> +maxstar(double A, double B)
> +{
> + if (fabs(A - B) > 5)
> + return fmax(A, B);
> + else
> + return fmax(A, B) + log1p(exp(-fabs(A - B)));
> +}
> +
I think you can use RTE_MAX here.
More information about the dev
mailing list