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

Tps benchmark logs #3970

Open
wants to merge 24 commits into
base: block_executor_optimize_tps
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
546ed7d
[benchmark] merge calculate code from benchmark project
welbon Sep 1, 2023
653b8ae
[benchmark] Close the parallel execution
welbon Sep 4, 2023
e6153c6
[benchmark] add the parameter for num_threads
welbon Sep 5, 2023
a7a31e7
[benchmark] Add manual_sequence for sequence execution
welbon Sep 6, 2023
7e2b3dc
[benchmark] Add flamegraph config for transaction_benches
welbon Sep 7, 2023
a75c93e
build_test.yml use branch tps_benchmark
nkysg Sep 8, 2023
02790a4
add stm flamegraph.sh
nkysg Sep 8, 2023
64ee94f
[benchmark] Add flamegraph config for script
welbon Sep 8, 2023
f131e23
optimize mod StarcoinVM log
nkysg Sep 8, 2023
72f63a5
[benchmark] Add flamegraph file to github CI artifact after action co…
welbon Sep 8, 2023
83198af
Merge remote-tracking branch 'origin/tps_benchmark' into tps_benchmark
welbon Sep 8, 2023
cf5d7a6
[benchmark] Split the peer_to_peer benchmark into two targets
welbon Sep 8, 2023
9930e84
[benchmark] Split the peer_to_peer benchmark into two targets
welbon Sep 8, 2023
e00d4de
[benchmark] Split the peer_to_peer benchmark into two targets
welbon Sep 8, 2023
d8c760b
[benchmark] fix flamegraph output command
welbon Sep 8, 2023
aa81c37
[benchmark] fix flamegraph output command
welbon Sep 8, 2023
c2d7087
[benchmark-log] some logs for benchmark
welbon Sep 21, 2023
d9bcc74
[benchmark-log] fixed account layout for e2e-test
welbon Sep 22, 2023
54048ed
[benchmark-log] closed some log
welbon Sep 23, 2023
3db8a45
[benchmark-log] closed some log and fix some block meta creation error
welbon Sep 24, 2023
40af6d1
[benchmark-log] add unittest for transaction
welbon Sep 25, 2023
68d22e3
add balance
nkysg Sep 25, 2023
ea84a91
[e2e-test] fix error EPROLOGUE_CANT_PAY_GAS_DEPOSIT
welbon Sep 25, 2023
f9575e6
[e2e-test] disable all print
welbon Sep 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 12 additions & 33 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- tps_benchmark

jobs:
build-and-test:
Expand All @@ -15,44 +15,23 @@ jobs:
uses: actions/checkout@v1
with:
submodules: recursive
- name: run fmt check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: setup environment
run: bash ./scripts/dev_setup.sh -b -t -y -m
- name: run cargo clean
uses: actions-rs/cargo@v1
with:
command: clean
- name: run cargo check
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: -D warnings
with:
command: clippy
args: --all-targets
- name: build
uses: actions-rs/cargo@v1
with:
command: build
args: --all
- name: test
run: ./scripts/nextest.sh
# - name: check changed files
# run: bash ./scripts/changed_files.sh
- name: Doc Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --doc
- name: integration test dev environment
- name: run flamegraph
run: bash ./scripts/stm_flamegraph.sh
env:
RUST_LOG: info
RUST_LOG: error
RUST_BACKTRACE: full
STARCOIN_WS: ${{ secrets.STARCOIN_WS }}
uses: actions-rs/cargo@v1
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: upload flamegraph to artifact
uses: actions/upload-artifact@v2
with:
command: test
args: --test integration -- -e cmd
name: flamegraph-artifact
path: |
./target/criterion/peer_to_peer/profile/flamegraph.svg
./target/criterion/peer_to_peer_parallel/profile/flamegraph.svg
Loading
Loading