Update FIO benchmark CI

This commit is contained in:
Yuke Peng 2024-12-14 13:14:16 +08:00 committed by Tate, Hongliang Tian
parent 0397e7281e
commit efac408524
6 changed files with 8 additions and 8 deletions

View File

@ -57,8 +57,8 @@ jobs:
- lmbench/ext2_copy_files_bw - lmbench/ext2_copy_files_bw
- fio/ext2_seq_write_bw - fio/ext2_seq_write_bw
- fio/ext2_seq_read_bw - fio/ext2_seq_read_bw
- fio/ext2_iommu_seq_write_bw - fio/ext2_seq_write_bw_no_iommu
- fio/ext2_iommu_seq_read_bw - fio/ext2_seq_read_bw_no_iommu
# Network-related benchmark # Network-related benchmark
- lmbench/tcp_loopback_bw_4k - lmbench/tcp_loopback_bw_4k
- lmbench/tcp_loopback_bw_64k - lmbench/tcp_loopback_bw_64k

View File

@ -8,12 +8,12 @@
"result_index": 2 "result_index": 2
}, },
"chart": { "chart": {
"title": "[Ext2] The bandwidth of sequential reads (IOMMU enabled on Asterinas)", "title": "[Ext2] The bandwidth of sequential reads (IOMMU disabled on Asterinas)",
"description": "fio -filename=/ext2/fio-test -size=1G -bs=1M -direct=1", "description": "fio -filename=/ext2/fio-test -size=1G -bs=1M -direct=1",
"unit": "MB/s", "unit": "MB/s",
"legend": "Average file read bandwidth on {system}" "legend": "Average file read bandwidth on {system}"
}, },
"runtime_config": { "runtime_config": {
"aster_scheme": "iommu" "aster_scheme": "null"
} }
} }

View File

@ -8,12 +8,12 @@
"result_index": 2 "result_index": 2
}, },
"chart": { "chart": {
"title": "[Ext2] The bandwidth of sequential writes (IOMMU enabled on Asterinas)", "title": "[Ext2] The bandwidth of sequential writes (IOMMU disabled on Asterinas)",
"description": "fio -filename=/ext2/fio-test -size=1G -bs=1M -direct=1", "description": "fio -filename=/ext2/fio-test -size=1G -bs=1M -direct=1",
"unit": "MB/s", "unit": "MB/s",
"legend": "Average file write bandwidth on {system}" "legend": "Average file write bandwidth on {system}"
}, },
"runtime_config": { "runtime_config": {
"aster_scheme": "iommu" "aster_scheme": "null"
} }
} }

View File

@ -2,7 +2,7 @@
"benchmarks": [ "benchmarks": [
"ext2_seq_write_bw", "ext2_seq_write_bw",
"ext2_seq_read_bw", "ext2_seq_read_bw",
"ext2_iommu_seq_write_bw", "ext2_seq_write_bw_no_iommu",
"ext2_iommu_seq_read_bw" "ext2_seq_read_bw_no_iommu"
] ]
} }