Skip to content

Commit 1ddac4b

Browse files
authored
Merge pull request #509 from nouiz/f16
Remove include that break cuda8 and isn't need anymore in cuda9.
2 parents ea1eeea + 9f01cb4 commit 1ddac4b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
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):

src/gpuarray/ext_cuda.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#define LIBGPU_EXT_CUDA
33

44
#include <cuda.h>
5-
#include <cuda_fp16.h>
65

76
#include <gpuarray/config.h>
87
#include <gpuarray/buffer.h>

0 commit comments

Comments
 (0)