-
Notifications
You must be signed in to change notification settings - Fork 34
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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
Load time improvements #558
Comments
Here the coarse results of my measuring of the core:
So most of the time is needed for creating the core objects from dicts. @sebastian-brunner found out that the reason for this is the heavy verification of all items. This is why we decided on
Originally created by @franzlst ([email protected]) at 2018-07-04 14:41:09+00:00 (moved from RMC internal repository) |
I also thought about to adapt the hash update: Originally created by @Rbelder at 2018-07-16 09:59:13+00:00 (moved from RMC internal repository) |
With the port to gtk3 we have significant speedups when loading states machines (up to 25% for the omnirob state machines). During the next omnirob integration days I will care about the unsafe_init stuff. What still needs to be found out is why the creation of the models is also quite slow (next to the loading times of the state machines themselves). E.g. for models there are no validity checks ... Originally created by @sebastian-brunner ([email protected]) at 2018-12-06 09:29:59+00:00 (moved from RMC internal repository) |
Yeah here we need to dig into gtkmvc. :-( Is there anything new about gaphas and the spent time in gaphas all over? The setup canvas is mostly not all. Afterwards a Originally created by @Rbelder at 2018-12-06 16:50:08+00:00 (moved from RMC internal repository) |
Concerning the models, have a look at: #22 In this issue I will only focus on the unsafe_init and close it afterwards. Originally created by @sebastian-brunner ([email protected]) at 2019-07-09 15:25:59+00:00 (moved from RMC internal repository) |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
This issue is to collect current loading time measurements and have a platform for discussion about performance topics.
Some Stats about loading times performed on 25. June 2018.
sm stats
see unit_test_state_machines/deep_libraries
sm_with_deeper_libraries:
sm_with_deepest_libraries:
measurements
core state machine loading
ssd:
deeper: ~ 1.0
deepest: ~ 3.0
local drive (e.g. /home_local):
deeper: ~ 1.2
deepest: ~ 3.6
USERSTORE:
deeper: 1.7
deepest: ~ 5.0
sdd: 100%
home_local: 120%
USERSTORE: 166%
model generation
with meta data loading:
deepest: ~ 4.0
without meta data loading:
deepest: ~ 3,5
gaphas canvas setup
deepest: ~ 6.5
deeper: ~2.2
For more information also have a look at the meeting minutes from 2018-05-28
Originally created by @sebastian-brunner ([email protected]) at 2018-07-03 09:17:30+00:00 (moved from RMC internal repository)
The text was updated successfully, but these errors were encountered: