From 13225ce77b067e9209871d92fff76a72fe0daf58 Mon Sep 17 00:00:00 2001 From: UENISHI Kota Date: Mon, 23 Apr 2018 17:31:35 +0900 Subject: [PATCH] Fix p2p-communication test --- .../functions_tests/test_point_to_point_communication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/chainermn_tests/functions_tests/test_point_to_point_communication.py b/tests/chainermn_tests/functions_tests/test_point_to_point_communication.py index b31f2210..e4a5b9e3 100644 --- a/tests/chainermn_tests/functions_tests/test_point_to_point_communication.py +++ b/tests/chainermn_tests/functions_tests/test_point_to_point_communication.py @@ -234,5 +234,5 @@ def test_non_variable_send(self): x = chainermn.functions.recv( self.communicator, rank=self.rank_recv) phi = chainermn.functions.send( - x, self.communicator, rank=self.rank_next) + x, self.communicator, rank=self.rank_send) phi.backward()