Skip to content

Commit

Permalink
Add DaCapo Chopin 23.11 to list of DaCapo releases (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-sareen authored Nov 23, 2023
1 parent 3f5ece1 commit b964ecb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/running/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def __init__(self, **kwargs):
super().__init__(**kwargs)
self.release: str
self.release = kwargs["release"]
if self.release not in ["2006", "9.12", "evaluation"]:
raise ValueError("DaCapo release {} not recongized".format(self.release))
if self.release not in ["2006", "9.12", "evaluation", "23.11"]:
raise ValueError("DaCapo release {} not recognized".format(self.release))
self.path: Path
self.path = Path(os.path.expandvars(kwargs["path"]))
if not self.path.exists():
Expand Down Expand Up @@ -289,7 +289,7 @@ def __init__(self, **kwargs):
self.release = kwargs["release"]
if self.release not in ["1.03"]:
raise ValueError(
"SPECjbb2015 release {} not recongized".format(self.release)
"SPECjbb2015 release {} not recognized".format(self.release)
)
self.path: Path
self.path = Path(os.path.expandvars(kwargs["path"])).resolve()
Expand Down Expand Up @@ -415,7 +415,7 @@ def __init__(self, **kwargs):
self.release: str
self.release = kwargs["release"]
if self.release not in ["1.03_05"]:
raise ValueError("SPECjvm98 release {} not recongized".format(self.release))
raise ValueError("SPECjvm98 release {} not recognized".format(self.release))
self.path: Path
self.path = Path(os.path.expandvars(kwargs["path"])).resolve()

Expand Down

0 comments on commit b964ecb

Please sign in to comment.