16 lines
275 B
Python
16 lines
275 B
Python
from dataclasses import dataclass
|
|
from pathlib import Path
|
|
|
|
@dataclass(frozen=True)
|
|
class Configuration:
|
|
name: str
|
|
workload: str
|
|
executable: Path
|
|
level: str
|
|
system: str
|
|
frequency: str = "3GHz"
|
|
|
|
@dataclass(frozen=True)
|
|
class Statistics:
|
|
ticks: int
|