Manuel

Results 20 issues of Manuel

I was trying to differentiate with respect to the Camera position and therefore included the `get_primary_rays(c::Camera)` function in the loss function. Using Zygote 0.4.15 (and Julia 1.3), this results in...

bug

This is a proposal on how to fix https://github.com/JuliaDocs/Documenter.jl/issues/1079. By default, the standard behavior is maintained, that is, duplicate docstrings are not printed. However, `@docs` and `@autodocs` now allow for...

Hi, as always, thanks for the great work! This is just a proposal for an alternative syntax for julia comments in code blocks. The usual style is `## comment` and...

I propose to test the path(s) set in the environment variable `PYTHONPATH` to be considered as candidates for the `julia-py` script. Consider the case when `pyjulia` has been installed in...

In `NNlib.maxpool` we encounter `typemin` to initialize the prospective maximum value. `typemin` is not implemented for `ReverseDiff.TrackedReal` This definition seems to work (it allows for taking derivatives): ```julia Base.typemin(tr::Type{

Suppose the issue in JuliaSymbolics/Symbolics.jl#455 is fixed, e.g., via #493. Then `simplify(sum(x.^2))` fails. The error results from a call to `broadcastable` on the arguments of `(x.^2).value.term`. E.g., the first argument...

Currently, `L"\mathbf{x}` gets parsed to `TeXChar 'x' [index 89 in NewComputerModern - 10 Bold Italic]`. This deviates from the standard LaTeX behavior, where we would expect an upright bold character....

The `set_timeout` function in [src/Curl/Easy.jl](https://github.com/JuliaLang/Downloads.jl/blob/9f738d30e1256a4c122dff9f38536cfc1feeca8e/src/Curl/Easy.jl#L138) checks the argument `timeout` against `typemax(Clong)`. But (at least in my case) `setopt(easy, CURLOPT_TIMEOUT, typemax(Clong))` leads to ``` Error: curl_easy_setopt: 43 ``` which is a...

The example flake uses deprecated attributes `extraModules` and `configuration`, see https://nix-community.github.io/home-manager/release-notes.xhtml#sec-release-22.11-highlights Putting both `plasma-manager` and `home.nix` in `modules` seems to work, though (at least it builds)... Here is my flake:...

Hi, thanks for the great package! I noticed, that evaluating a `PolynomialSystem` at a `SVector` returns an `SVector`, but the same does not hold true for `SizedVector` or `MVector`. I...