Gabriel Gerlero

Results 19 issues of Gabriel Gerlero

After ~~v0.6.1~~ v0.6.2 is registered (#62), maybe it's time to make a v1.0.0 release too? The package seems stable (see #56) and mature (5+ years) enough, and has third-party packages...

Closes #610. ## Proposal I propose adding a `value_and_derivative` function for easy single-pass computation of value and derivative that has the same signature as `derivative` but returns a plain tuple....

Adds support for taking derivatives of functions with `Unitful` units on their input and/or output by means of an extension (weakdep). The extension works by ensuring that `Dual` always wraps...

Considering these two methods that compute the value and first derivative of a scalar function in a single pass: ```jl import ForwardDiff import DiffResults @inline function value_and_derivative(f, Y::Type, x::Real) diffresult...

Closes #58 If think this creates too many CI jobs, we could choose to run the older pytest versions on just a single python version each.

Fix #44 by explicitly tearing down already filled fixtures when a fixture function raises an exception

The fixture collection logic does not seem to account for this case (neither before nor after #37), and so an exception raised while filling a fixture will not trigger the...

Exceptions raised from fixtures currently cause test failures (i.e., `FAILED`/`F`) when using the plugin, when they should instead be counted as errors (`ERROR`/`E`).