test/run_benchmarks: avoid relative imports as done on others tests.

This commit is contained in:
Florent Kermarrec 2020-03-26 10:17:02 +01:00
parent 24c075ed3a
commit 0cbdbf18ad
1 changed files with 2 additions and 4 deletions

View File

@ -31,9 +31,7 @@ from litex.tools.litex_sim import get_sdram_phy_settings, sdram_module_nphases
from litedram import modules as litedram_modules from litedram import modules as litedram_modules
from litedram.common import Settings as _Settings from litedram.common import Settings as _Settings
from . import benchmark from test import benchmark
from .benchmark import load_access_pattern
# Benchmark configuration -------------------------------------------------------------------------- # Benchmark configuration --------------------------------------------------------------------------
@ -76,7 +74,7 @@ class CustomAccess(Settings):
if not os.path.isabs(path): if not os.path.isabs(path):
benchmark_dir = os.path.dirname(benchmark.__file__) benchmark_dir = os.path.dirname(benchmark.__file__)
path = os.path.join(benchmark_dir, path) path = os.path.join(benchmark_dir, path)
self._pattern = load_access_pattern(path) self._pattern = benchmark.load_access_pattern(path)
return self._pattern return self._pattern
@property @property