From c3c8fd7199f762491089063b30b2237ebc2183ef Mon Sep 17 00:00:00 2001 From: lucasdelimanogueira Date: Sat, 25 May 2024 09:10:34 -0300 Subject: [PATCH] fix name module parallel --- norch/nn/__init__.py | 2 +- norch/nn/{distributed.py => parallel.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename norch/nn/{distributed.py => parallel.py} (100%) diff --git a/norch/nn/__init__.py b/norch/nn/__init__.py index 560eef8..c131ea4 100644 --- a/norch/nn/__init__.py +++ b/norch/nn/__init__.py @@ -2,4 +2,4 @@ from .modules import * from .activation import * from .loss import * from .functional import * -from .distributed import * \ No newline at end of file +from .parallel import * \ No newline at end of file diff --git a/norch/nn/distributed.py b/norch/nn/parallel.py similarity index 100% rename from norch/nn/distributed.py rename to norch/nn/parallel.py