Speed optimizations #8
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/kothic#8
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "pastk-optimize"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
1.2 times faster styles compilation (from a minute down to 50s in my case).
@biodranik @vng
please review
Added another (minor) optimization.
Optimized frequently called functions (invoked 6-8 mil times!) - another ~1.3 times improvement.
Added two more commits that give 1.6x speed up
(they depend on https://github.com/organicmaps/organicmaps/pull/4385).
All optimizations combined (incl. #7 ) give a 4.5x speed up.
@vng please review!
Declare runtime_conditions_arr = [] before if blocks?
Could you please clarify here? If we have equal styles entry, we assume "overriding".
Or what do we filter here?
Should we print warning here and above (unneeded)?
I suspect that we can find a lot of bugs in our current mapcss files ..
Why? I see it'll be a bit more kind of robust.. But it will be either re-assigned or appended anyway, so it'll be just an extra assignment that is always done, but is not really needed, so I decided not to do it...
Sorry I didn't get what do you mean...
Here we want to build the pre-match tree only for unique (type, zoom, clname),
but there is a (only one) case where clname doesn't match the first tag:
building|address;[addr:housenumber][addr:street]
so the pre-match tree made for clname=="building" woulnd't have contained choosers applicable to
[addr:housenumber][addr:street]
, so I had to add the first tag into the unique mix too.Nope, those discarded rules are actually legit, we remove them just because we have pre-matched
the choosers in this tree leaf to a specific (type, zoom, clname), so we discard rules that don't match for sure.
But those rules will be used still in other tree leaves for other (type, zoom, clname) combinations.
Because it is used outside of the ifs scope below. Probably, I'm fixed on static-typing languages, but I was confused what "runtime_conditions_arr" var is used below. May be some var from global scope ...
Ok I've changed it as per your suggestion! PTAL