1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
import os
import platform
import arrayimpl
import mpiunittest as unittest
from mpi4py import MPI
import platform
def allclose(a, b, rtol=1.0e-5, atol=1.0e-8):
try:
iter(a)
except TypeError:
a = [a]
try:
iter(b)
except TypeError:
b = [b]
for x, y in zip(a, b):
if x == y:
continue
if abs(x - y) > (atol + rtol * abs(y)):
return False
return True
class BaseTestPack:
#
COMM = MPI.COMM_NULL
skipdtype = []
def testPackSize(self):
for array, typecode in arrayimpl.loop():
with arrayimpl.test(self):
if typecode in self.skipdtype:
continue
datatype = array.TypeMap[typecode]
itemsize = datatype.Get_size()
overhead = datatype.Pack_size(0, self.COMM)
for count in range(10):
with self.subTest(count=count):
pack_size = datatype.Pack_size(count, self.COMM)
self.assertEqual(
pack_size - overhead, count * itemsize
)
def testPackUnpack(self):
for array, typecode1 in arrayimpl.loop():
with arrayimpl.test(self):
if typecode1 in self.skipdtype:
continue
for typecode2 in array.TypeMap:
if typecode2 in self.skipdtype:
continue
datatype1 = array.TypeMap[typecode1]
datatype2 = array.TypeMap[typecode2]
for count in range(10):
with self.subTest(
typecode=(typecode1, typecode2), count=count
):
# input and output arrays
iarray1 = array(range(count), typecode1).as_raw()
iarray2 = array(range(count), typecode2).as_raw()
oarray1 = array(count, typecode1, count).as_raw()
oarray2 = array(count, typecode2, count).as_raw()
# temp array for packing
size1 = datatype1.Pack_size(
len(iarray1), self.COMM
)
size2 = datatype2.Pack_size(
len(iarray2), self.COMM
)
tmpbuf = array(0, "b", size1 + size2 + 1).as_raw()
# pack input arrays
position = 0
position = datatype1.Pack(
iarray1, tmpbuf, position, self.COMM
)
position = datatype2.Pack(
iarray2, tmpbuf, position, self.COMM
)
# unpack output arrays
position = 0
position = datatype1.Unpack(
tmpbuf, position, oarray1, self.COMM
)
position = datatype2.Unpack(
tmpbuf, position, oarray2, self.COMM
)
# test
self.assertTrue(allclose(iarray1, oarray1))
self.assertTrue(allclose(iarray2, oarray2))
EXT32 = "external32"
class BaseTestPackExternal:
#
skipdtype = []
def testPackSize(self):
for array, typecode in arrayimpl.loop():
with arrayimpl.test(self):
if typecode in self.skipdtype:
continue
datatype = array.TypeMap[typecode]
overhead = datatype.Pack_external_size(EXT32, 0)
for count in range(10):
with self.subTest(count=count):
pack_size = datatype.Pack_external_size(EXT32, count)
real_size = pack_size - overhead
self.assertGreaterEqual(real_size, 0)
@unittest.skipMPI("openmpi(<5.0)", platform.machine() == 'sparc64')
def testPackUnpackExternal(self):
for array, typecode1 in arrayimpl.loop():
with arrayimpl.test(self):
if unittest.is_mpi_gpu("mpich", array):
continue
if unittest.is_mpi_gpu("openmpi", array):
continue
if unittest.is_mpi_gpu("mvapich", array):
continue
if typecode1 in self.skipdtype:
continue
for typecode2 in array.TypeMap:
if typecode2 in self.skipdtype:
continue
datatype1 = array.TypeMap[typecode1]
datatype2 = array.TypeMap[typecode2]
for count in range(1, 10):
with self.subTest(
count=count, typecode=(typecode1, typecode2)
):
# input and output arrays
val = 127 if typecode1 == "b" else 255
iarray1 = array(val, typecode1, count).as_raw()
iarray2 = array(range(count), typecode2).as_raw()
oarray1 = array(-1, typecode1, count).as_raw()
oarray2 = array(-1, typecode2, count).as_raw()
# temp array for packing
size1 = datatype1.Pack_external_size(
EXT32, len(iarray1)
)
size2 = datatype2.Pack_external_size(
EXT32, len(iarray2)
)
tmpbuf = array(0, "b", size1 + size2 + 1).as_raw()
# pack input arrays
position = 0
position = datatype1.Pack_external(
EXT32, iarray1, tmpbuf, position
)
position = datatype2.Pack_external(
EXT32, iarray2, tmpbuf, position
)
# unpack output arrays
position = 0
position = datatype1.Unpack_external(
EXT32, tmpbuf, position, oarray1
)
position = datatype2.Unpack_external(
EXT32, tmpbuf, position, oarray2
)
# test result
self.assertTrue(allclose(iarray1, oarray1))
self.assertTrue(allclose(iarray2, oarray2))
class TestPackSelf(BaseTestPack, unittest.TestCase):
#
COMM = MPI.COMM_SELF
class TestPackWorld(BaseTestPack, unittest.TestCase):
#
COMM = MPI.COMM_SELF
@unittest.skipMPI("openmpi(<3.0.0)")
class TestPackExternal(BaseTestPackExternal, unittest.TestCase):
#
pass
name, version = MPI.get_vendor()
if name == "MPICH":
if version < (4, 0, 0):
BaseTestPackExternal.skipdtype += "ldgLFDG"
if platform.architecture(None)[0] == "32bit":
BaseTestPackExternal.skipdtype += "gG"
elif name == "Open MPI":
if version < (5, 0, 0):
BaseTestPackExternal.skipdtype += "gG"
if (platform.system(), platform.machine()) == ("Darwin", "arm64"):
BaseTestPackExternal.skipdtype += "G"
elif name == "Intel MPI":
BaseTestPackExternal.skipdtype += "lgLG"
BaseTestPackExternal.skipdtype += "D"
if os.name == "nt":
BaseTestPackExternal.skipdtype += "q"
elif name == "Microsoft MPI":
BaseTestPackExternal.skipdtype += "gFDG"
elif name == "MVAPICH":
BaseTestPackExternal.skipdtype += "lfdgLFDG"
elif name == "MPICH2":
BaseTestPackExternal.skipdtype += "ldgLFDG"
else:
try:
MPI.BYTE.Pack_external_size(EXT32, 0)
except NotImplementedError:
unittest.disable(BaseTestPackExternal, "mpi-ext32")
if __name__ == "__main__":
unittest.main()
|