Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/benchmarks/general.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
plot_group: Startup Time
name: 1 core
bin: startup_benchmark
hermit_rs_manifest_path: benches/startup/Cargo.toml
hermit_rs_manifest_path: benches/startup_benchmark/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-accel kvm \
Expand All @@ -21,7 +21,7 @@
plot_group: Startup Time
name: 2 cores
bin: startup_benchmark
hermit_rs_manifest_path: benches/startup/Cargo.toml
hermit_rs_manifest_path: benches/startup_benchmark/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-accel kvm \
Expand All @@ -40,7 +40,7 @@
plot_group: Startup Time
name: 4 cores
bin: startup_benchmark
hermit_rs_manifest_path: benches/startup/Cargo.toml
hermit_rs_manifest_path: benches/startup_benchmark/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-accel kvm \
Expand All @@ -59,7 +59,7 @@
plot_group: Multithreaded Pi Efficiency
name: Pi Multithreaded Benchmark
bin: multithreaded_benchmark
hermit_rs_manifest_path: benches/multithreaded/Cargo.toml
hermit_rs_manifest_path: benches/multithreaded_benchmark/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-accel kvm \
Expand Down
6 changes: 3 additions & 3 deletions .github/benchmarks/misc.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- group: Micro
name: Micro Benchmarks
bin: micro_benchmarks
hermit_rs_manifest_path: benches/micro/Cargo.toml
hermit_rs_manifest_path: benches/micro_benchmarks/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-accel kvm \
Expand All @@ -18,7 +18,7 @@
- group: Allocations
name: Allocation Benchmarks
bin: alloc_benchmarks
hermit_rs_manifest_path: benches/alloc/Cargo.toml
hermit_rs_manifest_path: benches/alloc_benchmarks/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-accel kvm \
Expand All @@ -35,7 +35,7 @@
- group: Mutex
name: Mutex Stress Test
bin: mutex_benchmark
hermit_rs_manifest_path: benches/mutex/Cargo.toml
hermit_rs_manifest_path: benches/mutex_benchmark/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-accel kvm \
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
- name: Checkout hermit-rs
uses: actions/checkout@v7
with:
repository: hermit-os/hermit-rs
repository: fogti/hermit-rs
ref: bulk-uniform-rename
- name: Checkout hermit-kernel
uses: actions/checkout@v7
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ jobs:
- name: Checkout hermit-rs
uses: actions/checkout@v7
with:
repository: hermit-os/hermit-rs
repository: fogti/hermit-rs
ref: bulk-uniform-rename
- name: Checkout hermit-kernel
uses: actions/checkout@v7
with:
Expand Down
Loading