pub fn load_silent_csv(path: &Path) -> Result<TimingData, DataError>Expand description
Load timing data from a SILENT-format CSV file.
SILENT format has:
- Header:
V1,V2 - Column 1: Group label (
Xfor baseline,Yfor test) - Column 2: Timing value (integer)
§Example file content
V1,V2
X,1067424
Y,531296
X,1051010
Y,530842§Arguments
path- Path to the CSV file
§Returns
TimingData with X samples as baseline, Y samples as test.
§Errors
Returns DataError if the file cannot be read, parsed, or lacks required groups.