MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / elapsed_ms

Function elapsed_ms

src/framework/audio/istft_graph.cpp:21–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19using Clock = std::chrono::steady_clock;
20
21double elapsed_ms(const Clock::time_point start, const Clock::time_point end) {
22 return std::chrono::duration<double, std::milli>(end - start).count();
23}
24
25void require(bool condition, const char * message) {
26 if (!condition) {

Callers 15

computeMethod · 0.70
encode_layersMethod · 0.50
ensure_graphMethod · 0.50
GraphMethod · 0.50
runMethod · 0.50
compute_titanet_featuresFunction · 0.50
classify_embeddingFunction · 0.50
classify_runtime_audioFunction · 0.50
GraphMethod · 0.50
computeMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected