Tamas K. Papp
Tamas K. Papp
I wrapped up an MWE in [ImplicitAD.jl](https://github.com/tpapp/ImplicitAD.jl) for an `rrule` I defined (see the single test). My issue is that ```julia test_rrule(one_one, 1.0; check_inferred = true, fdm = forward_fdm(5, 1),...
```julia using ADNLPModels, Percival nlp = ADNLPModel( x -> sum(abs2, x), # objective [2.0, 2.0], # x0 x -> [sum(x) - 1], # constraint [-Inf], # lvar [Inf], # uvar...
I am reading and processing a large gzip-compressed file and want to show some progress information, preferably with [ProgressMeter.jl](https://github.com/timholy/ProgressMeter.jl), which has the following idiom: ```julia seekend(io) fileSize = position(io) seekstart(io)...
I am getting this on Travis (for both `master` and the released version of `Lazy.jl`): ``` while loading /home/travis/.julia/v0.7/Lazy/src/macros.jl, in expression starting on line 243 ERROR: LoadError: LoadError: LoadError: LoadError:...
I am testing some new heuristics for DynamicHMC. What's the best way to run the test suite on my local machine for a local branch of DynamicHMC? (Sorry if this...
Add a minor note to the documentation about the scope module docstrings are evaluated in, with an example and a simple test. Cf [discussion](https://discourse.julialang.org/t/scope-of-module-docstring/114085/)
MWE: ```julia pkg> st DataStructures [864edb3b] DataStructures v0.18.18 julia> using DataStructures julia> dd = DefaultDict(1, :a => (2,)) DefaultDict{Symbol, Tuple{Int64}, Int64} with 1 entry: :a => (2,) julia> dd[:b] ERROR:...
Thanks for this nice package. It is referenced in multiple issues/discussion as an improvement on `Base.mapslices`, either because it handles dropping dimensions more consistently, or it is faster. I wonder...
MWE: ```julia using Enzyme # make a test problem struct Foo D::Vector{Float64} end const N = 5 # dimension for MWE (f::Foo)(x) = mapreduce((D, x) -> log(D) + exp(x), +,...
- [ ] test univariate derivatives extensively, up to 2nd order at least - [ ] test partial derivatives at least up to 1rd and cross - [ ] rewrite...