-
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
[QST] GDS, dlpack and cuCIM #64
Comments
Thanks @benjha for your interest in cuCIM!
GDS is not a hard dependency. Line 106 in 45cf987
The current implementation uses a wrapper code for cufile and it load Lines 55 to 59 in 048d53e
In current implementation, even if GDS (libcufile.so) is not available/needed, GDS's header file ( cucim/gds/include/cufile_stub.h Line 19 in 048d53e
To get For this reason, I think it wouldn't be a problem though you will see GDS-related messages during the build. cuCIM currently doesn't support non-X86-64 architecture(and non-Linux OS) and has not tested on such architecture/OS. Please let us know what kinds of errors do you see during the build. We are also interested in your use cases with cuCIM in your project and wonder if which part (image loader or image processing) would be your focus area. Note: Image processing part (scikit-image compatible APIs using CuPy) is pure Python code and no platform-dependent as long as CuPy is installed. We may want to provide an option to build only one of them (cucim.skimage and cucim.clara). |
Thanks for the clarification. I agree, if we disable access to I am supporting Rapids on Summit and I'd like to include cuCIM as part of the deployment. We have some users currently working with scikit-image and cuCIM will be a good addition so they can move their workflows to GPUs. Of course in the context of a HPC system while I/O is important for now we are focusing on image processing. I am also evaluating Rapids performance on ARM architecture, just to track performance is comparable to x86/ppc64le. We also are evaluating image processing libraries in the context of Whole slide imaging in pathology. This will also include training/inference of tumor sites in a subsequent phase. |
Btw, Is cuCIM not meant to be build within an existent built from source Rapids environment ? I noted cuCIM gets its own rmm and also uses its own dlpack (v0.2) which is different to the Rapids 21.06's supported version (dlpack>=0.5,<0.6.0a0), thus I am having this compilation error given that
Thanks |
I think this is already possible, we just don't have a pre-packaged version with only the This currently seems to work, but I have not confirmed with the NVIDIA team whether we can continue to guarantee this going forward (we do not currently test this installation method) |
@benjha Thanks for sharing the use cases!
That's correct. Currently, cuCIM's build doesn't depend on the same version of other RAPIDS components (and other RAPIDS suites) -- That's why it uses specific versions of rmm and DLPack from external Git repositories. Please refer to the following documents for building cuCIM locally: And thanks for the information regarding rmm/DLPack versions. I would update those versions later. |
Closing as answered. Happy to discuss more questions in new issues as needed |
Hi cuCIM team,
I am deploying RAPIDS with cuCIM v21.06 on ppc64le architecture (Summit cluster) and in our NV-ARM Developer Kit cluster, and noted during compilation, it grabs GDS. So my questions are:
Is GDS a hard dependency ?, if not, is there any env. variables to disable it ?
Thanks,
The text was updated successfully, but these errors were encountered: