HTML Preparation code:
AخA
 
1
<!--your preparation HTML code goes here-->
Script Preparation code:
 
const n = 5.4321; const m = 1.2345; 
Tests:
  • Divide

     
    const resultN = n / Math.PI;
    const resultM = m / Math.PI;
  • Multiply by Inverse

     
    const invPi = 1 / Math.PI;
    const resultN = n * invPi;
    const resultM = m * invPi;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Divide
    Multiply by Inverse

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one month ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133 on Windows
View result in a separate tab
Test name Executions per second
Divide 175088144.0 Ops/sec
Multiply by Inverse 185659776.0 Ops/sec