From 29d011a0531e2474f6ac3d63c927c6c1dc2ebb19 Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Tue, 17 Sep 2024 09:30:33 +0530 Subject: [PATCH] bench: remove `f` suffix in C benchmark 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();