Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use snoopcompile to more aggressively precompile Gadfly #1280

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Apr 22, 2019

  1. Remove unnecessary splatting from internal interfaces

    This gives a marginal improvement on speed and memory use during first
    plot, but the biggest benefit is that it makes the code easier to read
    and the profiling significantly easier to grok.
    non-Jedi committed Apr 22, 2019
    Configuration menu
    Copy the full SHA
    0f11ad0 View commit details
    Browse the repository at this point in the history
  2. Compare nothing by type rather than by value

    Comparing nothing by value (==, =!) rather than by identity (===, !==)
    or by type (isnothing) can have negative consequences on code
    speed. This commit changes all nothing comparisons to use the
    isnothing utility added in Julia 1.1 and Compat 2.1.
    non-Jedi committed Apr 22, 2019
    Configuration menu
    Copy the full SHA
    3470acc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e9733d6 View commit details
    Browse the repository at this point in the history