Mandar Chitre

Results 139 comments of Mandar Chitre

> So for example, for the heatmap you need access to the `ax.finallimits` struct, but it would easily be possible to just write a function like `lazy_on(:axis_finallimits) do ...` which...

Another MWE, if it helps: ```julia using DSP x = randn(1822) resample(x, 0.9802414928649834) # works resample(x, 0.9802414928649835) # fails ```

I'm not sure I understand the question fully. Could you give an example to illustrate what you mean?

Yes, shouldn't be hard to add an option to adopt new axis limits. But no such option currently available, so marking this as a feature request during the next release.

I don't have a Mexican Spanish keyboard to test on. Do you know what needs to be done to fix this?

Indeed using https://github.com/JuliaLang/PackageCompiler.jl/pull/489 fixes the problem

Noted. But it may be possible to run the early stages of the data pipeline on GPU and bring the data to CPU before passing to Makie.

You mean like this? ```julia function iplot!!(args...; kwargs...) viz = ifigure(hold=true) (length(viz.children) > 0 ? iplot! : iplot)(args...; kwargs...) end ```

Yes, that's what it does. I'd suggest testing it out for your use case, and if that's what you're looking for, I can add it in into the next release....