Tracy.jl

A convenient interface for using Tracy from within Julia code
Author topolarity
Popularity
29 Stars
Updated Last
8 Months Ago
Started In
March 2023

Tracy.jl

A flexible profiling tool for tracing Julia code, LLVM compilation, Garbage Collection, and more.

Tracing Julia code

Code you'd like to trace should be wrapped with @tracepoint

    @tracepoint "name" <expression>

Typically the expression will be a begin-end block:

    @tracepoint "data aggregation" begin
        # lots of compute here...
    end

Required Packages

Used By Packages