Limit number of cores used in Keras

那年仲夏 提交于 2019-11-27 01:56:09

问题


I have a shared machine with 64 cores on which I have a big pipeline of Keras functions that I want to run. The thing is that it seems that Keras automatically uses all the cores available and I can't do that.

I use Python and I want to run 67 neural networks in a for loop. I would like to use half of the available cores.

I can't find any way of limiting the number of cores in Keras... Do you have any clue?


回答1:


As @Yu-Yang suggested, I used this line before each fit I do :

from keras import backend as K
K.set_session(K.tf.Session(config=K.tf.ConfigProto(intra_op_‌​parallelism_threads=‌​32, inter_op_parallelism_threads=32)))

Check the CPU usage (htop) :



来源:https://stackoverflow.com/questions/46421258/limit-number-of-cores-used-in-keras

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!