Raul
Raul
Not sure if this is a bug or a feature, but it surely is not the behavior the docs suggest. I tried this with cub 1.8.0 and CUDA 10.1 and...
In order to simulate a mouse click it would be more convinient to send a mousedown when pressing a key and a mouseup when releasing instead of a default click...
Motivated by this issue https://github.com/torchmd/torchmd/issues/56 I believe it would be worth to have a FAQ in the README page. I started it with the contents of the issue.
Hi! Thanks for this wonderful library. I have a feature request :P In trying to CUDA graph a model I end up with an array of indexes that must have...
### Code editor N/A ### Platform Fedora 37 ### Version 4.6.1-2 ### What steps will reproduce the bug? In Fedora 37, run: ```bash sudo dnf install nodejs-bash-language-server ``` ### How...
### Suggestion The Sponsor program allows other developers in GH to setp up a donation with a couple of clicks https://docs.github.com/en/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account Perhaps it would encourage more donators! I have been...
This jupyter cell: ``` python exps = exmol.cf_explain(space, 2) exps[1] ``` just shows an error in the current online version here https://dmol.pub/dl/xai.html
Pytorch introduced a new API to handle extensions, it is "documented" here: https://docs.google.com/document/d/1_W62p8WJOQQUzPsJYa7s701JXt0qf2OfLub2sbkHOaU/edit It makes it possible to write meta registrations for C++ extensions, which I could not make before....
Currently it is not possible to run backwards twice with torch.compile. For instance, this code fails: ```python from torch import nn, Tensor class Model(nn.Module): def forward(self, input: Tensor) -> Tensor:...
Check version when loading a model. Print a warning if the checkpoint is loaded with a version different to the one used to create it. Closes #291