build(deps-dev): apply updates
[benchmarks-js.git] / max.mjs
diff --git a/max.mjs b/max.mjs
index 2708eb0f51cbfb77bd43a10fde5667bea79e0ac6..12b458c66f30f53438339c7f8034a491685a93f0 100644 (file)
--- a/max.mjs
+++ b/max.mjs
@@ -1,4 +1,4 @@
-import Benchmark from 'benny'
+import { bench, group, run } from 'tatami-ng'
 
 import { generateRandomNumberArray } from './benchmark-utils.mjs'
 
 
 import { generateRandomNumberArray } from './benchmark-utils.mjs'
 
@@ -11,7 +11,7 @@ const testArray = generateRandomNumberArray(size)
  * @returns
  */
 function loopMax (values) {
  * @returns
  */
 function loopMax (values) {
-  let maximum = -Infinity
+  let maximum = Number.NEGATIVE_INFINITY
   for (const value of values) {
     if (value > maximum) maximum = value
   }
   for (const value of values) {
     if (value > maximum) maximum = value
   }
@@ -26,7 +26,7 @@ function loopMax (values) {
 function reduceTernaryMax (values) {
   return values.reduce(
     (maximum, num) => (maximum > num ? maximum : num),
 function reduceTernaryMax (values) {
   return values.reduce(
     (maximum, num) => (maximum > num ? maximum : num),
-    -Infinity
+    Number.NEGATIVE_INFINITY
   )
 }
 
   )
 }
 
@@ -36,7 +36,10 @@ function reduceTernaryMax (values) {
  * @returns
  */
 function reduceMathMax (values) {
  * @returns
  */
 function reduceMathMax (values) {
-  return values.reduce((maximum, num) => Math.max(maximum, num), -Infinity)
+  return values.reduce(
+    (maximum, num) => Math.max(maximum, num),
+    Number.NEGATIVE_INFINITY
+  )
 }
 
 /**
 }
 
 /**
@@ -48,26 +51,24 @@ function sortMax (values) {
   return values.sort((a, b) => b - a)[0]
 }
 
   return values.sort((a, b) => b - a)[0]
 }
 
-Benchmark.suite(
-  `Max from ${size} numbers`,
-  Benchmark.add('Math.max', () => {
+group(`Max from ${size} numbers`, () => {
+  bench('Math.max', () => {
     Math.max(...testArray)
     Math.max(...testArray)
-  }),
-  Benchmark.add('loopMax', () => {
+  })
+  bench('loopMax', () => {
     loopMax(testArray)
     loopMax(testArray)
-  }),
-  Benchmark.add('reduceTernaryMax', () => {
+  })
+  bench('reduceTernaryMax', () => {
     reduceTernaryMax(testArray)
     reduceTernaryMax(testArray)
-  }),
-  Benchmark.add('reduceMath.max', () => {
+  })
+  bench('reduceMathMax', () => {
     reduceMathMax(testArray)
     reduceMathMax(testArray)
-  }),
-  Benchmark.add('sortMax', () => {
+  })
+  bench('sortMax', () => {
     sortMax(testArray)
     sortMax(testArray)
-  }),
-  Benchmark.cycle(),
-  Benchmark.complete(),
-  Benchmark.save({ file: 'max', format: 'json', details: true }),
-  Benchmark.save({ file: 'max', format: 'chart.html', details: true }),
-  Benchmark.save({ file: 'max', format: 'table.html', details: true })
-).catch(console.error)
+  })
+})
+
+await run({
+  units: true,
+})