From 60548584069d2bff65c0f74e010dbf761d2c2454 Mon Sep 17 00:00:00 2001 From: Lei Shi Date: Mon, 27 Nov 2023 10:29:04 +0800 Subject: [PATCH] benchmark: update iterations in benchmark/crypto/aes-gcm-throughput.js Fixes: https://github.com/nodejs/node/issues/50571 --- benchmark/crypto/aes-gcm-throughput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/crypto/aes-gcm-throughput.js b/benchmark/crypto/aes-gcm-throughput.js index 0ac88f6e6ee5ea..cf249c6b6d832a 100644 --- a/benchmark/crypto/aes-gcm-throughput.js +++ b/benchmark/crypto/aes-gcm-throughput.js @@ -3,7 +3,7 @@ const common = require('../common.js'); const crypto = require('crypto'); const keylen = { 'aes-128-gcm': 16, 'aes-192-gcm': 24, 'aes-256-gcm': 32 }; const bench = common.createBenchmark(main, { - n: [500], + n: [2500], cipher: ['aes-128-gcm', 'aes-192-gcm', 'aes-256-gcm'], len: [1024, 4 * 1024, 16 * 1024, 64 * 1024, 256 * 1024, 1024 * 1024], });