<div dir="ltr"><div><div>Hello Everyone,<br><br></div>GPU's are super busy right now with all of them taken. Some of the GPU's seem to be locked in but not actually running stuff, so if there is some process you can release that will be great. <br></div><div><br></div><div>Also Tensorflow by default would lock all available GPU's on the server whenever you call it. If you don't intentionally intend to run stuff on several GPUs this will restrict your code only to a single one:<br></div><div><b><i>import os<br>os.environ["CUDA_VISIBLE_<wbr>DEVICES"]="2"<br></i></b></div><div><br></div><div></div><div><b><i></i></b></div><div>If you don't need all the memory on the GPU and don't mind other people sharing the card with you, this will dynamically allocate only the amount of needed memory:<div><b><i>import tensorflow as tf<br>config = tf.ConfigProto()<br>config.gpu_options.allow_<wbr>growth=True<br>sess = tf.Session(config=config)</i></b></div><div><br></div><div>We're all pretty busy with deadlines. Please be considerate, and try to avoid grabbing several cards if you don't really need it. <br></div><div><br></div><div>Thanks a lot,</div><div>Yotam.</div><div><br></div></div></div>