2025-03-13 14:48:15 +08:00
|
|
|
from PytorchBoot.application import PytorchBootApplication
|
|
|
|
from runners.simulator import Simulator
|
|
|
|
|
|
|
|
@PytorchBootApplication("sim")
|
|
|
|
class SimulateApp:
|
|
|
|
@staticmethod
|
|
|
|
def start():
|
2025-04-09 15:17:24 +08:00
|
|
|
simulator = Simulator("configs/local/simulation_config.yaml")
|
|
|
|
simulator.run("create")
|
|
|
|
simulator.run("simulate")
|
2025-03-13 14:48:15 +08:00
|
|
|
|