performance.md

 1---
 2title: Rough quick CPU profiling (Flamechart)
 3description: "Performance profiling and optimization for Zed development."
 4---
 5
 6How to use our internal tools to profile and keep Zed fast.
 7
 8# Rough quick CPU profiling (Flamechart)
 9
10See what the CPU spends the most time on. Strongly recommend you use
11[samply](https://github.com/mstange/samply). It opens an interactive profile in
12the browser (specifically a local instance of [firefox_profiler](https://profiler.firefox.com/)).
13
14See [samply](https://github.com/mstange/samply)'s README on how to install and run.
15
16The profile.json does not contain any symbols. Firefox profiler can add the local symbols to the profile for for. To do that hit the upload local profile button in the top right corner.
17
18<img width="851" height="613" alt="image" src="https://github.com/user-attachments/assets/cbef2b51-0442-4ee9-bc5c-95f6ccf9be2c" />
19
20# In depth CPU profiling (Tracing)
21
22See how long each annotated function call took and its arguments (if
23configured).
24
25Annotate any function you need appear in the profile with instrument. For more
26details see
27[tracing-instrument](https://docs.rs/tracing/latest/tracing/attr.instrument.html):
28
29```rust
30#[instrument(skip_all)]
31fn should_appear_in_profile(kitty: Cat) {
32    sleep(QUITE_LONG)
33}
34```
35
36Then either compile Zed with `ZTRACING=1 cargo r --features tracy --release`. The release build is optional but highly recommended as like every program Zeds performance characteristics change dramatically with optimizations. You do not want to chase slowdowns that do not exist in release.
37
38## One time Setup/Building the profiler:
39
40Download the profiler:
41[linux x86_64](https://zed-tracy-import-miniprofiler.nyc3.digitaloceanspaces.com/tracy-profiler-linux-x86_64)
42[macos aarch64](https://zed-tracy-import-miniprofiler.nyc3.digitaloceanspaces.com/tracy-profiler-0.13.0-macos-aarch64)
43
44### Alternative: Building it yourself
45
46- Clone the repo at git@github.com:wolfpld/tracy.git
47- `cd profiler && mkdir build && cd build`
48- Run cmake to generate build files: `cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..`
49- Build the profiler: `ninja`
50- [Optional] move the profiler somewhere nice like ~/.local/bin on linux
51
52## Usage
53
54Open the profiler (tracy-profiler), you should see zed in the list of `Discovered clients` click it.
55<img width="392" height="287" alt="image" src="https://github.com/user-attachments/assets/b6f06fc3-6b25-41c7-ade9-558cc93d6033" />
56
57To find functions that take a long time follow this image:
58<img width="888" height="1159" alt="image" src="https://github.com/user-attachments/assets/77087617-f53a-4331-863d-e59f8a5b6f0b" />
59
60# Task/Async profiling
61
62Get a profile of the zed foreground executor and background executors. Check if
63anything is blocking the foreground too long or taking too much (clock) time in
64the background.
65
66The profiler always runs in the background. You can save a trace from its UI or
67look at the results live.
68
69## Setup/Building the importer:
70
71Download the importer
72[linux x86_64](https://zed-tracy-import-miniprofiler.nyc3.digitaloceanspaces.com/tracy-import-miniprofiler-linux-x86_64)
73[mac aarch64](https://zed-tracy-import-miniprofiler.nyc3.digitaloceanspaces.com/tracy-import-miniprofiler-macos-aarch64)
74
75### Alternative: Building it yourself
76
77- Clone the repo at git@github.com:zed-industries/tracy.git on v0.12.2 branch
78- `cd import && mkdir build && cd build`
79- Run cmake to generate build files: `cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..`
80- Build the importer: `ninja`
81- Run the importer on the trace file: `./tracy-import-miniprofiler /path/to/trace.miniprof /path/to/output.tracy`
82- Open the trace in tracy:
83  - If you're on windows download the v0.12.2 version from the releases on the upstream repo
84  - If you're on other platforms open it on the website: https://tracy.nereid.pl/ (the version might mismatch so your luck might vary, we need to host our own ideally..)
85
86## To Save a Trace:
87
88- Run the action: `zed open performance profiler`
89- Hit the save button. This opens a save dialog or if that fails to open the trace gets saved in your working directory.
90- Convert the profile so it can be imported in tracy using the importer: `./tracy-import-miniprofiler <path to performance_profile.miniprof> output.tracy`
91- Go to <https://tracy.nereid.pl/> hit the 'power button' in the top left and then open saved trace.
92- Now zoom in to see the tasks and how long they took
93
94# Warn if function is slow
95
96```rust
97let _timer = zlog::time!("my_function_name").warn_if_gt(std::time::Duration::from_millis(100));
98```