You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use instrument.c to profile the whole pthread library by wrap functions with NK_PROFILE_ENTRY and NK_PROFILE_EXIT.
From MG benchmark result, pte_cancellable_wait is taking the most of the time(basically anything that is using pte_osSemaphorePend), followed by spin_lock and sched_yield(nk_yield). But interestingly, pte_osSemaphorePend is not taking that much time as indicated by which uses it.
The text was updated successfully, but these errors were encountered:
Use instrument.c to profile the whole pthread library by wrap functions with
NK_PROFILE_ENTRY
andNK_PROFILE_EXIT
.From MG benchmark result,
pte_cancellable_wait
is taking the most of the time(basically anything that is usingpte_osSemaphorePend
), followed byspin_lock
andsched_yield
(nk_yield
). But interestingly,pte_osSemaphorePend
is not taking that much time as indicated by which uses it.The text was updated successfully, but these errors were encountered: