ThePerfectComputer / FastWaveBackend

A Rust VCD parser intended to be the backend of a Waveform Viewer(built using egui) that supports dynamically loaded rust plugins.
GNU General Public License v3.0
42 stars 5 forks source link

Copyright(2023) - Yehowshua Immanuel

Vision

Imagine being able to visualize a CPU pipeline diagram by merely loading a simulation waveform dump, sprinkling in a bit of code, and dragging and dropping some diagram blocks into the visualizer. This project aims to offer such an experience.

Since this project is written in Rust, it should also be able to run in the browser via web-assembly.

Status

As of January 2024, work on the Fastwave Backend is stalled. It has been a fun journey watching Fastwave enable the first iterations of the surfer waveform viewer. Now surfer uses an even better backend called Wellen. Go check it out! I hear it's really good. Perhaps I will soon archive the Fastwave Backend.

Browser demo: https://app.surfer-project.org/

Screenshot of surfer frontend below:

image

A High performance, VCD Parser written in Rust

I hope for a GUI that eventually looks like the following...

Current Features

Performance

Methods

I have been testing performance on a 3.04GB VCD file that can be found here.

For getting the GtkWave results, I fired up GtkWave, clicked on File->Open New Window, and selected the VCD file linked to above. I started my stopwatch as soon as I pressed enter to beging loading the VCD file, and stopped my stopwatch once the GtkWave titlebar reached 100%.

To get the memory consumption, I opened Activity Monitor on Mac, and recorded the GtkWave memory usage before and after loading the large VCD file, and took the difference.

I noticed that when running FastWave in the VsCode terminal as opposed to the MacOS system terminal or the Lapce terminal, FastWave is notably slower.

Results

LZ4 should really improve memory usage once I add it. Note that GTKWave uses LZ4 on the fly.

Software Time(s) Memory(MB)
FastWave ~27.30 1100+
GtkWave ~30 89.8

Current Limitations

Unable to handle VCD files that have signals with more than 2^32 - 1 = 4,294,967,295 deltas/changes.

Running

This repository comes with several smaller VCD files emitted from various EDA tools. If you want a larger VCD file, grab one from here.

Here are some examples you can run: The first build of the program may take some time.

  1. cargo run --release --example parse_vcd tests/vcd-files/aldec/SPI_Write.vcd
  2. cargo run --release --example vcd

You can run all the tests with cargo test

Testing on Bad Files

You may wish to test the parser on a malformed VCD just to make sure that the parser gives useful/sane errors.

Here's a command to test on a malformed VCD: cargo run --release --example parse_vcd tests/vcd-files/VCD_file_with_errors.vcd

TODO

Features and Other

Repairs

Code Consistency

Documentation

Marketing