我使用cmake编译一个项目。但我得到
-- Could NOT find NUMA (missing: NUMA_LIBRARIES)
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
NUMA_LIBRARIES (ADVANCED)我安装了numactl numactl-devel。
我怎么才能解决这个问题?
发布于 2022-06-13 23:16:07
这实际上是一个缺乏开放MPI的问题,而不是NUMA。您需要做的是从源代码(https://webpages.charlotte.edu/~abw/coit-grid01.uncc.edu/ParallelProgSoftware/Software/OpenMPIInstall.pdf)或APT安装开放的MPI二进制文件:
sudo apt install openmpi-binhttps://stackoverflow.com/questions/68709638
复制相似问题