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="auto" 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
 56<img width="392" height="auto" alt="image" src="https://github.com/user-attachments/assets/b6f06fc3-6b25-41c7-ade9-558cc93d6033" />
 57
 58To find functions that take a long time follow this image:
 59
 60<img width="888" height="auto" alt="image" src="https://github.com/user-attachments/assets/77087617-f53a-4331-863d-e59f8a5b6f0b" />
 61
 62# Task/Async profiling
 63
 64Get a profile of the zed foreground executor and background executors. Check if
 65anything is blocking the foreground too long or taking too much (clock) time in
 66the background.
 67
 68The profiler always runs in the background. You can save a trace from its UI or
 69look at the results live.
 70
 71## Setup/Building the importer:
 72
 73Download the importer
 74[linux x86_64](https://zed-tracy-import-miniprofiler.nyc3.digitaloceanspaces.com/tracy-import-miniprofiler-linux-x86_64)
 75[mac aarch64](https://zed-tracy-import-miniprofiler.nyc3.digitaloceanspaces.com/tracy-import-miniprofiler-macos-aarch64)
 76
 77### Alternative: Building it yourself
 78
 79- Clone the repo at git@github.com:zed-industries/tracy.git on v0.12.2 branch
 80- `cd import && mkdir build && cd build`
 81- Run cmake to generate build files: `cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..`
 82- Build the importer: `ninja`
 83- Run the importer on the trace file: `./tracy-import-miniprofiler /path/to/trace.miniprof.json /path/to/output.tracy`
 84- Open the trace in tracy:
 85  - If you're on windows download the v0.12.2 version from the releases on the upstream repo
 86  - 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..)
 87
 88## To Save a Trace:
 89
 90- Run the action: `zed open performance profiler`
 91- Hit the save button. This opens a save dialog or if that fails to open the trace gets saved in your working directory.
 92- Convert the profile so it can be imported in tracy using the importer: `./tracy-import-miniprofiler <path to performance_profile.miniprof.json> output.tracy`
 93- Go to <https://tracy.nereid.pl/> hit the 'power button' in the top left and then open saved trace.
 94- Now zoom in to see the tasks and how long they took
 95
 96# Warn if function is slow
 97
 98```rust
 99let _timer = zlog::time!("my_function_name").warn_if_gt(std::time::Duration::from_millis(100));
100```