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

A few performance improvements #380

Merged
merged 5 commits into from
Sep 6, 2023

Commits on Sep 6, 2023

  1. Remove unused predicate

    proux01 committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    68415ac View commit details
    Browse the repository at this point in the history
  2. Accumulate clauses in batches

    gares authored and proux01 committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    aec1aa2 View commit details
    Browse the repository at this point in the history
  3. Use only sub-class in compress_coercion

    The compress predicate had a cubic number of entries in the size of
    a hierarchy whereas sub-class is only quadratic.
    
    Compilation of MathComp:
    before: 22:57 (1.53 GB)
      HB.structure: 05:42
      HB.instance: 02:31
    after: 20:36 (1.26 GB)
      HB.structure: 03:10
      HB.instance: 02:29
    proux01 committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    dd5d0f8 View commit details
    Browse the repository at this point in the history
  4. Remove unused eta expansion

    Compilation of MathComp:
    before: 20:36 (1.26 GB)
      HB.structure: 03:10
      HB.instance: 02:29
    after: 17:46 (1.24 GB)
      HB.structure: 01:37
      HB.instance: 02:18
    proux01 committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    16318c8 View commit details
    Browse the repository at this point in the history
  5. Accumulate DB first

    Compilation of MathComp:
    before: 17.46 (1.24 GB)
      HB.structure: 01:37
      HB.instance: 02:18
    after: 17.22 (1.27 GB)
      HB.structure: 01:38
      HB.instance: 02:21
    proux01 committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    9116e20 View commit details
    Browse the repository at this point in the history