cupyx.scipy.get_array_module

cupyx.scipy.get_array_module(*args)

Returns the array module for arguments.

This function is used to implement CPU/GPU generic code. If at least one of the arguments is a cupy.ndarray object, the cupy module is returned.

Parameters:args – Values to determine whether NumPy or CuPy should be used.
Returns:cupyx.scipy or scipy is returned based on the types of the arguments.
Return type:module