Skip to content

Instantly share code, notes, and snippets.

@JobLeonard
Created January 31, 2023 11:21
Show Gist options
  • Select an option

  • Save JobLeonard/73ca2a4c77fe292b03a1b0c6cbf745eb to your computer and use it in GitHub Desktop.

Select an option

Save JobLeonard/73ca2a4c77fe292b03a1b0c6cbf745eb to your computer and use it in GitHub Desktop.
My Test
{"title":"My Test","initialization":"// runs once\nconst t = new Float64Array(10000);","setup":"// runs before each test\nfor (let i = 0, {random} = Math; i < t.length; i++) {\n const v = random();\n t[i] = v > 0.1 ? v : NaN;\n}","tests":[{"name":"test 1","code":"// isNaN(x)\nconst {isNaN} = Number;\nfor (let i = 0; i < t.length; i++) {\n const x = t[i];\n if (isNaN(x)) t[i] = 0;\n}","results":{"aborted":false,"count":3684,"cycles":6,"hz":46405.9109787597,"stats":{"moe":1.5981606851717996e-7,"rme":0.7416410248583613,"sem":8.153881046794896e-8,"deviation":6.471942440946694e-7,"mean":0.00002154897897506434,"variance":4.1886038958927043e-13,"numSamples":63},"times":{"cycle":0.07938643854413702,"elapsed":6.048,"period":0.00002154897897506434,"timeStamp":1675164063566}},"platforms":{"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0":{"aborted":false,"count":3684,"cycles":6,"hz":46405.9109787597,"stats":{"moe":1.5981606851717996e-7,"rme":0.7416410248583613,"sem":8.153881046794896e-8,"deviation":6.471942440946694e-7,"mean":0.00002154897897506434,"variance":4.1886038958927043e-13,"numSamples":63},"times":{"cycle":0.07938643854413702,"elapsed":6.048,"period":0.00002154897897506434,"timeStamp":1675164063566}}}},{"name":"test 2","code":"// put test code here\nfor (let i = 0; i < t.length; i++) {\n const x = t[i];\n if (x !== x) t[i] = 0;\n}","results":{"aborted":false,"count":5733,"cycles":7,"hz":65246.81976684933,"stats":{"moe":2.9552052940351205e-7,"rme":1.9281774719394846,"sem":1.507757803079143e-7,"deviation":0.000001148274132684659,"mean":0.000015326417495494256,"variance":1.3185334837927056e-12,"numSamples":58},"times":{"cycle":0.08786635150166858,"elapsed":6.086,"period":0.000015326417495494256,"timeStamp":1675164069619}},"platforms":{"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0":{"aborted":false,"count":5733,"cycles":7,"hz":65246.81976684933,"stats":{"moe":2.9552052940351205e-7,"rme":1.9281774719394846,"sem":1.507757803079143e-7,"deviation":0.000001148274132684659,"mean":0.000015326417495494256,"variance":1.3185334837927056e-12,"numSamples":58},"times":{"cycle":0.08786635150166858,"elapsed":6.086,"period":0.000015326417495494256,"timeStamp":1675164069619}}}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment