MCPcopy Create free account
hub / github.com/andrewkchan/deepseek.cpp / ProfileScope

Method ProfileScope

src/profile.cpp:22–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21#if PROFILE_ENABLED
22ProfileScope::ProfileScope(std::string name) {
23 _profile_scopes.push_back(name);
24 _start = omp_get_wtime();
25}
26
27ProfileScope::ProfileScope(const char* name) :
28 ProfileScope(std::string(name)) {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected