From 65d1c5be91c83d9eea3c73fec21abbeb592d434f Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Tue, 17 Sep 2024 10:21:18 +0530 Subject: [PATCH] bench: remove `f` suffix in C benchmark PR-URL: https://github.com/stdlib-js/stdlib/pull/2911 Reviewed-by: Athan Reines Signed-off-by: Gunj Joshi --- .../math/base/special/erfcx/benchmark/c/native/benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/erfcx/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/erfcx/benchmark/c/native/benchmark.c index 57970e94e39..8de960a0bc0 100644 --- a/lib/node_modules/@stdlib/math/base/special/erfcx/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/erfcx/benchmark/c/native/benchmark.c @@ -97,7 +97,7 @@ static double benchmark( void ) { int i; for ( i = 0; i < 100; i++ ) { - x[ i ] = ( 1000.0f * rand_double() ) - 500.0f; + x[ i ] = ( 1000.0 * rand_double() ) - 500.0; } t = tic();