-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[FR]: Use OpenCL instead privative alternatives (CUDA, Metal) #595
Comments
Read alicevision/AliceVision#439 |
I read the thread. Some commentaries are from 2018, and OpenCL 2.2 didn't exist, and many changes come from then. CUDA is used in many applications, but OpenCL too () . In that list is Darktable too, that I usually use. Anyway, Fabencastian wrote
That's a pity, cause lot of users could not try Meshroom, despite it's a great develop. I'm just now in the PC with the Intel GPU, so there is no way to use Meshroom and tried alternatives, like Metashape, that doesn't require necessarily and Nvidia GPU. |
That @fabiencastan does not have the time to do a port of a - for him working implementation - does not mean that other cannot implement it in their own time. A very big thing here is, would you implement it in OpenCL, or something different. Some good pointers on the wiki what are viable alternatives could help people that want to start on this task. |
Hi skinkie, I have no sufficient skills to code in C/C++. I'll give a try if it were Python, PHP or even JS. I point to the fact that "less users able to run an application = less interest in the application = less feedback" and finally, the great idea falls in an lost effort. It's true it's easier to work with the CUDA API, but a lot of users in this forum has reported info about how to migrate or simplify change to OpenCL. That could be a good point to start. That's only my opinion, of course. |
@RafaelLinux As user you can use Meshroom without CUDA, the only part of the application that is 'hidden' is the DepthMap stage and even that allows for preview without CUDA. As developer MeshRoom is Python + QML low entry level to make impact. The first acceleration CUDA is used in is the feature extraction. You could just try to get this to work: https://github.com/pierrepaleo/sift_pyocl Personally my focus for Meshroom is introducing some heuristics for matching images and supervised learning opposed to the current brute force approach. Not that I am a photogrammetry specialist, but I can surely try to work on this open source project. |
Maybe I'm using incorrectly Meshroom, cause if I only reach DepthMap, I only see a cloud of points, so I can see the model result. |
Thank you, is a good workaround. I ll try it. Anyway, remember users don't mind how long it takes, quality is the priority, so please, don't forget this feature request ;) |
One could also use hipfy from AMD to convert CUDA code to HIP, wich can be built to work on either NVIDIA or AMD cards (with very nice performance, I currently use it for Tensorflow, and it works like a charm !) |
@aviallon The last time (2018) hip did not support some cuda functions alicevision/AliceVision#439 (comment) You are welcome to try again using hipfy. |
for reference https://github.com/cpc/hipcl |
This is interesting, have anyone tried it? |
This is simply a packaging issue since Arch has CUDA despite being not in the list here. You already reported that issue to both, the open SUSE packagers and the NVidea CUDA team? And you can probably repackage either the 15.0 variant of openSUSE package or the Arch package, which uses an independent source, as you can see in the link. |
@ShalokShalom the problem with Cuda remains that older hardware absolutely does not work with newer CUDA versions. This causes problems for nvidia-drivers and cuda, where one is effectively searching for the 'ideal pair' between them. I would be very interested if opencl could bridge this gap even by choosing the execution pipeline of choice. |
And how is that with HiP? Nvidia hardware runs on it as well? I consider using a Geforce GT 610 for CUDA, can you tell me how to choose the suitable CUDA version? Thanks a lot |
"HIP allows developers to convert CUDA code to portable C++. The same source code can be compiled to run on NVIDIA or AMD GPUs"
On Windows, install the latest version, on Linux this might depend on your Distro. GT 610 supports CUDA 2.1, MR requires 2+ |
I am on Linux, what decides which version is optimal? I am on KaOS, that is a rolling distribution. So, does HiP negligible the version differences between CUDA and the different NVidia hardware? Could or should we replace CUDA entirely with it or is the overhead to big? |
@ShalokShalom With HiP we can compile two versions of Meshroom: for CUDA and AMD GPUs. For CUDA users nothing changes. (https://kaosx.us/docs/nvidia/ But you won´t get far with a 1GB GT 610) |
We have to wait for HiP to support cudaMemcpy2DFromArray. Then we can add AMD support for AV/MR and try HiPCL. |
If Meshroom would allow parallel computation for nodes where both CPU and GPU could for example do feature extraction. Any additional computing resource could help. It depends on how much overhead the GPU would give in compare to a (faster) decent CPU but I would still see the potential for independent computation tasks. |
looks like hip supports now cudaMemcpy2DFromArray any progress on this? |
@arpu Yes, all CUDA functions are now supported by HiP and I was able to convert the code to HiP using the conversion tool (read here for details). The only thing left is to write a new cmake file that includes HiP and supports both CUDA and AMD compilation and the different platforms. Here is the Meshroom PopSift plugin I used for testing. At the moment I don´t have the time to figure out how to rewrite the cmake file, but I think @ShalokShalom wanted to look into this. |
One question is very critical, I think: Will we ship two versions? Linux distributions do their packaging themselves and we could benefit enormously by finding someone who is willing to maintain Alice for their userbase since that could result in new developers and funding. 2 versions, one for CUDA and one for HIP is something they will never do. |
@ShalokShalom from the HiP code we can compile both CUDA and AMD versions. Similar to the parameter target platform/os in the cmake, CUDA or AMD can be defined. So depending on the compiler parameters we can define the versions (OS+cuda/amd). |
Any idea how long that approximately takes? I feel like a child just before Christmas eve :D |
@PickUpYaAmmo I will take another look at this over the winter holidays. |
I just ran into a kernel panic over tesseract using opencl. While I agree generally with your statement, OpenCL may fall back to a CPU implementation, but as I just noticed, that is not a given thing. Even it worked gracefully, a CPU computation might render some operations useless or costing extreme amounts of time (and therefore: power). |
We could change the title? |
I apologize if this is a bit out of touch with the current direction of the conversion, but wanted to share nonetheless: |
Would that allow the program to use all interfaces simultaniously? (Read: the ability to schedule the tasks over multiple targets) |
This comment was marked as off-topic.
This comment was marked as off-topic.
My question was more in the direction, would the glue code take care of it ;) |
This comment was marked as off-topic.
This comment was marked as off-topic.
I don't think hip or SYCL would require the functionality on their own, if the intermediate would take care of it. Like starting a new thread on the CPU or GPU, anything that would be available. |
This comment was marked as off-topic.
This comment was marked as off-topic.
I really don't think this is offtopic. Meshroom splits a huge task in many smaller steps, but is then limited to a specific backend. Anything that would natively allows to schedule the task transparantly to cpu, gpu, etc. that would motivate people to integrate that technology sooner. |
Why would this be offtopic? 👀 |
I think this could be helpful: https://www.phoronix.com/news/Intel-SYCLomatic-20220829, |
SYCL or Vulkan Compute Shader can be the open solution (with a preference to SYCL). SYCL principles are pretty close to CUDA. |
a more practical suggestion here: Regard3D is another OpenMVG based photogrammetry solution. he wrote a densification procedure that doesn't need CUDA and is platform agnostic. He hasn't updated in a while. maybe you can add his densification module to meshroom. It's open source. https://github.com/rhiestan/Regard3D/tree/master also OpenMVS has a very nice platform independent densification module which works very well, which I've been using. |
Something to look into: https://github.com/vosen/ZLUDA
|
To those interested in the topic: could you please test Meshroom-compatible ZLUDA version? More info here: vosen/ZLUDA#79 (comment) |
For those of you who want to test it now: You can download a ready to use ZIP here if you prefer. I put it together to simplify testing. (It includes Meshroom 2023.3.0 and AliceVision+ZLUDA as provided by vosen. I added Run-Meshroom-ZLUDA.bat that hopefully works and ZLUDA-Info.txt with some info on ZLUDA from the git) It would be great if you could do some tests with the https://github.com/alicevision/dataset_monstree dataset (mini3 and full) so we can compare the performance. |
This just loads a webpage that says "Not found", response is 404. Perhaps it's only available to you? I only have a laptop with a 780M APU + RTX 4060 (laptop part not desktop, so weaker part AFAIK?), paired with a Ryzen 7940HS (8/16 core/threads @ 4GHz) and 32GB RAM. A 780M probably isn't ideal for an AMD GPU to test with? 🤷♂️ I might find time to give it a try with the dataset if you like, although I haven't done photogrammetry in a while, I only have about 30GB of disk to spare atm, if that's sufficient I can probably tackle it by next weekend 👍 |
@polarathene sorry, my bad. Link is fixed. Just give it a test run on your machines. 30gb should be more than enough to test with the monstree dataset. |
In addition to being able to run Meshroom using ZLUDA, MeshroomResearch now allows to run COLMAP in the backend (or MicMac if you like) |
It appears that your link is still broken. |
@corndog2000 could you try again? Meshroom-2023.3.0-ZLUDA-2024-03.zip |
I tried with mini 3, note I've never used this software before. There was no clear GUI insights on the GPU to be detected/used, but I had found out about the The logs had no indication of anything about GPU though. And the statistics for that node only show CPU activity, with nothing in the GPU stats. When the DepthMap node was reached, it failed. There is no log output for any additional context. I did notice that there was a setting for number of GPUs and I had set that to 1, setting it to 0 did not make a difference. As my system has an nvidia RTX 4060 (dGPU) in addition to the AMD 780M (iGPU), if any GPU was used it's unclear when or which one used it. From what I could make of what happened, it doesn't seem like a GPU was used? I will keep the files on my system for a few more days. If you have some guidance on how you'd like me to verify, let me know. |
Update: Running the
Launched via If it's relevant, I have CUDA 12.4 on the system. |
Thank you for doing this! Running on a ROG Ally attached to a Nexdock. Tried the dataset at: Downloaded CUDA 11.0.2: Ran: |
@polarathene did it work now?
I´d recommend reading the https://github.com/vosen/ZLUDA readme |
No? I shared my feedback when I tried it. I deleted the files after several days without response.
I only have a 780M iGPU (AMD), and an RTX 4060 for dGPU (nvidia).
I don't think I have ROCm installed, so that's probably why the 780M wasn't used. Not sure why the 4060 wasn't detected unless your build of Meshroom prevented that. The README link mentions an issue with CUDA 12, but presumably that won't be an issue. Downgrading isn't something I'm interested in. I might install ROCm, but as I don't use Meshroom myself and the mentioned UX issues, I'm probably only going to assist with testing one more time 😅 EDIT: Nope, I can't help test this sorry. ROCm doesn't support AMD iGPUs apparently:
@mkommar are you reporting success with ZLUDA? Your screenshot shows CPU activity. How did you test to verify AMD was working correctly with ZLUDA? (these instructions were not clear to me, as someone who is not a meshroom user) |
I'll give a more detailed response after I do a couple more tests tomorrow.
…On Thu, Jun 20, 2024, 12:22 AM Brennan Kinney ***@***.***> wrote:
@polarathene <https://github.com/polarathene> did it work now?
No? I shared my feedback when I tried it. I deleted the files after
several days without response.
------------------------------
I´d recommend reading the https://github.com/vosen/ZLUDA readme
I only have a 780M iGPU (AMD), and an RTX 4060 for dGPU (nvidia).
- Is the version of Meshroom you provided not meant to detect my CUDA
capable 4060? And no logs/errors regarding ZLUDA for the AMD 780M?
- My gripe was that Meshroom wasn't very clear in what GPU(s) it was
aware of, or would use. I saw no option to select a GPU device, only the
checkbox settings for toggling between GPU/CPU and the stats that showed
CPU without any errors about GPU in the logs.
I don't think I have ROCm installed, so that's probably why the 780M
wasn't used. Not sure why the 4060 wasn't detected unless your build of
Meshroom prevented that.
The README link mentions an issue with CUDA 12
<https://github.com/vosen/ZLUDA#cuda-12>, but presumably that won't be an
issue. Downgrading isn't something I'm interested in. I might install ROCm,
but as I don't use Meshroom myself and the mentioned UX issues, I'm
probably only going to assist with testing one more time 😅
------------------------------
@mkommar <https://github.com/mkommar> are you reporting success with
ZLUDA? Your screenshot shows CPU activity. How did you test to verify AMD
was working correctly with ZLUDA? (*these instructions were not clear to
me, as someone who is not a meshroom user*)
—
Reply to this email directly, view it on GitHub
<#595 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AALQSGZTEM3VNSBLFBUZUILZIJKHZAVCNFSM4IMGO2Q2U5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMJXHE3TONZYGU2Q>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
I just reported previosly the impossibility to render with Meshroom, probably cause despite I have an NVidia GPU, Nvidia does not provide any CUDA package for OpenSUSE 15.1 . I use Blender, GIMP ... all of them are using OpenCL. Meshroom is developed for Linux and Windows. OpenCL is updated continuously for both platforms. OpenCL performance is slightly under propietary Nvidia or AMD APIs, so, why do not let Meshroom to use OpenCL GPGPU API? Even Intel GPU users could use Meshroom if it uses OpenCL framework.
Please, could you consider this suggestion?
Thank you
The text was updated successfully, but these errors were encountered: