You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using PytomGUI, I encountered an issue related to the environment file pytom_full.yaml. I would suggest specifying the versions of UCX and OpenMPI explicitly in this file.
On my machine, the system-wide UCX version is 1.8.0 (checked via ucx_info -v), while OpenMPI 5.0.5 is installed inside the conda environment. This mismatch caused a conflict and led to an initialization error when I attempted to perform template matching using multiple GPUs (e.g., GpuId 0,1,2,3).
I was able to resolve this issue by installing UCX within the conda environment using conda install -c conda-forge ucx, which provided UCX version 1.18.0 and solved the conflict.
on my side the final version of pytom_full.yaml is
name: pytom_env
channels:
Dear Developer,
Thank you for developing such a great software.
While using PytomGUI, I encountered an issue related to the environment file pytom_full.yaml. I would suggest specifying the versions of UCX and OpenMPI explicitly in this file.
On my machine, the system-wide UCX version is 1.8.0 (checked via ucx_info -v), while OpenMPI 5.0.5 is installed inside the conda environment. This mismatch caused a conflict and led to an initialization error when I attempted to perform template matching using multiple GPUs (e.g., GpuId 0,1,2,3).
I was able to resolve this issue by installing UCX within the conda environment using conda install -c conda-forge ucx, which provided UCX version 1.18.0 and solved the conflict.
on my side the final version of pytom_full.yaml is
name: pytom_env
channels:
dependencies:
I hope this will help improving pytom usage.