refactor: default benchmark to factorial
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 29 Mar 2024 02:17:47 +0000 (03:17 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 29 Mar 2024 02:17:47 +0000 (03:17 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
benchmarks/internal/cluster-worker.cjs
benchmarks/internal/thread-worker.mjs

index 94980725624e9897db66b55b0fda6a3392776b38..5f59d49b8971cd4d692fe3e01a4599ba13a03d66 100644 (file)
@@ -5,7 +5,7 @@ const { TaskFunctions } = require('../benchmarks-types.cjs')
 
 const taskFunction = data => {
   data = data || {}
-  data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  data.function = data.function || TaskFunctions.factorial
   data.debug = data.debug || false
   const res = executeTaskFunction(data)
   data.debug === true && console.debug(`This is the main thread ${isPrimary}`)
index 63d6e2defe91085e852e8786d4dac25b926c2422..e7c58f70cf336dfed2e4e167d925b089bd3d4f91 100644 (file)
@@ -6,7 +6,7 @@ import { executeTaskFunction } from '../benchmarks-utils.cjs'
 
 const taskFunction = data => {
   data = data || {}
-  data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  data.function = data.function || TaskFunctions.factorial
   data.debug = data.debug || false
   const res = executeTaskFunction(data)
   data.debug === true &&