JuliaPlots/Plots.jl

[FR] Improve performance of plotting heatmaps

Open

#4,520 opened on 2022年11月15日

GitHub で見る
 (13 comments) (1 reaction) (0 assignees)Julia (1,943 stars) (381 forks)batch import
help wantedperformance

説明

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

コントリビューターガイド