diff options
author | johannst <johannst@users.noreply.github.com> | 2025-03-23 23:51:01 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2025-03-23 23:51:01 +0000 |
commit | 2cad8341019659a65fc6e94992165b3d7b7a37db (patch) | |
tree | 5cf1b89a1f9ef825661e40adcc599cd3fabb71b3 /trace_profile/tracy/foo.c | |
parent | b6627f53bf459334446bb1e2c51728a764c8651d (diff) | |
download | notes-2cad8341019659a65fc6e94992165b3d7b7a37db.tar.gz notes-2cad8341019659a65fc6e94992165b3d7b7a37db.zip |
deploy: 916b73bee95494c205ba67e4a50e6a525afc3a3cgh-pages
Diffstat (limited to 'trace_profile/tracy/foo.c')
-rw-r--r-- | trace_profile/tracy/foo.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/trace_profile/tracy/foo.c b/trace_profile/tracy/foo.c new file mode 100644 index 0000000..e233e68 --- /dev/null +++ b/trace_profile/tracy/foo.c @@ -0,0 +1,48 @@ +#include <stdint.h> +#include <inttypes.h> +#include <stdio.h> + +#include <tracy/TracyC.h> + +static void comp_helper(int64_t i) { + char buf[64]; + int cnt = snprintf(buf, sizeof(buf), "helper(%" PRId64 ")", i); + + // Create an active unnamed zone. + TracyCZone(ctx, 1); + + // Name the zone. + TracyCZoneName(ctx, buf, cnt); + // Add custom text to the zone measurement. + TracyCZoneText(ctx, buf, cnt); + // Add custom value to the zone measurement. + TracyCZoneValue(ctx, i); + + for (int ii = 0; ii < i * 100000; ++ii) { + /* fake work */ + } + + // End the zone measurement. + TracyCZoneEnd(ctx); +} + +void foo_comp_hook(int64_t cnt) { + // Create an active named zone. + TracyCZoneN(ctx, "foo", 1); + + for (int i = 0; i < cnt; ++i) { + // Plot value. + TracyCPlot("foo_comp_hook", cnt + i); + + comp_helper(i); + } + + // Configure plot "foo", probably best done once during initialization.. + TracyCPlotConfig("foo", TracyPlotFormatNumber, 1 /* step */, 1 /* fill */, + 0xff0000); + // Plot value. + TracyCPlot("foo", cnt); + + // End the zone measurement. + TracyCZoneEnd(ctx); +} |