We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The MicroProfiler class has these buffers:
MicroProfiler
const char* tags_[kMaxEvents]; uint32_t start_ticks_[kMaxEvents]; uint32_t end_ticks_[kMaxEvents]; struct TicksPerTag { const char* tag; uint32_t ticks; }; TicksPerTag total_ticks_per_tag[kMaxEvents];
We need 20 bytes per event, so an instance of MicroProfiler uses 80 KB of RAM, even if the model you're profiling has only a few nodes.
The text was updated successfully, but these errors were encountered:
"This issue is being marked as stale due to inactivity. Remove label or comment to prevent closure in 5 days."
Sorry, something went wrong.
#2724 is still open
No branches or pull requests
The
MicroProfiler
class has these buffers:We need 20 bytes per event, so an instance of
MicroProfiler
uses 80 KB of RAM, even if the model you're profiling has only a few nodes.The text was updated successfully, but these errors were encountered: