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
I use A6000 gpu installed with nvidia driver version 11.6 but I use nvidia/cuda:11.2.0. image where cudnn version is 8.1.1
I installed all the packages in requirements.txt
The training is proceeding but GPU uses only memory and doesn't compute. I think that computation might be proceeded in the cpu.
Also, I change 'train.py' like this,
def main(argv): jax.config.parse_flags_with_absl() physical_devices = tf.config.list_physical_devices('GPU') tf.config.experimental.set_visible_devices(physical_devices[2:], 'GPU')
So I uninstalled tensorflow and newly install tensorflow-gpu, but the result is same.
I need help.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use A6000 gpu installed with nvidia driver version 11.6
but I use nvidia/cuda:11.2.0. image where cudnn version is 8.1.1
I installed all the packages in requirements.txt
The training is proceeding but GPU uses only memory and doesn't compute. I think that computation might be proceeded in the cpu.
Also, I change 'train.py' like this,
def main(argv):
jax.config.parse_flags_with_absl()
physical_devices = tf.config.list_physical_devices('GPU')
tf.config.experimental.set_visible_devices(physical_devices[2:], 'GPU')
So I uninstalled tensorflow and newly install tensorflow-gpu, but the result is same.
I need help.
The text was updated successfully, but these errors were encountered: