We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TensorFrames should be able to run tasks concurrently on separate GPUs, if they are available. This should be possible with the latest TensorFlow java API: https://www.tensorflow.org/api_docs/java/reference/org/tensorflow/Session.html#Session(org.tensorflow.Graph, byte[])
Assuming that all the GPUs are available for running tasks, they can be locked onto specific sessions in python by using the following code:
config = tf.ConfigProto() config.gpu_options.visible_device_list = "0" # Or different values session = tf.Session(config=config)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TensorFrames should be able to run tasks concurrently on separate GPUs, if they are available. This should be possible with the latest TensorFlow java API:
https://www.tensorflow.org/api_docs/java/reference/org/tensorflow/Session.html#Session(org.tensorflow.Graph, byte[])
Assuming that all the GPUs are available for running tasks, they can be locked onto specific sessions in python by using the following code:
The text was updated successfully, but these errors were encountered: