HTML Preparation code:
AخA
 
1
<script src='https://cdn.jsdelivr.net/pyodide/v0.26.3/full/pyodide.js'></script>
Script Preparation code:
x
 
async function globalMeasureThatScriptPrepareFunction() {
    window.globalPyodide = await loadPyodide();
    console.log(globalPyodide.runPython('import sys; sys.version'));
    await globalPyodide.runPython(`
        from enum import Enum, auto
        class TestEnum(Enum):
            a = auto()
            b = auto()
        a = "connected"
        b = "disconnected"
    `);    
}
Tests:
  • Test #1 Enum

     
    window.globalPyodide.runPython(`
    c = 0
    for i in range(0, 100000):
        v = TestEnum.a if i % 2 == 0 else TestEnum.b
        if v is TestEnum.a:
            c = c + 1
    `);
  • String compare

     
    window.globalPyodide.runPython(`
    c = 0
    for i in range(0, 100000):
        v = "connected" if i % 2 == 0 else "disconnected"
        if v == "connected":
            c = c + 1
    `);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Test #1 Enum
    String compare

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 29 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0
Chrome 133 on Windows
View result in a separate tab
Test name Executions per second
Test #1 Enum 59.0 Ops/sec
String compare 73.0 Ops/sec