Skip to content

Commit 9f01cb4

Browse files
committed
Fix tests.
1 parent 9e1ebf4 commit 9f01cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygpu/tests/test_collectives.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def setUpClass(cls):
101101
cls.ctx = gpuarray.init("cuda" + str(cls.rank))
102102
print("*** Collectives testing for", cls.ctx.devname, file=sys.stderr)
103103
cls.cid = GpuCommCliqueId(context=cls.ctx)
104-
cls.mpicomm.Bcast(cls.cid, root=0)
104+
cls.mpicomm.Bcast(cls.cid.comm_id, root=0)
105105
cls.gpucomm = GpuComm(cls.cid, cls.size, cls.rank)
106106

107107
def test_count(self):

0 commit comments

Comments
 (0)