1 2 3 4 5 6 7 8 9
param( [string]$Repository = "..\weavatrix", [int]$MaxCount = 500, [int]$Iterations = 100 ) $ErrorActionPreference = "Stop" $repo = (Resolve-Path -LiteralPath $Repository).Path cargo run --release --example benchmark -- $repo $MaxCount $Iterations