Emil Brink
Emil Brink
Great to see this ticket being opened. What I meant, as I recall, was that it's a bit unclear what copyright applies to the bare-metal-arm code. It's optimally structured to...
Yes, that sounds great! I guess I didn't understand that the license was MIT, that's a very good (and generous) choice for a project such as this. I'll need to...
Hi. Thanks for the rapid response. Not sure if I have code I can share, perhaps I can stitch together something but it will be a while. This is my...
Hi again. Okay, here's an attempt at a reproduction case: ``` #!/bin/usr/env python3 import torch w_bn = torch.randn(64,64) w_conv = torch.randn(64,108) w = torch.randn(64, 12, 3, 3) w.copy_(torch.mm(w_bn, w_conv).view(w.size())) ```...
Okay great, feel free to drop me a line when you have wheels available and hopefully I can test, too. Thanks!
Hi! It does seem to resolve the issue for me on my Raspberry target. I had to (as you say) download your wheel manually and `pip install` it directly from...
Okay, first: thanks a lot for reporting this. I had no idea that *anyone* but me uses this software, and learning that someone cares is always cool! Second: please add...
Thanks. I'm stumped though, this makes no sense. - You get a deprecated-warning on an *older* version of GTK+ than the one I use, while I *don't* get a warning....
Uh, okay, just realized Geany builds using GTK+ 2, not GTK+ 3. So, what's the output of `pkg-config --modversion gtk+-2.0` on your system? Mine is 2.24.31. I did try the...
I just pushed a tiny change which avoids the direct access of action_area, please let me know if that changes anything. Thanks.