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

feat(blockstore): benchmarks #275

Merged
merged 38 commits into from
Oct 24, 2024
Merged

feat(blockstore): benchmarks #275

merged 38 commits into from
Oct 24, 2024

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    2db1e1b View commit details
    Browse the repository at this point in the history
  2. updated test data

    dadepo committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    b8ef631 View commit details
    Browse the repository at this point in the history
  3. Added benchReadSequential

    dadepo committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    e9eb195 View commit details
    Browse the repository at this point in the history
  4. Rename test file

    dadepo committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    baa2fd8 View commit details
    Browse the repository at this point in the history
  5. Added benchReadRandom

    dadepo committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    6f46e71 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Set c allocator

    dadepo committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    fd8952a View commit details
    Browse the repository at this point in the history
  2. typo

    dadepo committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    a7e6bfb View commit details
    Browse the repository at this point in the history
  3. Check in test data

    dadepo committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    fe078fb View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. Update test name

    dadepo committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    439100b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7f3c380 View commit details
    Browse the repository at this point in the history
  3. Add benchSerializeWriteBincode

    dadepo committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    4d55ccd View commit details
    Browse the repository at this point in the history
  4. Update title

    dadepo committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    8c80082 View commit details
    Browse the repository at this point in the history
  5. Add benchReadBincode

    dadepo committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    4528620 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Configuration menu
    Copy the full SHA
    5fa8282 View commit details
    Browse the repository at this point in the history
  2. Typo fix

    dadepo committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    ab2086b View commit details
    Browse the repository at this point in the history
  3. Fmt

    dadepo committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    077cda2 View commit details
    Browse the repository at this point in the history
  4. import via the root source

    dadepo committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    692d561 View commit details
    Browse the repository at this point in the history
  5. camelCase for functions

    dadepo committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    44fa660 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cc8ac6c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    dbcd012 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b84cc5c View commit details
    Browse the repository at this point in the history
  9. Remove unused imports

    dadepo committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    dcccd63 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Configuration menu
    Copy the full SHA
    aea8d1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b04328 View commit details
    Browse the repository at this point in the history
  3. Switch to sig.time.Timer

    dadepo committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    9a1dfd9 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Fix typo

    dadepo committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    82a531d View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. Configuration menu
    Copy the full SHA
    872a32b View commit details
    Browse the repository at this point in the history
  2. typo

    dadepo committed Oct 19, 2024
    Configuration menu
    Copy the full SHA
    6249323 View commit details
    Browse the repository at this point in the history
  3. Fixes after merging.

    dadepo committed Oct 19, 2024
    Configuration menu
    Copy the full SHA
    6fdf8f3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2a1dbc6 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. Added comment

    dadepo committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    d684d62 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. Configuration menu
    Copy the full SHA
    035963e View commit details
    Browse the repository at this point in the history
  2. Fixes after merge

    dadepo committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    d8a9555 View commit details
    Browse the repository at this point in the history
  3. Switch to nanoseconds

    dadepo committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    5972a1e View commit details
    Browse the repository at this point in the history
  4. Update iteration

    dadepo committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    f4eb228 View commit details
    Browse the repository at this point in the history
  5. Set iteration back to 5 for CI

    dadepo committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    1719072 View commit details
    Browse the repository at this point in the history
  6. test(ledger): benchmark naming, iterations, units

    - use clearer benchmark names to indicate what they're benchmarking
    - 25 instead of 5 iterations, for better data
    - use microseconds instead of ns since ns is practically impossible to read visually and only provides false precision
    dnut committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    49d9eb5 View commit details
    Browse the repository at this point in the history
  7. fix(ledger): typo

    dnut committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    b82c367 View commit details
    Browse the repository at this point in the history