from pathlib import Path
import numpy as np
from dsp_reference_case import run_hot_path

out = Path(__file__).parent / "baselines" / "dsp_hot_path.npz"
out.parent.mkdir(parents=True, exist_ok=True)
np.savez_compressed(out, **run_hot_path())
print(out)
