Skip to content

Commit e66bcff

Browse files
committed
Fix to new benchmark paths
1 parent e176817 commit e66bcff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test-wheel-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ jobs:
274274
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0' }}
275275
run: |
276276
pip install pyperf
277-
pushd cuda_bindings/benchmarks
277+
pushd benchmarks/cuda_bindings
278278
python run_pyperf.py --fast --min-time 1
279279
popd
280280

benchmarks/cuda_bindings/tests/test_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from pathlib import Path
1111

1212
REPO_ROOT = Path(__file__).resolve().parents[3]
13-
RUNNER_MAIN_PATH = REPO_ROOT / "cuda_bindings/benchmarks/runner/main.py"
14-
BENCH_LAUNCH_PATH = REPO_ROOT / "cuda_bindings/benchmarks/benchmarks/bench_launch.py"
13+
RUNNER_MAIN_PATH = REPO_ROOT / "benchmarks/cuda_bindings/runner/main.py"
14+
BENCH_LAUNCH_PATH = REPO_ROOT / "benchmarks/cuda_bindings/benchmarks/bench_launch.py"
1515

1616

1717
def load_module_from_path(module_name: str, module_path: Path):

0 commit comments

Comments
 (0)