• Stars
    star
    192
  • Rank 201,410 (Top 4 %)
  • Language
    C++
  • License
    MIT License
  • Created almost 8 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Benchmarks of common ECS (Entity-Component-System)-Frameworks in C++ (or C)

Entity-Component-System Benchmarks

Actions Status License Standard

This repository contains a collection of benchmarks for popular Entity-Component-System (ECS) frameworks. The benchmarks cover different aspects of ECS frameworks, such as update systems, component additions/removals, and entity creation/destruction. It's important to note that different ECS frameworks have different strengths and weaknesses. For example, some frameworks might excel in adding/removing components, while others might be better at creating/destroying entities. Therefore, it's crucial to choose an ECS framework based on your specific requirements.

ECS (Entity-Component-System) Frameworks:

TL;DR Results

The benchmark results are displayed in tables and charts, allowing you to quickly compare the performance of different ECS frameworks in different scenarios. When using ECS frameworks, it's important to benchmark your specific use case and compare the results. Therefore, the results of these benchmarks should be used as a starting point for your own benchmarking efforts.

Update systems (for-each entities (with mixed components) in 5 systems)

ComplexSystemsUpdateMixedEntities Plot

(lower is better)

EnTT EnTT (runtime) EnTT (group) EnTT (stable) Ginseng mustache Flecs pico_ecs
Update 16 entities with 5 Systems 1us 2us 1us 1us 1us 43us 3us 1us
Update 64 entities with 5 Systems 6us 9us 5us 5us 6us 49us 7us 5us
Update 256 entities with 5 Systems 26us 40us 25us 24us 25us 64us 26us 26us
Update ~1K entities with 5 Systems 105us 158us 100us 96us 100us 136us 99us 102us
Update ~4K entities with 5 Systems 415us 630us 398us 381us 395us 416us 383us 408us
EnTT EnTT (runtime) EnTT (group) EnTT (stable) Ginseng mustache Flecs pico_ecs
Update ~16K entities with 5 Systems 1ms 2ms 1ms 1ms 1ms 1ms 1ms 1ms
Update ~65K entities with 5 Systems 6ms 10ms 6ms 6ms 6ms 5ms 6ms 6ms
Update 262K entities with 5 Systems 26ms 40ms 26ms 25ms 26ms 24ms 25ms 26ms
Update ~1M entities with 5 Systems 105ms 160ms 114ms 101ms 105ms 97ms 100ms 105ms
Update ~2M entities with 5 Systems 211ms 321ms 277ms 204ms 213ms 195ms 200ms 212ms

While this benchmark only includes up to 5 simple components and 5 small systems, it's important to note that Entity-Component-Systems can become much more complex in the wild, with hundreds of components and systems. Therefore, it's crucial to always benchmark your specific cases and systems when necessary and compare results. Choose an ECS framework based on its features, for example, EnTT offers resource management and event handling, while flecs provides useful add-ons, and EntityX includes a built-in world/system manager.

To evaluate a framework, look at its examples and API design, and pick the one that suits your needs the best.

Details

Features

All benchmarks are located in the benchmark/benchmarks/ directory and are implemented with the google/benchmark library. Each benchmark must implement the ECSBenchmark.h template.

Each framework has its own sub-project in the src/ directory and must implement specific features (see src/base).

Components

  1. PositionComponent: includes x and y coordinates.
  2. VelocityComponent: includes x and y coordinates for movement.
  3. DataComponent: includes some arbitrary data.
  4. HealthComponent: Hero/Monster data includes HP/MaxHP and status.
  5. DamageComponent: Hero/Monster data includes damage.

Systems

  1. MovementSystem: updates the PositionComponent with a constant VelocityComponent.
  2. DataSystem: updates the DataComponent with arbitrary data.
  3. MoreComplexSystem: updates components with random data and arbitrary information.
  4. HealthSystem: update Hero/Monster health (update HP and status).
  5. DamageSystem: update Hero/Monster health by taking damage.

Additional Benchmarks

Benchmarks for more common features, such as "Creating entities", "Adding and removing components", and others.

Features tested

  • Entity Creation
  • Entity Destruction
  • Component Retrieval
  • Adding and Removing Components
  • Systems (for iterating through entities)

