有没有一种简单的方法来获取对应于特定 numpy 类型的 8 位字节数?
我知道我可以这样做:
lookup = {np.uint8: 1, np.int8: 1,
np.uint16: 2, np.int16: 2,
np.uint32: 4, np.int32: 4,
np.uint64: 8, np.int64: 8}
def getByteSize(dtype):
return lookup[dtype]
但这似乎有点笨拙,似乎应该有一个内置的方法来检索此信息。