David Futschik
David Futschik
Suppose we have a module `module Singleton; class Singleton { private static Singleton instance; public static Singleton GetInstance() { if (instance is null) { instance = new Singleton(); } return...
I've been running into `Program hit CUDA_ERROR_ILLEGAL_ADDRESS (error 700) due to "an illegal memory access was encountered"` when trying to optimize some larger cases. I don't have a simple code...
This issue is more of a question / feature request than anything. I'm looking at how external strings are handled currently - static only, which is a limitation. There is...
Noticed this when using ffmpeg installed from apt, when vcodec and acodec are copy, the frame= XXX line does not appear in the output, causing api like `read_video` to fail....
## Summary When updating the geometry of the scene and using `constant` emitter, the jit kernels will be recompiled. Swapping to e.g. `spot` emitter will not recompile the kernel, as...