Environment

  • OS: Linux 64-Bit (Kernel: 6.5.4)
  • CPU: 3.13GHz @ 12Cores
  • RAM: 47GB
  • Compiler: gcc (GCC) 13.2.1

Create entities

CreateEntities Plot

(lower is better)

EntityX EnTT Ginseng mustache Flecs pico_ecs
Create 16 entities with two Components 2us 3us 10us 3us 509us 1us
Create 64 entities with two Components 6us 5us 12us 6us 519us 2us
Create 256 entities with two Components 20us 12us 17us 19us 574us 6us
Create ~1K entities with two Components 75us 41us 34us 70us 759us 20us
Create ~4K entities with two Components 297us 139us 102us 276us 1544us 89us
EntityX EnTT Ginseng mustache Flecs pico_ecs
Create ~16K entities with two Components 1ms 0ms 0ms 1ms 4ms 0ms
Create ~65K entities with two Components 4ms 2ms 1ms 4ms 17ms 1ms
Create 262K entities with two Components 18ms 9ms 8ms 18ms 65ms 7ms
Create ~1M entities with two Components 100ms 76ms 59ms 99ms 301ms 46ms
Create ~2M entities with two Components 197ms 139ms 110ms 195ms 586ms 80ms

Destroy entities

DestroyEntities Plot

(lower is better)

EntityX EnTT Ginseng Flecs pico_ecs
Destroy 16 entities with two components 1us 1us 2us 462us 1us
Destroy 64 entities with two components 3us 2us 6us 461us 1us
Destroy 256 entities with two components 12us 8us 23us 474us 2us
Destroy ~1K entities with two components 48us 30us 90us 516us 7us
Destroy ~4K entities with two components 196us 120us 357us 677us 28us
EntityX EnTT Ginseng Flecs pico_ecs
Destroy ~16K entities with two components 0ms 0ms 1ms 1ms 0ms
Destroy ~65K entities with two components 3ms 1ms 5ms 4ms 0ms
Destroy 262K entities with two components 13ms 8ms 23ms 14ms 1ms
Destroy ~1M entities with two components 63ms 36ms 101ms 63ms 9ms
Destroy ~2M entities with two components 128ms 74ms 195ms 122ms 18ms

Get one component from Entity

UnpackOneComponent Plot

(lower is better)

EntityX EnTT Ginseng mustache Flecs pico_ecs
Unpack one component in 16 entities 0us 0us 0us 0us 0us 0us
Unpack one component in 64 entities 0us 0us 0us 0us 2us 0us
Unpack one component in 256 entities 0us 0us 0us 2us 9us 0us
Unpack one component in ~1K entities 3us 3us 1us 10us 38us 1us
Unpack one component in ~4K entities 14us 13us 6us 43us 154us 5us
EntityX EnTT Ginseng mustache Flecs pico_ecs
Unpack one component in ~16K entities 0ms 0ms 0ms 0ms 0ms 0ms
Unpack one component in ~65K entities 0ms 0ms 0ms 0ms 2ms 0ms
Unpack one component in 262K entities 1ms 0ms 0ms 3ms 10ms 0ms
Unpack one component in ~1M entities 4ms 3ms 1ms 15ms 39ms 1ms
Unpack one component in ~2M entities 10ms 6ms 3ms 30ms 79ms 2ms

Note:

  • Get one non-const component
    1. PositionComponent

Get two components from entity

UnpackTwoComponents Plot

(lower is better)

EntityX EnTT Ginseng mustache Flecs pico_ecs
Unpack two components in 16 entities 0us 0us 0us 0us 1us 0us
Unpack two components in 64 entities 0us 0us 0us 1us 4us 0us
Unpack two components in 256 entities 1us 1us 0us 5us 19us 0us
Unpack two components in ~1K entities 7us 6us 2us 22us 79us 2us
Unpack two components in ~4K entities 29us 25us 12us 88us 317us 10us
EntityX EnTT Ginseng mustache Flecs pico_ecs
Unpack two components in ~16K entities 0ms 0ms 0ms 0ms 1ms 0ms
Unpack two components in ~65K entities 0ms 0ms 0ms 1ms 5ms 0ms
Unpack two components in 262K entities 2ms 1ms 0ms 6ms 20ms 0ms
Unpack two components in ~1M entities 8ms 6ms 3ms 27ms 80ms 2ms
Unpack two components in ~2M entities 18ms 13ms 6ms 49ms 161ms 5ms

Note:

  • Get non-const- and const-component
    1. PositionComponent
    2. const VelocityComponent

Get three components from entity

UnpackThreeComponents Plot

(lower is better)

EntityX EnTT Ginseng mustache Flecs pico_ecs
Unpack three components in 8 entities 0us 0us 0us 0us 0us 0us
Unpack three components in 32 entities 0us 0us 0us 0us 3us 0us
Unpack three components in 128 entities 0us 1us 0us 2us 15us 0us
Unpack three components in 512 entities 3us 7us 2us 11us 60us 1us
Unpack three components in ~2K entities 14us 28us 11us 44us 241us 7us
EntityX EnTT Ginseng mustache Flecs pico_ecs
Unpack three components in ~8K entities 0ms 0ms 0ms 0ms 0ms 0ms
Unpack three components in ~32K entities 0ms 0ms 0ms 0ms 3ms 0ms
Unpack three components in 131K entities 1ms 1ms 0ms 3ms 15ms 0ms
Unpack three components in 524K entities 4ms 7ms 3ms 12ms 62ms 2ms
Unpack three components in ~1M entities 9ms 15ms 6ms 25ms 125ms 4ms

Note:

  • Not every entity has three components, some has only two
  • Get two non-const- and const-component(s)
    1. PositionComponent
    2. const VelocityComponent
    3. DataComponent (optional)

Remove and add component

RemoveAddComponent Plot

(lower is better)

EntityX EnTT Ginseng Flecs pico_ecs
Remove and Add a Component in 16 entities 0us 0us 0us 3us 0us
Remove and Add a Component in 64 entities 0us 1us 0us 14us 0us
Remove and Add a Component in 256 entities 3us 6us 2us 57us 2us
Remove and Add a Component in ~1K entities 23us 27us 15us 226us 8us
Remove and Add a Component in ~4K entities 62us 108us 46us 903us 34us
EntityX EnTT Ginseng Flecs pico_ecs
Remove and Add a Component in ~16K entities 0ms 0ms 0ms 3ms 0ms
Remove and Add a Component in ~65K entities 0ms 1ms 0ms 14ms 0ms
Remove and Add a Component in 262K entities 4ms 7ms 3ms 57ms 2ms
Remove and Add a Component in ~1M entities 16ms 30ms 12ms 230ms 8ms
Remove and Add a Component in ~2M entities 32ms 60ms 24ms 457ms 17ms

Note:

  • Remove and add PositionComponent

Update systems (for-each entities in 2 systems)

SystemsUpdate Plot

(lower is better)

EntityX EnTT Ginseng mustache Flecs pico_ecs
Update 16 entities with 2 systems 1us 1us 1us 16us 2us 1us
Update 64 entities with 2 systems 7us 6us 6us 21us 7us 6us
Update 256 entities with 2 systems 28us 23us 24us 39us 25us 24us
Update ~1K entities with 2 systems 121us 96us 96us 110us 94us 93us
Update ~4K entities with 2 systems 441us 370us 382us 386us 368us 367us
EntityX EnTT Ginseng mustache Flecs pico_ecs
Update ~16K entities with 2 systems 1ms 1ms 1ms 1ms 1ms 1ms
Update ~65K entities with 2 systems 6ms 6ms 6ms 6ms 5ms 5ms
Update 262K entities with 2 systems 28ms 23ms 24ms 24ms 23ms 23ms
Update ~1M entities with 2 systems 113ms 92ms 96ms 98ms 94ms 93ms
Update ~2M entities with 2 systems 231ms 185ms 193ms 196ms 190ms 190ms

Note:

  • Systems used
    1. MovementSystem
    2. DataSystem

Update systems (for-each entities (with mixed components) in 2 systems)

SystemsUpdateMixedEntities Plot

(lower is better)

EntityX EnTT Ginseng mustache Flecs pico_ecs
Update 16 entities with 2 systems 1us 1us 1us 18us 2us 1us
Update 64 entities with 2 systems 6us 5us 5us 23us 6us 4us
Update 256 entities with 2 systems 28us 23us 25us 39us 25us 24us
Update ~1K entities with 2 systems 110us 91us 98us 111us 94us 93us
Update ~4K entities with 2 systems 439us 365us 387us 387us 368us 367us
EntityX EnTT Ginseng mustache Flecs pico_ecs
Update ~16K entities with 2 systems 1ms 1ms 1ms 1ms 1ms 1ms
Update ~65K entities with 2 systems 6ms 5ms 6ms 6ms 5ms 5ms
Update 262K entities with 2 systems 28ms 23ms 24ms 24ms 23ms 23ms
Update ~1M entities with 2 systems 112ms 93ms 97ms 98ms 94ms 92ms
Update ~2M entities with 2 systems 232ms 185ms 194ms 197ms 189ms 186ms

Note:

  • Systems used
    1. MovementSystem
    2. DataSystem
  • Not every entity has all three components, some got removed

Update systems (for-each entities in 5 systems)

ComplexSystemsUpdate Plot

(lower is better)

EnTT EnTT (runtime) EnTT (group) EnTT (stable) Ginseng mustache Flecs pico_ecs
Update 16 entities with 5 systems 1us 2us 1us 1us 1us 39us 3us 1us
Update 64 entities with 5 systems 6us 11us 6us 6us 6us 44us 7us 6us
Update 256 entities with 5 systems 27us 44us 25us 25us 26us 62us 26us 26us
Update ~1K entities with 5 systems 109us 180us 102us 99us 101us 133us 99us 105us
Update ~4K entities with 5 systems 434us 719us 404us 399us 417us 414us 386us 416us
EnTT EnTT (runtime) EnTT (group) EnTT (stable) Ginseng mustache Flecs pico_ecs
Update ~16K entities with 5 systems 1ms 2ms 1ms 1ms 1ms 1ms 1ms 1ms
Update ~65K entities with 5 systems 6ms 11ms 6ms 6ms 6ms 6ms 6ms 6ms
Update 262K entities with 5 systems 27ms 45ms 27ms 26ms 27ms 25ms 25ms 26ms
Update ~1M entities with 5 systems 112ms 181ms 126ms 107ms 111ms 100ms 102ms 107ms
Update ~2M entities with 5 systems 225ms 363ms 288ms 217ms 220ms 197ms 206ms 217ms

Note:

  • Systems used
    1. MovementSystem
    2. DataSystem
    3. MoreComplexSystem
    4. HealthSystem
    5. DamageSystem
  • * EnTT iterate components via views
  • ** EnTT iterate components via runtime views
  • *** EnTT iterate components via groups:
    1. DataSystem: No Group, use registry.view<DataComponent>. (Can't group a single component)
    2. MovementSystem: Partial-owning group, registry.group<PositionComponent>(entt::get<const VelocityComponent>)
    3. MoreComplexSystem: Full-owning group, registry.group<PositionComponent, VelocityComponent, DataComponent>()
  • **** EnTT iterate components via view and uses a stable component (StablePositionComponent)

Update systems (for-each entities (with mixed components) in 5 systems)

ComplexSystemsUpdateMixedEntities Plot

(lower is better)

EnTT EnTT (runtime) EnTT (group) EnTT (stable) Ginseng mustache Flecs pico_ecs
Update 16 entities with 5 Systems 1us 2us 1us 1us 1us 43us 3us 1us
Update 64 entities with 5 Systems 6us 9us 5us 5us 6us 49us 7us 5us
Update 256 entities with 5 Systems 26us 40us 25us 24us 25us 64us 26us 26us
Update ~1K entities with 5 Systems 105us 158us 100us 96us 100us 136us 99us 102us
Update ~4K entities with 5 Systems 415us 630us 398us 381us 395us 416us 383us 408us
EnTT EnTT (runtime) EnTT (group) EnTT (stable) Ginseng mustache Flecs pico_ecs
Update ~16K entities with 5 Systems 1ms 2ms 1ms 1ms 1ms 1ms 1ms 1ms
Update ~65K entities with 5 Systems 6ms 10ms 6ms 6ms 6ms 5ms 6ms 6ms
Update 262K entities with 5 Systems 26ms 40ms 26ms 25ms 26ms 24ms 25ms 26ms
Update ~1M entities with 5 Systems 105ms 160ms 114ms 101ms 105ms 97ms 100ms 105ms
Update ~2M entities with 5 Systems 211ms 321ms 277ms 204ms 213ms 195ms 200ms 212ms

Note:

  • Systems used
    1. MovementSystem
    2. DataSystem
    3. MoreComplexSystem
    4. HealthSystem
    5. DamageSystem
  • Not every entity has all three components, some got removed
  • * EnTT iterate components via views
  • ** EnTT iterate components via runtime views
  • *** EnTT iterate components via groups:
    1. DataSystem: No Group, use registry.view<DataComponent>. (Can't group a single component)
    2. MovementSystem: Partial-owning group, registry.group<PositionComponent>(entt::get<const VelocityComponent>)
    3. MoreComplexSystem: Full-owning group, registry.group<PositionComponent, VelocityComponent, DataComponent>()
  • **** EnTT iterate components via view and uses a stable component (StablePositionComponent)

Contributing

If you have any improvements to the ECS-examples for any of the frameworks, feel free to make a pull request or open an issue. The example(s) for each framework can be found in src/, and benchmarks are located in benchmarks/benchmarks/ for more details.

Additionally, you can write tests for the framework example and add some metadata to the plot.config.json file. Any contributions are greatly appreciated!

TODO: make more detailed "how to add framework"

Read CONTRIBUTING.md for more details.

Run Benchmarks

Using Taskfile

  1. git submodule update --init --recursive
  2. Build: task build
  3. Run (All) Benchmarks: task benchmark
  4. Plot Graphs: task plot:all

You can now find the benchmark-results in reports/.

You need python (>=3.9.0) and some dependencies to run gen-benchmark-report (plotting)

pip install -r ./scripts/gen-benchmark-report/requirements.txt

Step-by-Step

  1. Configure and build benchmarks, see Building Details:
    1. git submodule update --init --recursive
    2. cmake -S . -B ./build
    3. cmake --build ./build
  2. Run benchmark(s), with run-benchmarks.sh or each:
    • ./build/benchmark/benchmarks/entt/ecs-benchmark-entt (console output) (optional)
    • ./build/benchmark/benchmarks/entt/ecs-benchmark-entt --benchmark_format=json > ./reports/entt.json (write json report)
  3. Plot Reports, after generating json reports, see plot-results.sh:
    1. python3 ./scripts/gen-benchmark-report -i ./info.json gen-plot ./reports/entityx.json ./reports/entt.json ./reports/ginseng.json ./reports/mustache.json ./reports/openecs.json ./reports/flecs.json (generate graphs)
    2. python3 ./scripts/gen-benchmark-report -i ./info.json gen-results-md ./reports/entityx.json ./reports/entt.json ./reports/ginseng.json ./reports/mustache.json ./reports/openecs.json ./reports/flecs.json (generate full report)

Links and More

Candidates

EntityX by @alecthomas

Entity Component Systems (ECS) are a form of decomposition that completely decouples entity logic and data from the entity "objects" themselves. The Evolve your Hierarchy article provides a solid overview of EC systems and why you should use them.

Version: 1.1.2 (Apr 2023)

EnTT by @skypjack

EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.

Version: v3.12.2

Ginseng by @apples

Ginseng is an entity-component-system (ECS) library designed for use in games.

The main advantage over similar libraries is that the component types do not need to be listed or registered. Component types are detected dynamically.

Any function-like object can be used as a system. The function's parameters are used to determine the required components.

Version: 1.1 (Dec 2021)

mustache by @kirillochnev

A fast, modern C++ Entity Component System

Version: 0.2 (Apr 2023)

OpenEcs by @Gronis

Open Ecs is an Entity Component System that uses metaprogramming, cache coherency, and other useful tricks to maximize performance and configurability. It is written in c++11 without further dependencies.

Version: 0.1.101 (Apr 2017)

Flecs by @SanderMertens

Flecs is a fast and lightweight Entity Component System that lets you build games and simulations with millions of entities.

Version: v3.2.7

pico_ecs by @empyreanx

A collection of cross-platform single header libraries written in C. Pure and simple ECS.

Version: 2.3 (Sep 2023)