lpiccinelli-eth / UniDepth

Universal Monocular Metric Depth Estimation
Other
462 stars 39 forks source link

Triton is not available #19

Closed eldar closed 2 months ago

eldar commented 2 months ago

Dear all,

Congrats on your excellent paper and thanks for putting the code out! I followed the instructions to set up the environment and while it works (I get the declared accuracy on the provided example), I do get a warning related to triton each time I import a UniDepth model class:

Triton is not available, some optimizations will not be enabled.
This is just a warning: triton is not available

Is this something I should be concerned about during training (finetuning) of your model or I can just ignore it?

lpiccinelli-eth commented 2 months ago

Thank you for your appreciation!

That warning will lead to (maybe considerably?) slower training and inference, but no change in terms of performance. This is due to having GPUs that are not supported by the installed Triton version.

eldar commented 2 months ago

You are right! I just tried on a more modern GPU (NVIDIA A40) and I do not get this error anymore. That must have been an old one. Thank you.