[docs]defstore_launcher_configs(store:ZenStore)->None:"""Stores Hydra ``hydra/launcher`` group configs. Names: ``local``, ``slurm``. Args: store: See :meth:`~.BaseTaskRunner.store_configs`. """# Setting up the launchers is a little bit different from the other# configs. Fields get resolved before the ``subtask`` is created.args:dict[str,Any]={# `generate_config`` does not like dict[str, str]"submitit_folder":"${hydra.sweep.dir}/${now:%Y-%m-%d-%H-%M-%S}/","stderr_to_stdout":True,"timeout_min":10080,# 7 days}store(LocalQueueConf(**args),group="hydra/launcher",name="local")store(SlurmQueueConf(**args),group="hydra/launcher",name="slurm")