Note: NumExpr detected 32 cores but “NUMEXPR_MAX_THREADS“ not set, so enforcing safe limit of 8.

Note: NumExpr detected 32 cores but "NUMEXPR_MAX_THREADS" not set, so enforcing safe limit of 8.

  • 解决问题
  • 解决思路
  • 解决方法

解决问题

Note: NumExpr detected 32 cores but “NUMEXPR_MAX_THREADS” not set, so enforcing safe limit of 8.

解决思路

没有设置NUMEXPR_MAX_THREADS而出现的警告,最后会NumExpr defaulting to 8 threads

解决方法

import os
os.environ[‘NUMEXPR_MAX_THREADS’] = ‘16’
注意:'16’是str格式的

你可能感兴趣的:(python,debug)