Tim Holy
Tim Holy
I've seen cases that make me think that we may need to redesign how construction and position-evaluation compute types. To be clear, I suspect that I am responsible for the...
On my machine, the workload inside the `@precompile_all_calls` goes from 0.3s with the previous precompile script to 0.08s with the new one, a 4x reduction. Given that we don't have...
StatsBase has a number of ambiguities on 0.6: ```julia julia> using StatsBase julia> using Base.Test julia> detect_ambiguities(StatsBase, Base, Core) Skipping StatsBase.hist Skipping StatsBase.wmean! Skipping Base.
This checks whether `hypot` of the value component is zero, and if so switches to a next-order method. ~This may be slightly controversial since it exploits the difference between 0.0...
IntervalArithmetic.jl may abandon support for `==` among intervals (https://github.com/JuliaIntervals/IntervalArithmetic.jl/pull/571). To support specialization for specific Number subtypes, this makes `iszero_tuple` into a "trait"-dispatched function, first unwrapping all the way down to...
Because of the extensive changes on `master`, ForwardDiff no longer works with this package. This add an extension (Julia 1.9+) providing at least basic support. Note that: - this depends...
CC @giordano, @devmotion (and others?) I've not been `Watching` this package but it looks like interesting and important changes are afoot, and I wonder if it's an opportunity for some...
I'd like to compute up to third-order derivatives with respect to a scalar (non-measurement) of a measurement-valued function. Something along the lines of this demo: ```julia julia> using Measurements julia>...
This makes minor documentaion changes that show users how to extend the interface without generating ambiguities or StackOverflowErrors. It turns out to be important to ensure that one's methods "win"...
This redesigns the constructors of `MvNormal` to: - check argument consistency in the inner constructor - support "coercion," for example `MvNormal{Float32}(μ, Σ)` will enforce that the result has eltype `Float32`...