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
neuron.device=cuda:<id>
Using --neuron.device cuda:N fails with device placement mismatches.
--neuron.device cuda:N
e.g. When starting with pm2 start run.sh --name openvalidators_autoupdate -- --wallet.name <your-wallet-name> --wallet.hotkey <your-wallet-hot-key> --neuron.device cuda:1
pm2 start run.sh --name openvalidators_autoupdate -- --wallet.name <your-wallet-name> --wallet.hotkey <your-wallet-hot-key> --neuron.device cuda:1
eventually fails with cuda:0 vs cuda:1 mismatch in forward() See: https://github.com/opentensor/validators/blob/main/openvalidators/forward.py#L297
cuda:0
cuda:1
forward()
Gets 1 tensor on cuda:0 and the other on cuda:1 set from the command line.
Suggestion is to simply recommend away from this arg until we find a fix.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using
--neuron.device cuda:N
fails with device placement mismatches.e.g. When starting with
pm2 start run.sh --name openvalidators_autoupdate -- --wallet.name <your-wallet-name> --wallet.hotkey <your-wallet-hot-key> --neuron.device cuda:1
eventually fails with
cuda:0
vscuda:1
mismatch inforward()
See: https://github.com/opentensor/validators/blob/main/openvalidators/forward.py#L297Gets 1 tensor on
cuda:0
and the other oncuda:1
set from the command line.Suggestion is to simply recommend away from this arg until we find a fix.
The text was updated successfully, but these errors were encountered: