I get the following error when trying to configure DAGEE: ``` CMake Error at cmakeUtils/rocmVersion.cmake:10 (list): list GET given empty list Call Stack (most recent call first): CMakeLists.txt:26 (include) ``` The problem is that this line https://github.com/AMDResearch/DAGEE/blob/master/cmakeUtils/rocmVersion.cmake#L8 assumes that the file is in `/opt/rocm/`. This is not the case on cluster I am working on. We have multiple version of rocm in `/opt/rocm-XXX`. Changing the path in ` cmakeUtils/rocmVersion.cmake` fixes the problem.
I get the following error when trying to configure DAGEE:
The problem is that this line https://github.com/AMDResearch/DAGEE/blob/master/cmakeUtils/rocmVersion.cmake#L8 assumes that the file is in
/opt/rocm/. This is not the case on cluster I am working on. We have multiple version of rocm in/opt/rocm-XXX. Changing the path incmakeUtils/rocmVersion.cmakefixes the problem.