> 
> From: Nic Chautru <nicolas.chau...@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.chau...@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.

Reply via email to