Niclas Eriksen
Niclas Eriksen
This might not be directly related, but on a 2070 (Windows through docker/WSL2) `upscale` causes crashes on sizes above 256x256: ``` CUDA error: unknown error CUDA kernel errors might be...
I'm also experiencing this. The CORS policy is required for Chromecast to work IIRC, so right now I have to live with missing images. Interestingly, deleting the jellyfinmediaplayer cache/configs and...
> Try using the server provided web client option under client settings. That has a mechanism that may be able to bypass the CORS issue. Using the server provided one...
The name of the PIP package is `pyqtgraph`, but this dependency can also be installed via your package manager. In Arch Linux it's `python-pyqtgraph` for the Python 3 version, and...
> I hope I can find some time to work on the gui and this driver soon again. If I can find some time I'd love to contribute to the...
This would be a completely new simulation, but it's something I'm willing to attempt once I get back to my main PC (this is very CPU intensive). First we need...
This is a good idea. "Strict" bounds creates very artificial angular disturbance to the patterns, and no bounds just causes a lot of particles to be launched off into infinity....
After some attempts and considerations it's clear that repeating bounds has too much of a performance impact. The single distance check currently being done is already very heavy: `const float...
Please elaborate further. This is my previous attempt at such a check, and doubled the frame time despite drastically reducing `sqrt()` calls: ```c++ bool dist(int dx, int dy, int max_x,...
Haha oh wow. I got the part about the mandatory sqrt part, but I must admit I spent a long time trying to make the lookup table work! The state...