MariusDrulea

Results 75 comments of MariusDrulea

I have checked [Autograd.jl engine](https://github.com/denizyuret/AutoGrad.jl/blob/master/src/core.jl#L165) and also [HIPS/autograd engine](https://github.com/HIPS/autograd/blob/master/autograd/numpy/numpy_jvps.py). These engines calls the differentiation (rrules) in the backward pass. So does Tracker.jl. The right thing to do here is to...

Status: ``` Test Summary: | Pass Fail Error Broken Total Time Tracker | 357 1 15 3 376 22.0s gradtests 1 | 16 16 0.6s gradtests 1.1 | 10 10...

I tested with Julia 1.9.4 and downgraded to Genie v5.21.2 and GenieFramework v1.26.4 and still does not work.

hm... It works if you directly include the MessageController.jl file. If I have a lot of controllers and models and views, I would probably want to include each controller individually...

**It works if I downgrade to:** Julia 1.9.4 (GeniePlay) pkg> status [c43c736e] Genie v5.21.2 `https://github.com/GenieFramework/Genie.jl.git#v5.21.2` [a59fdf5c] GenieFramework v1.26.4 `https://github.com/GenieFramework/GenieFramework.jl.git#v1.26.4` **It does not work if I:** Julia 1.10 (GeniePlay) pkg> st...

Btw, the usage of Index and Form can be simplified like below, just use Index.ui instead of Main.App.Index.ui. ```julia module App using GenieFramework @genietools include("Index.jl") include("Form.jl") @page("/", Index.ui, model=Index) @page("/form",...

Initially I have no REPL running. Then I execute the code in REPL so the first REPL is created. What I get is an empty list, altough there we have...

The second time I debug the ALL list is populated, but as you can see the modules appear interpreted and most of them shall be compiled. ![image](https://github.com/julia-vscode/julia-vscode/assets/27725572/2d2ea4a1-844f-4643-af16-99942d3ecf1a)

https://www.julia-vscode.org/docs/dev/userguide/debugging/#Settings-to-speed-up-the-debugger

The derivative of `sqrt(x)` is `1/(2*sqrt(x))` so it has to be `Inf` around 0, as 1/0 return Inf in Julia. Zygote, ForwardDiff, ReverseDiff are right here. It would be a...