Skip to content
This repository was archived by the owner on Nov 27, 2022. It is now read-only.

Commit acea20d

Browse files
committed
Clarified schedule and heavy_compute bench descriptions
1 parent 837faa6 commit acea20d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A suite of benchmarks designed to test and compare Rust ECS library performance across a variety of challenging circumstances.
44

5-
The full benchmark report is available [here](https://tomgillen.github.io/ecs_bench_suite/target/criterion/report/index.html)
5+
The full benchmark report is available [here](https://tomgillen.github.io/ecs_bench_suite/target/criterion/report/index.html).
66

77
| | legion | legion 0.2.4 | bevy | shipyard |
88
|------------------|:-----------:|:------------:|:--------:|:----------:|
@@ -41,7 +41,7 @@ Test: Iterate through all entities with a `Data` component and double its value.
4141

4242
### System Scheduling
4343

44-
This benchmark is designed to test how efficiently the ECS can schedule multiple independent systems on a multi-core CPU. Each system should execute on a single CPU core.
44+
This benchmark is designed to test how efficiently the ECS can schedule multiple independent systems on a multi-core CPU. This is primarily an outer-parallelism test. Each system should execute on a single CPU core.
4545

4646
Dataset:
4747

@@ -60,7 +60,7 @@ Three systems accessing the following components mutably, where each system swap
6060

6161
### Heavy Compute
6262

63-
This benchmark is designed to test the ECS's ability to scale when it is allowed to run a system over multiple CPU cores.
63+
This benchmark is designed to test the ECS's ability to scale when it is allowed to run a system over multiple CPU cores. This is primarily an inner-parallelism test.
6464

6565
Dataset: 10,000 entities with a `mat4x4` component.
6666

0 commit comments

Comments
 (0)