JuliaPlots/Plots.jl

[FR] Improve performance of plotting heatmaps

Open

#4 520 ouverte le 15 nov. 2022

Voir sur GitHub
 (13 commentaires) (1 réaction) (0 assignés)Julia (381 forks)batch import
help wantedperformance

Métriques du dépôt

Stars
 (1 943 stars)
Métriques de merge PR
 (Merge moyen 13j 6h) (2 PRs mergées en 30 j)

Description

Reported on Slack by Jesse Chan, repeated calls to plot! to produce overlying heatmaps was very slow.

const mat = randn(512, 512)

function f(x, n)
    plot()
    for _ in 1:n
        heatmap!(x)
    end
end

f(mat, 100)

Allocation profiler shows the large majority of allocations occurring in heatmap_edges: image

And the large majority of computation time in expand_extrema! (which calls heatmap_edges) and update_clims (my old nemesis): image

Guide contributeur