Tim Holy

Results 243 issues of Tim Holy

The cause was a new method in SciMLBase.jl: ``` julia> tree inserting ==(retcode::SciMLBase.ReturnCode.T, s::Symbol) @ SciMLBase ~/.julia/packages/SciMLBase/QqtZA/src/retcodes.jl:348 invalidated: ``` This accounts for only ~20 invalidations, but seems worth having.

This removes some ambiguity warnings

In principle it seems like it should be possible to do away with GPUCompiler entirely on 1.9+. I suspect you basically want to call [`jl_save_system_image_to_stream`](https://github.com/JuliaLang/julia/blob/3254e623468939d2e7b8bec50b6997e43f72246f/src/staticdata.c#L2245-L2248) with a custom list of...

There seems to have been renewed interest in updating this package. I note the README seems out of date. This package might also be a good place to keep more...

```julia julia> νs = 10 .^ (range(-3, stop=3, length=15)) pmorph(x, ν) = (r² = x'*x; exp(-r²^ν/(2ν))) pmorph_x1_2(x, ν) = (r² = x'*x; x[1]^2 * exp(-r²^ν/(2ν))) d = 2 rstart =...

I'm sure you're aware of these issues, but just to record a first time potential user's initial impressions: - [ ] README could probably benefit from at least a couple...

For more extensive testing and performance measurement, it would be great to have an extensive set of benchmarks. I stumbled across this blog post: https://depth-first.com/articles/2020/10/19/smiles-reading-performance-rdkit-vs-chemcore/, and it describes some that...

I think this would be a lot more useful if the GitHub description line were presented as part of `render`. That's usually the single best 1-line summary of what the...

First, thanks very much for this package! I was just kicking the tires on its "discovery" capabilities for unregistered packages, and noticed the following apparent misses among my own packages...

Can a stub version of this package be released for Julia 1.0 that just calls `Base.download`? Currently, for package tests it's not possible to make `Downloads` an `[extra]` dependency without...