topazape / LSTM_Chem

Implementation of the paper - Generative Recurrent Networks for De Novo Drug Design.
The Unlicense
116 stars 55 forks source link

Run on only 1 GPU, how to run on all the 4 available GPUs #19

Closed pramodkp closed 2 years ago

pramodkp commented 2 years ago

Model training and molecule generation run only on single GPU even if 4 GPUs are available. How to run on all the GPUs available.

topazape commented 2 years ago

As you said, the Model only uses one GPU. To be able to use multiple GPUs, it seems to use tf.distribute.MirroredStrategy(). But I don't have a GPU, so I can't test it. If you can run it on multiple GPUs, please PR it!