Benchmark is set to work as a standalone shape (#165)

This commit is contained in:
nwa
2023-06-18 22:47:50 +03:00
committed by GitHub
parent b0ea7b0b41
commit e0a3296660

View File

@@ -6,12 +6,13 @@ import subprocess
from itertools import islice from itertools import islice
from pathlib import Path from pathlib import Path
from typing import Optional
from typer import run from typer import run
def main( def main(
n_benchmarks: int | None = None, n_benchmarks: Optional[int] = None,
): ):
path = Path("benchmark") path = Path("benchmark")