Skip to content

Commit

Permalink
CI Benchs: UTs need WASM generation
Browse files Browse the repository at this point in the history
  • Loading branch information
fmiguelgarcia committed Oct 24, 2023
1 parent 632d8f9 commit 2e37fcf
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/restore@v3
- uses: actions/cache/restore@v3
with:
path: |
~/.cache/
Expand Down Expand Up @@ -346,8 +346,6 @@ jobs:
unit_tests:
runs-on: ubuntu-latest
needs: [build]
env:
SKIP_WASM_BUILD: true
steps:
- uses: actions/checkout@v2

Expand All @@ -356,12 +354,12 @@ jobs:
with:
tool-cache: true

- uses: actions/cache@v3
- uses: actions/cache/restore@v3
with:
path: |
~/.cache/
~/.cargo/bin/sccache*
key: ${{ runner.OS }}-cache-ut-${{ env.CARGO_SCCACHE_COMMIT }}-v1
key: ${{ runner.OS }}-cache-bin-${{ env.CARGO_SCCACHE_COMMIT }}-v1

- name: Install system dependencies
run: |
Expand Down

2 comments on commit 2e37fcf

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 2e37fcf Previous: 632d8f9 Ratio
commitment_builder/32 4096087576 ns/iter (± 19111454) 4239305043 ns/iter (± 103025063) 0.97
commitment_builder/64 4037163327 ns/iter (± 17229087) 4146927392 ns/iter (± 96859072) 0.97
commitment_builder/128 4608335045 ns/iter (± 158225275) 4527921057 ns/iter (± 59996064) 1.02
commitment_builder/256 2192397722 ns/iter (± 14548716) 2205138657 ns/iter (± 36843535) 0.99

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 2e37fcf Previous: 632d8f9 Ratio
commitment_builder_32 Instructions 42920268967 ops (± 0) 42920265841 ops (± 0) 1.00
commitment_builder_32 L1 Accesses 52858721979 ops (± 0) 52858711440 ops (± 0) 1.00
commitment_builder_32 L2 Accesses 424334 ops (± 0) 430583 ops (± 0) 0.99
commitment_builder_32 RAM Accesses 100446 ops (± 0) 101017 ops (± 0) 0.99
commitment_builder_32 Estimated Cycles 52864359259 ops (± 0) 52864399950 ops (± 0) 1.00
commitment_builder_64 Instructions 41390348466 ops (± 0) 41390334795 ops (± 0) 1.00
commitment_builder_64 L1 Accesses 50751743532 ops (± 0) 50751723761 ops (± 0) 1.00
commitment_builder_64 L2 Accesses 556251 ops (± 0) 555435 ops (± 0) 1.00
commitment_builder_64 RAM Accesses 199123 ops (± 0) 199375 ops (± 0) 1.00
commitment_builder_64 Estimated Cycles 50761494092 ops (± 0) 50761479061 ops (± 0) 1.00
commitment_builder_128 Instructions 53619515721 ops (± 0) 53619537848 ops (± 0) 1.00
commitment_builder_128 L1 Accesses 67644576894 ops (± 0) 67644600246 ops (± 0) 1.00
commitment_builder_128 L2 Accesses 1007020 ops (± 0) 1015589 ops (± 0) 0.99
commitment_builder_128 RAM Accesses 269625 ops (± 0) 269618 ops (± 0) 1.00
commitment_builder_128 Estimated Cycles 67659048869 ops (± 0) 67659114821 ops (± 0) 1.00
commitment_builder_256 Instructions 31178852558 ops (± 0) 31178642102 ops (± 0) 1.00
commitment_builder_256 L1 Accesses 40169664169 ops (± 0) 40169352892 ops (± 0) 1.00
commitment_builder_256 L2 Accesses 6482915 ops (± 0) 6485426 ops (± 0) 1.00
commitment_builder_256 RAM Accesses 268574 ops (± 0) 268224 ops (± 0) 1.00
commitment_builder_256 Estimated Cycles 40211478834 ops (± 0) 40211167862 ops (± 0) 1.00

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.