From 6bf550fc9180350afdf8649a721ee57e99856f7c Mon Sep 17 00:00:00 2001 From: wangyicheng Date: Wed, 23 Mar 2022 18:02:09 +0800 Subject: [PATCH] test/test_c10d.py change import order --- test/test_c10d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_c10d.py b/test/test_c10d.py index 428280e9430..1046bab6ad1 100644 --- a/test/test_c10d.py +++ b/test/test_c10d.py @@ -17,10 +17,10 @@ from enum import IntEnum, unique import os import unittest import torch -import torch_npu import torch.distributed as c10d import torch.distributed as dist import torch.multiprocessing as mp +import torch_npu from torch_npu.testing.testcase import TestCase, run_tests -- Gitee