Fix pylint. (#7498)
This commit is contained in:
parent
eee527d264
commit
021f8bf28b
@ -219,7 +219,7 @@ def _numpy2ctypes_type(dtype):
|
|||||||
}
|
}
|
||||||
if np.intc is not np.int32: # Windows
|
if np.intc is not np.int32: # Windows
|
||||||
_NUMPY_TO_CTYPES_MAPPING[np.intc] = _NUMPY_TO_CTYPES_MAPPING[np.int32]
|
_NUMPY_TO_CTYPES_MAPPING[np.intc] = _NUMPY_TO_CTYPES_MAPPING[np.int32]
|
||||||
if dtype not in _NUMPY_TO_CTYPES_MAPPING.keys():
|
if dtype not in _NUMPY_TO_CTYPES_MAPPING:
|
||||||
raise TypeError(
|
raise TypeError(
|
||||||
f"Supported types: {_NUMPY_TO_CTYPES_MAPPING.keys()}, got: {dtype}"
|
f"Supported types: {_NUMPY_TO_CTYPES_MAPPING.keys()}, got: {dtype}"
|
||||||
)
|
)
|
||||||
@ -256,7 +256,7 @@ def ctypes2cupy(cptr, length, dtype):
|
|||||||
from cupy.cuda.memory import UnownedMemory
|
from cupy.cuda.memory import UnownedMemory
|
||||||
|
|
||||||
CUPY_TO_CTYPES_MAPPING = {cupy.float32: ctypes.c_float, cupy.uint32: ctypes.c_uint}
|
CUPY_TO_CTYPES_MAPPING = {cupy.float32: ctypes.c_float, cupy.uint32: ctypes.c_uint}
|
||||||
if dtype not in CUPY_TO_CTYPES_MAPPING.keys():
|
if dtype not in CUPY_TO_CTYPES_MAPPING:
|
||||||
raise RuntimeError(f"Supported types: {CUPY_TO_CTYPES_MAPPING.keys()}")
|
raise RuntimeError(f"Supported types: {CUPY_TO_CTYPES_MAPPING.keys()}")
|
||||||
addr = ctypes.cast(cptr, ctypes.c_void_p).value
|
addr = ctypes.cast(cptr, ctypes.c_void_p).value
|
||||||
# pylint: disable=c-extension-no-member,no-member
|
# pylint: disable=c-extension-no-member,no-member
|
||||||
|
|||||||
@ -830,7 +830,7 @@ def dispatch_data_backend(
|
|||||||
|
|
||||||
def _to_data_type(dtype: str, name: str):
|
def _to_data_type(dtype: str, name: str):
|
||||||
dtype_map = {'float32': 1, 'float64': 2, 'uint32': 3, 'uint64': 4}
|
dtype_map = {'float32': 1, 'float64': 2, 'uint32': 3, 'uint64': 4}
|
||||||
if dtype not in dtype_map.keys():
|
if dtype not in dtype_map:
|
||||||
raise TypeError(
|
raise TypeError(
|
||||||
f'Expecting float32, float64, uint32, uint64, got {dtype} ' +
|
f'Expecting float32, float64, uint32, uint64, got {dtype} ' +
|
||||||
f'for {name}.')
|
f'for {name}.')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user