Crates.io | turboplot |
lib.rs | turboplot |
version | 0.2.2 |
created_at | 2025-09-15 09:52:16.082784+00 |
updated_at | 2025-09-25 11:34:59.482942+00 |
description | A blazingly fast waveform renderer made for visualizing huge traces |
homepage | |
repository | https://github.com/Ledger-Donjon/turboplot |
max_upload_size | |
id | 1839690 |
size | 347,768 |
TurboPlot is a blazingly fast waveform renderer made for visualizing huge traces.
Traces are displayed using a density rendering algorithm distributed across GPU and CPU threads, enabling very smooth navigation even with traces as big as 1 Giga samples! The density rendering allows analyzing traces easily on a large scale, while also preserving single-sample peaks visible.
When the sampling rate is configured, time intervals can be measured easily. The interval selection tools can also help in counting repetitive patterns in traces.
Rust shall be installed on your system (see instructions for installation). TurboPlot can be directly installed by cargo:
cargo install turboplot
turboplot waveform.npy
Alternatively, you can build and run by cloning this repository and execute:
cargo run --release -- waveform.npy
By default TurboPlot will spawn 1 GPU rendering thread and the maximum CPU rendering threads the hardware can run simultaneously. To fit your needs, this can be changed by specifying the number of threads for each type of rendering backend:
# Disable use of GPU rendering backend, use only 1 CPU rendering thread.
turboplot --gpu 0 --cpu 1 waveform.npy
Note: In this mode, the user interface may still use the GPU; The trace rendering will be performed only on the CPU.
Controls:
This tool is experimental and still in development. TurboPlot can only open numpy files (.npy) with 1D arrays. For the moment, only one trace can be displayed at a time.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.