Skip to content

Commit

Permalink
Absolute path in bennchmark script
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgarbar committed Nov 5, 2023
1 parent 4875a3c commit e6bae88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BFSBenchmark
BFSWithoutTransfer
4 changes: 2 additions & 2 deletions benchmarks/GraphBLAS-sharp.Benchmarks/Scripts/Benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

from dataclasses import dataclass

ROOT = pathlib.Path(__file__).parent.parent.parent.parent
BENCHMARKS = pathlib.Path(__file__).parent.parent
ROOT = pathlib.Path(__file__).resolve().parent.parent.parent.parent
BENCHMARKS = pathlib.Path(__file__).resolve().parent.parent
CONFIGS = BENCHMARKS / "Configs"
BINARIES = BENCHMARKS / "bin" / "Release" / "net7.0"
RESULTS = ROOT / "BenchmarkDotNet.Artifacts" / "results"
Expand Down

0 comments on commit e6bae88

Please sign in to comment.