release 0.1.0
This commit is contained in:
commit
30d94536a9
90 changed files with 7722 additions and 0 deletions
17
benchmarks/bench.ps1
Normal file
17
benchmarks/bench.ps1
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
$fileDirname = $PSScriptRoot
|
||||
$owaCmd = ".\target\release\owa-rs.exe"
|
||||
|
||||
for ($i = 1; $i -le 1; $i++) {
|
||||
$pythonFile = "$fileDirname/case$i/main.py"
|
||||
$owaFile = "$fileDirname/case$i/main.owa"
|
||||
$noOwuFile = "$fileDirname/case$i/no_owu.owa"
|
||||
Write-Host "Running case #$i"
|
||||
hyperfine `
|
||||
--warmup 5 `
|
||||
--min-runs 50 `
|
||||
--show-output `
|
||||
--export-markdown "$fileDirname/case$i/result.md" `
|
||||
"python3.14 $pythonFile" `
|
||||
"$owaCmd run $owaFile" `
|
||||
"$owaCmd --no-owu $noOwuFile"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue