Difficult-Rocket/start.ps1

15 lines
272 B
PowerShell
Raw Normal View History

2022-11-20 20:25:46 +08:00
function run {
python3.11.exe -OO DR.py
2022-11-20 20:25:46 +08:00
}
function viz_run {
python3.11 -OO -m viztracer --output_file ./logs/viz_result.json --open --tracer_entries 10000000 DR.py
2022-11-20 20:25:46 +08:00
}
if ($args -eq "run") {
run
} elseif ($args -eq "viz") {
viz_run
2022-11-26 23:35:49 +08:00
} else {
run
2022-11-20 20:25:46 +08:00
}
pause