Skip to content

Commit

Permalink
fix broken bench
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Jun 26, 2024
1 parent e269891 commit 8762cf9
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions benches/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,17 +426,18 @@ fn calibrate_benchmarks(c: &mut Criterion) {
timeblocks.push(Timeblock {
index: 0,
range: 0..num_timesteps,
timesteps: vec1![0, 1, 2, 3, 4, 5, 6, 7, 8, 9,],
timestamps: vec1![
(Epoch::from_gpst_seconds(1090008640.0), 0),
(Epoch::from_gpst_seconds(1090008641.0), 1),
(Epoch::from_gpst_seconds(1090008642.0), 2),
(Epoch::from_gpst_seconds(1090008643.0), 3),
(Epoch::from_gpst_seconds(1090008644.0), 4),
(Epoch::from_gpst_seconds(1090008645.0), 5),
(Epoch::from_gpst_seconds(1090008646.0), 6),
(Epoch::from_gpst_seconds(1090008647.0), 7),
(Epoch::from_gpst_seconds(1090008648.0), 8),
(Epoch::from_gpst_seconds(1090008649.0), 9),
Epoch::from_gpst_seconds(1090008640.0),
Epoch::from_gpst_seconds(1090008641.0),
Epoch::from_gpst_seconds(1090008642.0),
Epoch::from_gpst_seconds(1090008643.0),
Epoch::from_gpst_seconds(1090008644.0),
Epoch::from_gpst_seconds(1090008645.0),
Epoch::from_gpst_seconds(1090008646.0),
Epoch::from_gpst_seconds(1090008647.0),
Epoch::from_gpst_seconds(1090008648.0),
Epoch::from_gpst_seconds(1090008649.0),
],
median: Epoch::from_gpst_seconds(1090008644.5),
});
Expand Down

0 comments on commit 8762cf9

Please sign in to comment.