release 0.1.0

This commit is contained in:
rus07tam 2026-05-06 12:21:06 +03:00
commit 30d94536a9
90 changed files with 7722 additions and 0 deletions

17
benchmarks/bench.ps1 Normal file
View 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"
}