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
Note: If you have a model or program that is not supported yet but should be, please use the program coverage template.
import thunder import torch def func(x): return x.sum().item() a = torch.randn(3, 3, device="cuda") jfunc = thunder.jit(func) jfunc(a) # works! jfunc = thunder.jit(func, use_cudagraphs=True) jfunc(a) # fails!
File thunder.CUDAGraph0_fn_3:10, in CUDAGraph0_fn(***failed resolving arguments***) 9 del x ---> 10 f1 = Tensor.item(t0) # f1: "float ?" 11 del t0 RuntimeError: CUDA error: operation not permitted when stream is capturing
The text was updated successfully, but these errors were encountered:
related to #728
Sorry, something went wrong.
t-vi
No branches or pull requests
Note: If you have a model or program that is not supported yet but should be, please use the program coverage template.
🐛 Bug
The text was updated successfully, but these errors were encountered: