Skip to content

Commit

Permalink
[loop_tool] Remove unused site data path from datasets.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCummins committed Dec 14, 2021
1 parent d436457 commit b797c33
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions compiler_gym/envs/loop_tool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from compiler_gym.datasets import Benchmark, Dataset, benchmark
from compiler_gym.spaces import Reward
from compiler_gym.util.registration import register
from compiler_gym.util.runfiles_path import runfiles_path, site_data_path
from compiler_gym.util.runfiles_path import runfiles_path

LOOP_TOOL_SERVICE_BINARY: Path = runfiles_path(
"compiler_gym/envs/loop_tool/service/compiler_gym-loop_tool-service"
Expand Down Expand Up @@ -56,7 +56,6 @@ def __init__(self, *args, **kwargs):
name="benchmark://loop_tool-cuda-v0",
license="MIT",
description="loop_tool dataset",
site_data_base=site_data_path("loop_tool_dataset"),
)

def benchmark_uris(self) -> Iterable[str]:
Expand All @@ -72,7 +71,6 @@ def __init__(self, *args, **kwargs):
name="benchmark://loop_tool-cpu-v0",
license="MIT",
description="loop_tool dataset",
site_data_base=site_data_path("loop_tool_dataset"),
)

def benchmark_uris(self) -> Iterable[str]:
Expand Down

0 comments on commit b797c33

Please sign in to comment.