From 403f6aee1324bac402d79c2b02b13fd9c5f4d7ba Mon Sep 17 00:00:00 2001 From: RafaelGSS Date: Sun, 6 Oct 2024 13:08:20 -0300 Subject: [PATCH] benchmark: adjust byte size for buffer-copy --- benchmark/buffers/buffer-copy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/buffers/buffer-copy.js b/benchmark/buffers/buffer-copy.js index a3bf6693b146b5..c2dafc8515c4f2 100644 --- a/benchmark/buffers/buffer-copy.js +++ b/benchmark/buffers/buffer-copy.js @@ -2,7 +2,7 @@ const common = require('../common.js'); const bench = common.createBenchmark(main, { - bytes: [0, 8, 128, 32 * 1024], + bytes: [8, 128, 1024], partial: ['true', 'false'], n: [6e6], });