-
-
Notifications
You must be signed in to change notification settings - Fork 824
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
[Request] Remove CUDA dependency #439
Comments
Currently, we have neither the interest nor the resources to do another implementation of the CUDA code to another GPU framework. |
I was looking into this some to see if there were any tools to make such a transition easier I found a project called swan thats is meant to make it very simple to effectively 'translate' Cuda kernels and code into OpenCL equivalents. Though it has not been updated in some time, so it may not help very much. I feel like its worth pointing out also that OpenCL works on most embedded GPUs, integrated GPUs, and many FPGAs include drop in modules to allow OpenCL functionality. All of this means that if a change like this was made to AliceVision there would be many new potential uses. Such as micro computer clusters, or use on mobile devices directly. |
It's difficult to find a good solution in this technology war with Apple deprecation of OpenGL and OpenCL: Another interesting project on this topic is HIP: |
That one is easy though: ditch OSX support. OSX is IME by far the worst and most buggy implementation of POSIX APIs that I've had to work with. |
I agree that theres no particularly good solution currently. I agree that apple's depreciation of OpenCL could be somewhat problematic, but I feel like its worth pointing out that relatively few of apple's systems have any support for Nvidia cards so CUDA is not much better for supporting Mac OS. Also HIP looks like a pretty nice option. There seems to have been a few interesting similar projects in the past like gpuocelot, which is sadly now defunct. Apperently Vulkan can be used for GPGPU, and thats supported in windows and linux on both AMD and Nvidia, and with MoltenVK on anything supporting apple's Metal APIs. But Vulkan is still pretty new so there not much info out there about using it for GPGPU... |
I would be interested in trying Halide as it enables to write high-level algorithms but also enable fine tuning of the scheduling. And then it generates code for each target. |
ISPC (https://ispc.github.io/) could be another option. It also has an (experimental) PTX backend. |
Halide looks like a pretty good option. While there is no metal backend yet it looks like (from issues on their github) a few people may be working on one, but obviously osx has OpenCL still for now. And with support for ARM v7/NEON it could be used on Raspberry PIs (2 and later) and the like, and even android devices. That could seriously open up what AliceVision could be used for in the future. |
I'm skeptical about using something not backed by a major industry vendor. Halide is an academic project, they may get tired of developing it (when they've exhausted publishable stuff), they probably don't care about breaking changes (from the homepage: "These academic publications describe the ideas behind Halide and its scheduling model. Halide syntax changes over time, so don't rely on them for correct syntax."), etc. Tools from major industry vendors (nvidia, intel) aren't open-source. So what? If there's a viable alternative to CUDA, it's SYCL (Khronos standard; opencl using modern c++, i.e., something resembling CUDA), but the downside is that there are no free (as in beer) quality compilers that I'm aware of. OpenCL seems to be the most future-oriented as it can support FPGAs as well. Intel has acquired Altera and another FPGA manufacturer, and OpenCL tooling will probably follow. |
We are trying to compile Meshroom and AliceVision with Linux but it's sad to discover that it will work only with a proprietary solution that i do not have ( i use AMD GPU with Mesa driver). |
To me the issue is: I do have the hardware, but it is just unstable as hell, requiring a lot of power cycles (since even the reset buttons stop working). Have been able to reproduce this with multiple kernel versions, driver versions, motherboards, GPUs, PSUs… It’s safe to say that it’s not a hardware issue, other than potential firmware bugs. Anyway, my suggestion is to take a step back from all the frameworks and try to get just a basic C implementation done, with no drastic optimization whatsoever. My belief is that this will make future native ports (Vulkan, etc.) and SIMD optimization much easier, especially for outside contributors, because C is much more accessible. Also, before deciding on frameworks in an attempt to cover all potential use cases, it’s probably best to understand the challenges and requirements by doing a clean implementation with minimal external dependencies first. |
hi @fabiencastan is there a way to support a solution like HIP or Halide ? I think that the support for only 1 GPU vendor with proprietary GPGPU solution sounds limiting for a very promising free and open source project. I could find and buy a proprietary software alternative for the photogrammetry but i prefer to support free and open source software and i use AMD GPU for its free and open source drivers. https://github.com/ROCm-Developer-Tools/HIP Anyway thank you for sharing your work :) |
example of HIP porting: |
Hi everyone, I read through the comments and it seems like the ditching of OpenCL/GL in the new OSX versions gives the developers a tiny headache on what computing language to use for this program. Have a good one |
Hello, for what understand HIP uses C++ so it should be compatible without OpenCL. |
Here is output after running hip (rocm) converter:
|
@Storagraph The deprecation of OpenGL is not too much of a problem since there are multiple translation libraries which can convert to multiple graphics backends. Khronos have succeeded in getting Vulkan to run everywhere regardless of graphics API thanks to the portability initiative. If anyone is intimidated by the Vulkan API, there is a project which reduces it's complexity: V-EZ So the CUDA dependency could be removed if Vulkan compute shader were used. |
@MrMinimal I just mentioned OpenGL for completeness. Sorry for the confusion ^^ |
@kwahoo2 thank you for the conversion with HIP, i think it could be the right solution with additional work. |
Currently HIP doesn't support Windows and doesn't support amdgpu-pro driver under Linux (in fact only rocm platform under Linux is supported). |
As supporter of free and open source software under Linux i prefer AMDGPU Mesa FOSS driver. |
Hello, |
any chance to run AliceVision/Meshroom - CPU only - without any specialized hardware, without nVidia, ... ? i have only an older intel CPU (i7-3xxx) with a "built-in" intel GPU (HD-4000) - i don't need more GPU power than the GPU on CPU. |
Hi all, Same here: Same problems here:
[11:15:01.772700][error] cudaGetDeviceCount failed: CUDA driver version is insufficient for CUDA runtime version |
Hey folks, forgive me if this is out of place now, as I haven't been able to keep up with exactly what the current status on this thread is, but as far as technology for implementing a new version of the CUDA components, I might have an idea that would work on CPU, OpenGL compute, Vulkan compute, DirectX 12 compute, and Metal compute, without having to write multiple implementations. If we used the Rust GPU project, we could implement the core algorithm in portable Rust GPU is a relatively new project with lots of rough-edges, but the portability that we could achieve with it, being able to support CPU and GPU, when available, with one codebase, is incredible. Again, maybe this is ill-timed, or not useful to the thread currently, but I thought I'd throw it out there just in case. 🙂 |
I think the main issue is that there is no one up to try implement any solution not a lack of ideas... At least not from the maintainers. EDIT: oh right. the maintainers had CI issues that led them to stop pursuing this further. |
Maybe the AliceVision project could support dynamically loading a DLL with a simple C interface that could be used to perform the Depth Map operation, and then the community could independenty work on different implementations that provide the same C interface, using whatever technology they want, CPU only C, OpenCL, Rust GPU, etc. That might at least reduce need for a super-official alternative implementation and allow the community to experiment on their own without having to merge changes into AliceVision to get working prototypes and let other people try out alternative implementations. It might also help any CI issues, because the alternate implementations would be purely community provided at that point, for now anyway, and no responsibility is put on the existing maintainers. |
@zicklag Someone can create their own depthmap node, load the same input files and generate the same output exr files, and then use the full pipeline. |
Our group is developing OpenCL photogrammetry software that uses the Meshroom GUI, named "MeshroomCL". Windows binaries are available here: https://github.com/openphotogrammetry/meshroomcl/releases Several users have enjoyed success with our software on AMD, NVIDIA, and Intel platforms, using the familiar Meshroom workflow. |
That's awesome! Any plans to upstream? |
@tamara-schmitz FWIW, opened another bug (their third) asking for the MPL2-licensed modified sources of that project to be made available alongside their binary releases 🤞🤞🤞 |
@ochafik MeshroomCL is not actually using a ported version of the AliceVision library. It utilizes Colmap (CL) and MVE. The interesting bit here are the changes made to the Colmap CL and MVE executables to support the file formats and parameters supported by the AliceVision/Meshroom pipeline. The idea of using other libraries within Meshroom is not new and roughly outlined here. |
Working on a Metal backend for hipSYCL. SYCL seems like the most coherent effort to date to replace CUDA with another single-source API. Only downside - it takes nonzero time to replace CUDA with SYCL, and the maintainers may see no need to do so.
|
Interesting, thanks for the links and the feedback. |
As a practical limitation, what besides the CUDA language does this depend on? For example, if this repo depends on cuDNN or cuBLAS, those might be hard to replace with SYCL. I'm interested in the practical feasibility of this move. If it just requires lots of effort, perhaps some interested users might pitch in to help. This may be helpful - an analysis of maturity of SYCL (2021, 13 pages): https://dl.acm.org/doi/10.1145/3456669.3456701 |
Good News for hipSYCL, I think. I have no ability to implement something like this though. |
In my opinion even a basic CPU implementation would suffice for a lot of people (including me). Any pointers on how to begin such work? |
Apparently, hipSYCL has been renamed to OpenSYCL, so the link is now broken. The referenced article can now be found here: |
Note that OpenSYCL will be renamed to HolisticCpp in near future (see AdaptiveCpp/AdaptiveCpp#999 (comment) for background). |
Since I think this is highly relevant I'd like to mention Zluda again. The maintainer has switched from supporting Intel GPUs only to AMD GPUs only due to a change in employment. Support for AliceVision (Meshroom) is not quite there yet but I'm sure the project would benefit from some of the knowledgeable eyes around here. |
We're approaching 6 years after this issue was opened and nothing has been done. I hate Nvidia so much. Shame on any developer who uses this cursed trojan horse of a library.
They have already started to make their move on it by changing their EULA to prohibit specifically the use of translation layers. Considering they've oriented themselves as an AI company now, they will certainly fight to prevent things like ZLUDA from working to the bitter end. |
Yes and no. Their EULA has prohibited reverse engineering and translating for a very long time. See this licence file (line 117) for example. What has changed is that this warning comes with the installation process. See this tomshardware article for more information. |
I'm not familiar with the specifics, but what is stopping them from altering their compiler just enough to make ZLUDA unusable for any future versions? Autodesk does this move all the time when they change the spec for the FBX file format a little every version so that other software packages can't use it and have to put some effort into reverse-engineering it again every time. |
can we learn to put a wasm compiler in the software itself so that before it runs it can check compiled version of the version if available with compatible hardware. as some alternatives have helpful in the past to be mentioned as https://github.com/openphotogrammetry https://github.com/nerfstudio-project/nerfstudio https://github.com/google-research/google-research/tree/master/jaxnerf |
For what it's worth (not much I know ^_^), I too would very much like it if I could use my renderbox that was built for graphics rendering (and some gaming) to run meshroom, but shes a multiple AMD Vega based machine. I'm lucky in that my fiance's computer has an older nvidia graphics card that will run CUDA based stuff, but its like cruising around in your prius when you've got a lamborghini in the driveway. Feelsbadman. lol. I'll make do with what I can while I have to, but it would be amazing if there were a Vulkan running version since basically everything modern-ish can use Vulkan. I wish I had the knowledge to help or take on such a project, but programming isnt exactly my strong suit. I know just enough to get myself in trouble and write some basic stuff, but I went to school for 3d art and game design so everything I know of programming is self taught and it isnt a lot. |
@NeoIsrafil AliceVision is now supported by ZLUDA "ZLUDA lets you run unmodified CUDA applications with near-native performance on AMD GPUs." However some testing is still needed. You can find early binaries here alicevision/Meshroom#595 (comment) - I put it together blind, since I don´t have a AMD GPU... Or put it together on your own: https://github.com/vosen/ZLUDA/releases/tag/v3 |
https://docs.scale-lang.com/ might be another path for AMD GPU on Linux (which fails-fast with Zluda at present) |
sadly seems to be closed source |
I realize this is a lot to just ask without the time and ability to implement and maintain the necessary changes myself. Hence, I’ll spare you the long-winded political speech. The gist of it is: You can’t call something free and open source software when it depends on and endorses proprietary components whose only purpose is vendor lock-in.
AliceVision should be able to work without CUDA, no matter how glacially slowly. I prefer inefficient CPU-only computation that spills registers and caches all over the place over a requirement for GPUs with inferior Linux support and very unstable drivers (my GTX 960 keeps freezing my computer whenever NVIDIA’s driver decides it doesn’t want to do memory management anymore, and it is IMPOSSIBLE to report this problem to NVIDIA unless you’re a big corp and there’s money involved). I simply don’t have the patience to deal with this garbage, and I desperately want to move to a different GPU vendor so I get proper support for my platform.
Ideally, the CUDA parts should be ported to an open platform such as Vulkan or the older OpenCL.
The text was updated successfully, but these errors were encountered: