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

Time profiler #46

Merged
merged 8 commits into from
Nov 20, 2022
Merged

Time profiler #46

merged 8 commits into from
Nov 20, 2022

Conversation

brenocq
Copy link
Owner

@brenocq brenocq commented Nov 20, 2022

Implementation of an internal time profiler tool to quickly evaluate the project's bottleneck.

The execution Tear Down and Timeline were implemented.

How to use

To profile a function it is only necessary to add PROFILE() at the beginning. For example:

int myFunc(int x, int y) {
    PROFILE();
    return x + y;
}

You can also specify the name yourself by using PROFILE_NAME

void RobotScript::update(cmp::Entity entity, float dt) {
    PROFILE_NAME("RobotScript::update(" + std::to_string(entity.getId()) + ")");
    // ...
}

Time Profiler window

Can be found in Tools>Time Profiler.

image

@brenocq brenocq marked this pull request as ready for review November 20, 2022 17:57
@brenocq brenocq merged commit 8e842da into dev Nov 20, 2022
@brenocq brenocq deleted the profiler branch November 20, 2022 18:20
@brenocq brenocq mentioned this pull request Jan 29, 2023
@brenocq brenocq added the status:done Task completed successfully label Jan 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status:done Task completed successfully
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant