-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose data type of CuImage object for interoperability with NumPy #246
Conversation
It seems that there is an infra issue. Even if |
Generally this seems reasonable. Would be good to have a test. Are we thinking about other endianness? |
Since our major platform (x86-64 and aarch64 on Jetson) uses little-endian only and most TIFF files are using little-endian, supporting big-endian is lower-priority. Will add tests later today when I am able to access my machine. |
@gpucibot merge |
Signed-off-by: Gigon Bae <[email protected]>
Signed-off-by: Gigon Bae <[email protected]>
Signed-off-by: Gigon Bae <[email protected]>
Signed-off-by: Gigon Bae <[email protected]>
Signed-off-by: Gigon Bae <[email protected]>
Without this patch,
DLDataType and DLDataTypecode can be accessible with the below workaround.
With this patch, we can convert data type to NumPy's dtype easily, and also can access cuCIM's DLDataType.
Fixes #243