标签: python graph-tool
我想在graph-tool中禁用OpenMP,但我无法在graph-tool的官方文档中找到有关OpenMP的任何内容。
graph-tool
有没有办法把它关掉?
答案 0 :(得分:2)
有几种方法。在编译期间,您可以将选项--disable-openmp传递给configure脚本。
--disable-openmp
configure
如果您只想在运行时禁用openmp,您可以:
OMP_NUM_THREADS=1
openmp_set_num_threads(1)