heyer2

Results 8 comments of heyer2

This is indeed a needed addition to the documentation. At current one might be fooled into thinking that the robust loss function is applied to each individual residual of a...

My apologies, somehow Github removed the underscores, here it is: ``` backend = app.__backend__ clock = app.__init__(backend=backend) ```

Yes, you got it right. I see you manually specifying the backend is a necessity. How come opening a window enables a backend? Perhaps there should be a warning indicating...

I just tested to be sure. This code that worked for you does not work for me: ``` from glumpy import app, gloo, gl app.use("glfw") backend = app.__backend__ clock =...

For my application I dynamically open none to several windows. Initializing the backend together with all the other initialization code just seemed convenient in comparison to manually checking if a...

I checked that earlier actually, it did.

I stumbled upon the lack of Linux -> Windows support a while ago as well. We compile a project to `x86-64 (Linux)`, `ARM64 (Linux)` and `x86-64 (Windows)` using CMake on...