From 9adeef1004b4254d5489ecd936db9f3b7cb73927 Mon Sep 17 00:00:00 2001 From: acherstyx Date: Fri, 19 Apr 2024 14:38:23 +0800 Subject: [PATCH] Release: v0.1.1 --- README.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 13a28f4..ac31337 100644 --- a/README.md +++ b/README.md @@ -63,3 +63,4 @@ Currently, the main difference includes: - Following `loky`, the pickling error described in [facebookresearch/hydra#2038](https://github.com/facebookresearch/hydra/issues/2038) is fixed through the use of `cloudpickle`. This version of the launcher now supports `start_method=spawn`, which is required by CUDA (see [pytorch/pytorch#40403](https://github.com/pytorch/pytorch/issues/40403)). - The config is adjusted to match with `torchrun`. - Fix `hydra.runtime.output_dir` missing after spawn. +- Fix the return value of multi-node training. diff --git a/pyproject.toml b/pyproject.toml index 94fbc43..b64aa63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hydra-torchrun-launcher" -version = "0.1.0" +version = "0.1.1" description = "Hydra torchrun launcher" readme = "README.md" requires-python = ">=3.8"