7 Commits

Author SHA1 Message Date
Your Name fd205309b6 fix: resolve checkerboard artifact in brush strokes and update AGENTS.md for v3.05
mandatory-regression-gate / deterministic-tests (push) Waiting to run
mandatory-regression-gate / protected-performance-path (push) Waiting to run
2026-07-25 20:39:13 +03:00
Your Name 19a7e51813 feat: add cyclic color and speed options for brush settings
mandatory-regression-gate / deterministic-tests (push) Waiting to run
mandatory-regression-gate / protected-performance-path (push) Waiting to run
2026-07-25 17:34:41 +03:00
Your Name 683dac06ec refactor: improve code readability by formatting and restructuring function parameters and logic
mandatory-regression-gate / deterministic-tests (push) Waiting to run
mandatory-regression-gate / protected-performance-path (push) Waiting to run
2026-07-25 16:56:28 +03:00
Your Name 45a231a456 feat: allow brush strokes to extend beyond canvas edges in viewport and shader calculations
mandatory-regression-gate / deterministic-tests (push) Waiting to run
mandatory-regression-gate / protected-performance-path (push) Waiting to run
2026-07-25 16:34:51 +03:00
Your Name eb17bf4205 feat: implement compact layout and real-time preview for Brushes & Tips panel
mandatory-regression-gate / deterministic-tests (push) Waiting to run
mandatory-regression-gate / protected-performance-path (push) Waiting to run
- Introduced a more compact layout for the Brushes & Tips panel in the Iced GUI.
- Added a real-time brush-tip preview that updates based on current brush parameters and foreground color.
- Adjusted thumbnail sizes and grid layout to improve usability and visual clarity.
- Implemented caching for live previews to optimize performance.
- Updated existing code to integrate new layout and preview functionalities.
- Ensured no changes were made to engine crates, maintaining stability.
2026-07-25 16:28:31 +03:00
Your Name 1dabd9c31e Optimize stroke cache and benchmark configurations
mandatory-regression-gate / deterministic-tests (push) Waiting to run
mandatory-regression-gate / protected-performance-path (push) Waiting to run
- Updated stroke cache to use parallel processing for pixel checks.
- Modified benchmark commands in notlar.txt to ensure consistent output and baseline comparisons.
- Created a plan for merging criterion directories and optimizing benchmark performance, including pre-allocation of buffers and various optimization strategies.
- Removed redundant output directory settings in benchmark files and ensured all benchmarks write to a single criterion directory.
- Updated documentation to reflect changes in benchmark paths and configurations.
2026-07-25 05:20:12 +03:00
Your Name 1cc8a3f373 Remove outdated SVG reports for warm 10th stroke analysis in stroke_mask_pooling 2026-07-25 05:19:18 +03:00
440 changed files with 1729 additions and 31571 deletions
+1
View File
@@ -1,6 +1,7 @@
[env]
PKG_CONFIG_PATH = "/tmp/dav1d-dev/usr/lib/x86_64-linux-gnu/pkgconfig"
LIBRARY_PATH = "/tmp/dav1d-dev/usr/lib/x86_64-linux-gnu"
CRITERION_HOME = { value = "criterion", relative = true }
[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
+4
View File
@@ -51,6 +51,10 @@ Thumbs.db
_images
_tmp
.history
# Criterion benchmark output (generated, gold_standard baseline kept manually)
/criterion/
# Custom dev environment
/.rustup/
/logs/last_semantic_audit.txt
@@ -0,0 +1,263 @@
# Iced Brushes Panel — Compact Layout + Real-Time Preview
## Goal
Make the `hcie-iced-app` Brushes & Tips panel more compact and add a real-time brush-tip preview that reacts to current brush parameters and foreground color.
**Scope is limited to the Iced GUI layer.** Engine crates stay locked and untouched; all rendering goes through the public `hcie_engine_api` surface.
---
## Context
- Active target workspace (per user override): `hcie-iced-app/`.
- Primary file: `hcie-iced-app/crates/hcie-iced-gui/src/panels/brushes.rs`.
- Panel wiring: `hcie-iced-app/crates/hcie-iced-gui/src/dock/view.rs` calls `crate::panels::brushes::view(...)`.
- Current layout:
- Category tabs with 16 px SVG icons.
- Thumbnail image 48 px inside a 56 px cell.
- Two-column grid with 4 px spacing.
- Label text size 9 px.
- A bottom "Preview" area using a static style-keyed 64 px image.
- Available engine APIs (already public in `hcie_engine_api`):
- `Engine::render_brush_stamp_preview(width, height, &BrushTip, color)` — fast single-dab preview.
- `Engine::render_brush_preview(width, height, &BrushTip, color, &points)` — full stroke preview.
---
## Decisions
| Decision | Choice |
|----------|--------|
| Preview API | `Engine::render_brush_stamp_preview` (fast, parameter-aware). |
| Thumbnail image size | 36 px. |
| Thumbnail cell size | 40 px. |
| Grid columns | 3. |
| Label text | 8 px, kept. |
| Grid/item spacing | 3 px. |
| Tab icon size | Keep 16 px (already compact). |
| Live preview color | Current foreground color `fg_color`. |
| Cache key | `(style, size_byte, hardness_byte, opacity_byte, fg_color)` so the preview updates when parameters change. |
| Watercolor preset thumbnails | Keep current splat renderer but shrink to 36 px image / 40 px cell and align with the new grid. |
| Imported preset thumbnails | Keep list row style but shrink preview to 36 px image in 40 px cell. |
---
## Implementation Steps
### 1. Add foreground color to panel signature
In `hcie-iced-app/crates/hcie-iced-gui/src/dock/view.rs`, pass `app.fg_color` into `brushes::view(...)`.
In `hcie-iced-app/crates/hcie-iced-gui/src/panels/brushes.rs`, extend the function signature:
```rust
pub fn view(
current_style: BrushStyle,
current_size: f32,
current_opacity: f32,
current_hardness: f32,
brush_color_variant: bool,
brush_variant_amount: f32,
active_category: BrushCategory,
imported_presets: &[hcie_engine_api::BrushPreset],
active_brush_preset: Option<&hcie_engine_api::BrushPreset>,
fg_color: [u8; 4], // NEW
colors: ThemeColors,
) -> Element<'static, Message>
```
### 2. Introduce compact layout constants
At the top of `brushes.rs`, replace/adjust constants:
```rust
const THUMB_SIZE: u32 = 40;
const PREVIEW_IMG_SIZE: u32 = 36;
const GRID_COLUMNS: usize = 3;
const GRID_SPACING: u16 = 3;
const ITEM_SPACING: u16 = 3;
const LABEL_SIZE: u16 = 8;
```
Also add a real-time preview cache keyed by parameters:
```rust
static LIVE_PREVIEW_CACHE: OnceLock<Mutex<HashMap<PreviewKey, iced::widget::image::Handle>>> = OnceLock::new();
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
struct PreviewKey {
style_idx: usize,
size: u8, // quantized to whole px
hardness: u8, // 0..100
opacity: u8, // 0..100
r: u8,
g: u8,
b: u8,
a: u8,
}
```
### 3. Build a parameter-aware preview generator
Add a helper that constructs a `BrushTip` from the current tool state and calls `Engine::render_brush_stamp_preview`:
```rust
fn build_tip_from_state(style: BrushStyle, size: f32, opacity: f32, hardness: f32) -> hcie_engine_api::BrushTip {
hcie_engine_api::BrushTip {
style,
size,
opacity,
hardness,
..Default::default()
}
}
```
Add:
```rust
fn get_live_stamp_preview(
style: BrushStyle,
size: f32,
opacity: f32,
hardness: f32,
fg_color: [u8; 4],
) -> iced::widget::image::Handle {
let key = PreviewKey {
style_idx: style as usize,
size: size.clamp(1.0, 255.0) as u8,
hardness: (hardness * 100.0).clamp(0.0, 100.0) as u8,
opacity: (opacity * 100.0).clamp(0.0, 100.0) as u8,
r: fg_color[0],
g: fg_color[1],
b: fg_color[2],
a: fg_color[3],
};
let cache = LIVE_PREVIEW_CACHE.get_or_init(|| Mutex::new(HashMap::new()));
let mut cache = cache.lock().unwrap_or_else(|p| p.into_inner());
if let Some(handle) = cache.get(&key) {
return handle.clone();
}
let tip = build_tip_from_state(style, size, opacity, hardness);
let pixels = hcie_engine_api::Engine::render_brush_stamp_preview(
PREVIEW_IMG_SIZE,
PREVIEW_IMG_SIZE,
&tip,
fg_color,
);
let handle = iced::widget::image::Handle::from_rgba(
PREVIEW_IMG_SIZE,
PREVIEW_IMG_SIZE,
pixels,
);
cache.insert(key, handle.clone());
handle
}
```
### 4. Update existing thumbnail cache to new size
- Keep `BRUSH_PREVIEW_CACHE` for style-only previews.
- Regenerate it with the new `THUMB_SIZE` (40 px). The existing sine-wave `generate_brush_preview` can stay, just adjust the drawing bounds to match.
- Ensure the function returns `width=THUMB_SIZE, height=THUMB_SIZE` pixels.
### 5. Re-layout the grid
Change the grid construction from 2 columns to 3 columns using `GRID_COLUMNS`:
```rust
let mut grid_rows = column![].spacing(GRID_SPACING);
let mut current_row = row![].spacing(GRID_SPACING);
for (idx, preset) in filtered_styles.iter().enumerate() {
// ... build 40 px cell with 36 px image + 8 px label ...
current_row = current_row.push(clickable);
if (idx + 1) % GRID_COLUMNS == 0 || idx == filtered_styles.len() - 1 {
grid_rows = grid_rows.push(current_row);
current_row = row![].spacing(GRID_SPACING);
}
}
```
Apply the same 3-column compact layout to:
- Built-in styles grid.
- Watercolor presets grid.
- Media presets grid.
For imported presets, keep the list-row layout but set the preview image to 36 px and container to 40 px.
### 6. Replace the bottom static preview with the live preview
Locate the existing code:
```rust
let preview_handle = get_brush_preview(current_style);
let live_preview = container(iced::widget::image(preview_handle).width(64).height(64))
...
```
Replace with:
```rust
let preview_handle = get_live_stamp_preview(
current_style,
current_size,
current_opacity,
current_hardness,
fg_color,
);
let live_preview = container(iced::widget::image(preview_handle).width(PREVIEW_IMG_SIZE as f32).height(PREVIEW_IMG_SIZE as f32))
.width(Length::Fill)
.height(56)
.center_x(Length::Fill)
.center_y(Length::Fill)
.style(move |_theme| styles::recessed_control(colors));
```
Make the preview area slightly shorter (56 px instead of 80 px) to reclaim vertical space.
### 7. Tighten slider/controls spacing
- Reduce the column padding from `4` to `3`.
- Keep sliders, but make the panel column spacing `2` or `3`.
---
## Affected Files
1. `hcie-iced-app/crates/hcie-iced-gui/src/panels/brushes.rs` — main panel layout and preview logic.
2. `hcie-iced-app/crates/hcie-iced-gui/src/dock/view.rs` — pass `app.fg_color` to `brushes::view`.
No engine crates are modified. No `Cargo.toml` changes are needed because `hcie_engine_api` is already a dependency.
---
## Validation
1. `cargo check -p hcie-iced-gui` must pass.
2. `cargo test -p hcie-iced-gui brushes` (or `cargo test -p hcie-iced-gui`) must pass; the existing tests in `brushes.rs` (`catalog_contains_every_engine_brush_style`, `category_filter_keeps_expected_groups`, `media_crates_expose_complete_unique_catalog`) must remain green.
3. Launch the Iced GUI and open the Brushes & Tips panel. Visually verify:
- 3-column grid of 40 px cells.
- 8 px labels still readable.
- Bottom preview area updates when size, opacity, hardness, or foreground color changes.
- Selection border still highlights the active brush.
4. If the Iced CLI screenshot mechanism works, capture the Brushes panel for before/after comparison.
---
## Risks
1. **Cache growth**: the parameter-keyed cache can grow quickly if size/opacity/hardness are continuous. Mitigation: quantize size to `u8`, hardness/opacity to 0..100, and fg color to full bytes; this bounds the space to ~256 * 101 * 101 * 256^4 possible keys but only populated entries consume memory.
2. **Performance of `render_brush_stamp_preview`**: small single-dab previews (36x36 or 40x40) should be fast; if not, consider throttling updates to panel redraws only.
3. **Iced layout overflow**: switching to 3 columns with 3 px spacing in a narrow pane may still wrap. If so, the pane minimum width in `dock/sizing.rs` may need a small bump (currently 160 px preferred 300 px). Test first; only bump if required.
4. **Tests assume style-only cache**: the existing `BRUSH_PREVIEW_CACHE` tests do not inspect cache contents, so resizing should not break them.
---
## Out of Scope
- EGUI (`hcie-egui-app`) changes — explicitly excluded by the user; it remains a reference only.
- Engine-side brush rendering changes — engine crates are locked.
- New brush engine presets or categories.
- Bitmap/imported brush stamp preview fidelity beyond what `render_brush_stamp_preview` already provides.
@@ -0,0 +1,218 @@
# Criterion Merge & 2x Optimization Plan
## Context
Two criterion output directories exist:
- **Root `criterion/`** — has HTML report (`report/index.html`) + all 8 `gold_standard` baseline variants
- **`hcie-engine-api/criterion/`** — partial duplicate (4 benchmark dirs, no report, no gold_standard)
Root cause: each benchmark file hardcodes `Criterion::default().output_directory(Path::new("criterion"))` — a relative path that resolves differently depending on CWD. No `.cargo/config.toml` exists to set `CRITERION_HOME`.
Gold standard timings (from root `criterion/`):
| Benchmark | Mean | Dominated by |
|-----------|------|--------------|
| `below_cache_reuse/first_stroke_cache_build` | 0.81 s | Full 9-layer below-cache composite |
| `below_cache_reuse/second_stroke_cache_reuse` | 0.015 s | Cache hit — fast |
| `composite_scratch_pooling/cold_composite` | 1.05 s | Full 10-layer composite + scratch alloc |
| `composite_scratch_pooling/warm_composite` | 0.010 s | Pooled scratch — fast |
| `effects_skip/no_effects_composite` | 0.014 s | Effects skipped — fast |
| `effects_skip/with_one_dropshadow` | 0.015 s | Single effect — fast |
| `stroke_mask_pooling/cold_first_stroke` | 0.046 s | Mask alloc + first stroke |
| `stroke_mask_pooling/warm_10th_stroke` | 0.017 s | Pooled mask — fast |
## Goal
1. Merge criterion directories into single root `criterion/`
2. Fix output path configuration so benchmarks always write to the same place
3. Achieve 2x speedup across all 8 benchmark variants vs `gold_standard` baseline
4. Update `notlar.txt` and `criterion.md` with correct paths
## Task List
### Phase 1: Directory Merge & Path Fix (config-only, no engine changes)
**1.1** Delete `hcie-engine-api/criterion/` directory entirely
```bash
rm -rf hcie-engine-api/criterion/
```
**1.2** Create `.cargo/config.toml` at workspace root:
```toml
[env]
CRITERION_HOME = { value = "criterion", relative = true }
```
This ensures all `cargo bench` invocations write to `./criterion/` relative to workspace root, regardless of CWD.
**1.3** Remove hardcoded `output_directory` from all 4 benchmark files. Change:
```rust
criterion_group!{
name = benches;
config = Criterion::default().output_directory(std::path::Path::new("criterion"));
targets = bench_xxx
}
```
To:
```rust
criterion_group!(benches, bench_xxx);
criterion_main!(benches);
```
Files to edit:
- `hcie-engine-api/benches/stroke_mask_pooling.rs:119-124`
- `hcie-engine-api/benches/composite_scratch_pooling.rs:145-150`
- `hcie-engine-api/benches/below_cache_reuse.rs:145-150`
- `hcie-engine-api/benches/effects_skip.rs:165-170`
**1.4** Remove `bench = false` from `hcie-engine-api/Cargo.toml` `[lib]` section (line 37). This was a workaround; with explicit `[[bench]]` targets it's not needed.
**1.5** Update `.gitignore` — add `criterion/` to prevent benchmark output from being committed (the gold_standard baseline should be kept but the report and run data are generated).
**1.6** Update `notlar.txt`:
- Fix line 19: `CRITERION_HOME=criterion` → reference `.cargo/config.toml`
- Fix line 20: `./criterion/report/index.html` stays correct (now guaranteed by config.toml)
- Add note about `.cargo/config.toml` setting `CRITERION_HOME`
**1.7** Update `criterion.md`:
- Fix line 40: `./criterion/report/index.html` stays correct
- Add note about `.cargo/config.toml` configuration
**1.8** Verify: run `cargo bench -p hcie-engine-api` and confirm output goes to root `criterion/` only.
### Phase 2: Save Fresh Baseline & Verify
**2.1** Save a fresh `gold_standard` baseline after path fixes:
```bash
cargo bench -p hcie-engine-api -- --save-baseline gold_standard
```
**2.2** Run regression comparison to confirm baselines match:
```bash
cargo bench -p hcie-engine-api -- --baseline gold_standard
```
**2.3** Run visual regression and performance tests to confirm no breakage:
```bash
cargo test -p hcie-engine-api --test visual_regression
cargo test -p hcie-engine-api --test performance_stroke_4k -- --nocapture
```
### Phase 3: Optimization Loop
For each optimization, follow this cycle:
1. Unlock target crate: `./unlock.sh <crate>`
2. Apply optimization
3. Build: `cargo build -p hcie-engine-api`
4. Run benchmarks: `cargo bench -p hcie-engine-api -- --baseline gold_standard`
5. Check for regressions: `cargo test -p hcie-engine-api --test visual_regression`
6. If improvement < 2x, continue to next optimization
7. Lock crate: `./lock.sh <crate>`
**Optimization targets (in priority order):**
#### 3.1 Pre-allocate pooled buffers in `Engine::new()` (hcie-engine-api)
Currently `composite_scratch`, `active_stroke_mask`, `below_cache`, and `stroke_before_buf` are all `None` at construction and allocated lazily on first use. The cold benchmarks pay this allocation cost.
Change `Engine::new_with_options()` in `hcie-engine-api/src/lib.rs` to pre-allocate:
- `composite_scratch = Some(vec![0u8; w * h * 4])` — ~33MB
- `active_stroke_mask = Some(vec![0u8; w * h])` — ~8MB
- `below_cache = Some(vec![0u8; w * h * 4])` — ~33MB
- `stroke_before_buf = Some(vec![0u8; w * h * 4])` — ~33MB
This moves allocation cost from first-stroke time to engine-creation time (which is excluded from benchmark measurement via `iter_with_setup`). Expected impact: cold benchmarks drop significantly because they no longer include allocation.
#### 3.2 Opaque-layer early-exit in composite (hcie-composite, hcie-engine-api)
In `composite_tiled_into` (`hcie-composite/src/tiled.rs`), when compositing layers bottom-to-top, if a layer is:
- Fully opaque (alpha=255 everywhere in the dirty region)
- Normal blend mode
- 100% opacity
...then all layers below it are completely occluded and can be skipped.
Implementation: Before compositing each layer, check if the output buffer is already fully opaque in the dirty region. If so, skip remaining below-layers. This is most impactful for the `first_stroke_cache_build` and `cold_composite` benchmarks where all 10 layers are filled with opaque colors.
#### 3.3 `copy_from_slice` fast-path for opaque Normal layers (hcie-composite)
In the per-pixel blend loop, add a fast-path: if the source pixel is fully opaque (alpha=255) and blend mode is Normal, use `copy_from_slice` for the entire row instead of per-pixel blending. This avoids the blend math for the common case of opaque layers.
#### 3.4 Reduce `Vec::clone()` in hot paths (hcie-engine-api)
In `draw_filled_rect_rgba` (`stroke_brush.rs:582`): `layer.pixels.clone()` creates a full ~33MB copy for undo. Replace with `copy_from_slice` into a pooled buffer.
In `begin_stroke` (`stroke_cache.rs:200-208`): `layer.effects.clone()` and `layer.styles.clone()` are small but unnecessary — effects/styles are typically empty. Add an early-return if both are empty.
#### 3.5 Parallelize `rebuild_below_cache_if_needed` (hcie-engine-api)
The below-cache rebuild in `stroke_cache.rs:514-611` composites all layers below the active one. This is currently sequential. Use Rayon to parallelize the tile compositing within this function, similar to how `render_composite_region` uses `par_chunks_mut`.
#### 3.6 SIMD blend operations (hcie-blend, if needed)
If the above optimizations don't reach 2x, explore SIMD-accelerated blend operations in `hcie-blend`. The `blend_pixel` function is called millions of times per composite. Using `std::simd` or explicit SSE/AVX intrinsics could yield 4-8x speedup on blend operations.
### Phase 4: Final Verification
**4.1** Run full benchmark suite and compare against original gold_standard:
```bash
cargo bench -p hcie-engine-api -- --baseline gold_standard
```
**4.2** Run visual regression tests:
```bash
cargo test -p hcie-engine-api --test visual_regression
cargo test -p hcie-engine-api --test performance_stroke_4k -- --nocapture
```
**4.3** Save final optimized baseline:
```bash
cargo bench -p hcie-engine-api -- --save-baseline gold_standard
```
**4.4** Update `notlar.txt` with final benchmark results.
## Files to Modify
| File | Change |
|------|--------|
| `.cargo/config.toml` | **Create** — set `CRITERION_HOME` |
| `.gitignore` | Add `criterion/` entry |
| `hcie-engine-api/Cargo.toml` | Remove `bench = false` from `[lib]` |
| `hcie-engine-api/benches/stroke_mask_pooling.rs` | Remove `output_directory`, simplify `criterion_group!` |
| `hcie-engine-api/benches/composite_scratch_pooling.rs` | Same |
| `hcie-engine-api/benches/below_cache_reuse.rs` | Same |
| `hcie-engine-api/benches/effects_skip.rs` | Same |
| `notlar.txt` | Update paths and commands |
| `criterion.md` | Update paths |
| `hcie-engine-api/src/lib.rs` | Pre-allocate buffers in `new_with_options()` |
| `hcie-engine-api/src/stroke_cache.rs` | Optimize `begin_stroke`, `rebuild_below_cache_if_needed` |
| `hcie-engine-api/src/stroke_brush.rs` | Optimize `draw_filled_rect_rgba` clone |
| `hcie-composite/src/tiled.rs` | Opaque-layer skip, `copy_from_slice` fast-path |
## Files to Delete
| Path | Reason |
|------|--------|
| `hcie-engine-api/criterion/` | Duplicate — root `criterion/` is canonical |
## Locked Crates That Need Unlocking
| Crate | Reason |
|-------|--------|
| `hcie-engine-api` | Pre-allocation, hot-path optimizations |
| `hcie-composite` | Opaque-layer skip, copy_from_slice fast-path |
| `hcie-blend` | SIMD blend (only if Phase 3.1-3.5 insufficient) |
## Validation
After each phase:
- `cargo build -p hcie-engine-api` must succeed
- `cargo bench -p hcie-engine-api` must produce output in root `criterion/` only
- `cargo test -p hcie-engine-api --test visual_regression` must pass (8/8)
- `cargo test -p hcie-engine-api --test performance_stroke_4k -- --nocapture` must not regress
- `cargo bench -p hcie-engine-api -- --baseline gold_standard` must show improvement (not regression)
## Risks
- **Pre-allocation increases engine memory footprint** by ~107MB (33+8+33+33). This is acceptable for a 4K image editor where the document itself is already ~33MB per layer.
- **Opaque-layer skip changes composite behavior** if a layer has non-Normal blend mode but appears opaque. The check must verify both alpha=255 AND blend mode=Normal.
- **SIMD requires `std::simd` (unstable)** or explicit intrinsics with `cfg(target_feature)` guards. Prefer portable approaches first.
@@ -0,0 +1,282 @@
# Brush Checkerboard Fix + AGENTS.md Update Plan
## Context
- Project root: `/mnt/extra/00_PROJECTS/hcie-rust-v3.05`
- Active GUI: `hcie-iced-app/` (Iced + wgpu). `hcie-egui-app/` is legacy/abandoned.
- The reported artifact is a regular grid/checkerboard inside brush strokes on white canvas, visible only with certain brushes.
- `AGENTS.md` is outdated: it still says "HCIE-Rust v4", lists egui as the active GUI, and omits the iced workspace.
## Part 1: Brush Checkerboard Root Cause
The grid comes from deterministic, canvas-space pseudo-random sampling in `hcie-brush-engine/src/lib.rs`:
- `draw_grain_brush(..., woven: bool)` uses:
```rust
let hash = ((x.wrapping_mul(73_856_093) ^ y.wrapping_mul(19_349_663)) & 1023) as f32 / 1023.0;
if texture < threshold { continue; }
```
- `draw_crayon_brush` uses the same constants and a hard `continue` skip:
```rust
let noise = ((px * 73_856_093) ^ (py * 19_349_663)) & 1023;
if grain < threshold { continue; }
```
Because the hash depends only on absolute pixel `(x, y)` and the same pixels are re-sampled on every overlapping dab, the skipped pixels form a rigid canvas-locked checkerboard.
### Affected Brush Styles
| Style | Function | Mechanism |
|-------|----------|-----------|
| `Noise` | `draw_grain_brush(..., woven=false)` | hash threshold skip |
| `Texture` | `draw_grain_brush(..., woven=true)` | sin/cos woven threshold skip |
| `Pencil` | `draw_pencil_brush` → `draw_grain_brush` | hash threshold skip |
| `Charcoal` | `draw_charcoal_brush` → `draw_grain_brush` | hash threshold skip |
| `Sketch` | `draw_sketch_brush` → `draw_grain_brush` | hash threshold skip |
| `Crayon` | `draw_crayon_brush` | hash threshold skip |
Dry-media presets that map to these styles are also affected:
- Compressed Charcoal, Vine Charcoal, Charcoal Pencil
- Soft Pastel, Hard Pastel, Oil Pastel, Water-Soluble Pastel, PanPastel, Chalk Sanguine
- Graphite Pencils (HB/9B/Carpenter), Wax/Oil/Watercolor Pencils
Styles **not** affected: Round, HardRound, SoftRound, Square, Star, Spray, Pen, InkPen, Calligraphy, Oil, Airbrush, Watercolor, Marker, Glow, WetPaint, Leaf, Rock, Meadow, Clouds, Dirt, Tree, Bristle, Wood, Mixer, Blender, Bitmap.
## Part 2: Proposed Fix
### Decision
Apply both mechanisms together:
1. **Per-dab grain seed offset** in `draw_grain_brush` / `draw_crayon_brush` so consecutive dabs no longer hit the exact same canvas pixels.
2. **Convert hard threshold skip to alpha modulation** so "empty" pores become translucent rather than fully transparent, removing the rigid checkerboard.
### Implementation Details
#### 2.1 `draw_grain_brush` changes
Location: `hcie-brush-engine/src/lib.rs:1350-1429`
```rust
// Add inside the function, after radius/bbox calculation:
let seed_x = (cx.to_bits().wrapping_mul(73_856_093)
^ cy.to_bits().wrapping_mul(19_349_663)) as u32;
let seed_y = seed_x.wrapping_mul(668_265_263);
// Replace the hash computation with decorrelated coordinates:
let ox = x.wrapping_add(seed_x);
let oy = y.wrapping_add(seed_y);
let hash = ((ox.wrapping_mul(73_856_093) ^ oy.wrapping_mul(19_349_663)) & 1023) as f32 / 1023.0;
// For woven mode, shift the sin/cos arguments by the seed:
let texture = if woven {
0.55 + 0.45 * ((x as f32 * 0.42 + seed_x as f32 * 0.001).sin()
* (y as f32 * 0.31 + seed_y as f32 * 0.001).cos()).abs()
} else {
hash
};
// Replace `if texture < threshold { continue; }` with soft alpha modulation:
let grain_alpha = if texture < threshold {
(texture / threshold).clamp(0.0, 1.0)
} else {
0.55 + 0.45 * texture
};
// Use grain_alpha in the final alpha instead of the old `(0.55 + 0.45 * texture)` factor.
```
#### 2.2 `draw_crayon_brush` changes
Location: `hcie-brush-engine/src/lib.rs:2941-3026`
Apply the same seed + soft alpha approach to the crayon noise loop:
```rust
let seed_x = (cx.to_bits().wrapping_mul(73_856_093)
^ cy.to_bits().wrapping_mul(19_349_663)) as u32;
let seed_y = seed_x.wrapping_mul(668_265_263);
// inside pixel loop:
let ox = px.wrapping_add(seed_x);
let oy = py.wrapping_add(seed_y);
let noise = (ox.wrapping_mul(73_856_093) ^ oy.wrapping_mul(19_349_663)) & 1023;
let grain = noise as f32 / 1023.0;
let threshold = 0.18 * (1.0 - pressure) + 0.08;
let grain_alpha = if grain < threshold {
(grain / threshold).clamp(0.0, 1.0)
} else {
0.35 + 0.65 * grain
};
// use grain_alpha instead of `(0.35 + 0.65 * grain)`.
```
#### 2.3 Preset tuning (optional, verify visually)
If the new soft alpha makes dry-media strokes too dark or too dense, tune `hcie-dry-media-brushes/src/lib.rs`:
- Reduce `opacity` slightly for charcoal/pastel presets.
- Increase `spacing` a little for coarse charcoal presets.
Do **not** add jitter as the primary fix; jitter alone does not break the canvas-space hash pattern.
## Part 3: AGENTS.md Update
`AGENTS.md` currently describes the old egui-first architecture. Update it to match the actual project state.
### 3.1 Title & Mission
Change:
```markdown
# HCIE-Rust v4 — AI-Aware Architecture
```
to:
```markdown
# HCIE-Rust v3.05 — AI-Aware Architecture
```
Add a note:
```markdown
> Note: `v3.05` is the in-repo identifier for what was previously labelled "v4" in older documentation and paths. The egui workspace is no longer maintained; the active native GUI is the Iced workspace.
```
### 3.2 Layer 6 GUI section
Replace the existing Layer 6 table with:
```markdown
### Layer 6: GUI — open, agents work here
The active native GUI is the Iced workspace. The egui workspace exists for legacy reference but is not the current target.
| Crate / Project | Directory | Responsibility | Dependencies |
|-----------------|-----------|----------------|--------------|
| `hcie-iced-app` | `hcie-iced-app/` | Workspace root for the native Iced GUI. | `hcie-engine-api`, `hcie-iced-gui`, panels |
| `hcie-iced-gui` | `hcie-iced-app/crates/hcie-iced-gui/` | Main binary and application orchestration. | `hcie-engine-api`, panels |
| `iced-panel-adapter` | `hcie-iced-app/crates/iced-panel-adapter/` | Dynamic schema-to-widget UI binder. | `hcie-engine-api` |
| `iced-panel-ai-chat` | `hcie-iced-app/crates/iced-panel-ai-chat/` | AI chat panel. | `hcie-engine-api`, `hcie-ai` |
| `iced-panel-script` | `hcie-iced-app/crates/iced-panel-script/` | Scripting / automation panel. | `hcie-engine-api` |
| `hcie-dry-media-brushes` | `hcie-iced-app/crates/hcie-dry-media-brushes/` | Dry-media brush presets. | `hcie-engine-api` |
| `hcie-watercolor-brushes` | `hcie-iced-app/crates/hcie-watercolor-brushes/` | Watercolor brush presets + splat preview. | `hcie-engine-api` |
| `hcie-ink-brushes` | `hcie-iced-app/crates/hcie-ink-brushes/` | Ink brush presets. | `hcie-engine-api` |
| `hcie-paint-brushes` | `hcie-iced-app/crates/hcie-paint-brushes/` | Paint brush presets. | `hcie-engine-api` |
| `hcie-digital-brushes` | `hcie-iced-app/crates/hcie-digital-brushes/` | Digital/vector brush presets. | `hcie-engine-api` |
```
Keep the egui workspace mentioned in a short "Legacy / frozen" subsection so existing paths are not a surprise, but mark it clearly as not to be modified.
### 3.3 Build Order
Update Layer 6 line to:
```
Layer 6: hcie-iced-app / hcie-iced-gui
```
### 3.4 Performance Protection Notes
Replace egui-specific references with Iced equivalents:
- `hcie-egui-app/crates/hcie-gui-egui/src/app/mod.rs` → `hcie-iced-app/crates/hcie-iced-gui/src/app.rs`
- `hcie-egui-app/crates/hcie-gui-egui/src/canvas/mod.rs` → `hcie-iced-app/crates/hcie-iced-gui/src/canvas/mod.rs`
- Keep all wgpu/Shader/RefCell dirty bounds/Nearest-Neighbor protections as-is (they already describe the Iced path).
### 3.5 Screenshot & Visual Verification
Replace the egui screenshot section with the Iced CLI and F12 mechanisms documented in `hcie-iced-app/crates/hcie-iced-gui/src/cli.rs` and `screenshot.rs`:
```bash
# Full viewport
cargo run -p hcie-iced-gui -- --screenshot output.png
# Named panel
cargo run -p hcie-iced-gui -- --screenshot-panel "Brushes" output.png
```
Available panel names: inspect `src/screenshot.rs` / `src/dock/state.rs` for the exact name list.
### 3.6 Open Files List
Update the "Open Files" section to the iced paths:
```markdown
- `hcie-iced-app/crates/hcie-iced-gui/src/*.rs`
- `hcie-iced-app/crates/hcie-iced-gui/Cargo.toml`
- `hcie-iced-app/crates/iced-panel-adapter/src/*.rs`
- `hcie-iced-app/crates/iced-panel-ai-chat/src/*.rs`
- `hcie-iced-app/crates/iced-panel-script/src/*.rs`
- `hcie-iced-app/crates/hcie-dry-media-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-watercolor-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-ink-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-paint-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-digital-brushes/src/*.rs`
```
### 3.7 Important Notes
Update to:
- Never add an `egui` dependency to any engine crate.
- Never access `hcie-protocol` directly from GUI code.
- Never import a locked engine crate directly from GUI code; route everything through `hcie-engine-api`.
- The active GUI workspace is `hcie-iced-app/`. Treat `hcie-egui-app/` as read-only legacy reference.
## Part 4: Validation Steps
### 4.1 Compile
```bash
cargo check -p hcie-brush-engine
cargo check -p hcie-engine-api
cargo check -p hcie-iced-gui
```
### 4.2 Unit / regression tests
```bash
cargo test -p hcie-engine-api --test visual_regression
cargo test -p hcie-engine-api --test performance_stroke_4k -- --nocapture
cargo test -p hcie-dry-media-brushes
```
### 4.3 Visual verification (Iced)
1. Launch the Iced GUI.
2. Select a dry-media preset (e.g., Soft Pastel, Charcoal Pencil).
3. Draw several overlapping strokes on white canvas.
4. Confirm the checkerboard is gone and a soft paper-grain texture remains.
5. Compare with a round soft brush to ensure regular brushes are unchanged.
6. Capture before/after screenshots:
```bash
cargo run -p hcie-iced-gui -- --screenshot after_brushes.png
```
### 4.4 Lock crate after edits
Because `hcie-brush-engine` is a locked engine crate, unlock before editing and lock after:
```bash
./unlock.sh hcie-brush-engine
# ... apply source edits ...
cargo test -p hcie-engine-api --test visual_regression
./lock.sh hcie-brush-engine
```
## Risks & Rollback
- **Risk:** The alpha-modulation change may darken/lighten existing dry-media presets.
- *Mitigation:* Tune preset opacity/spacing after visual comparison.
- **Risk:** `visual_regression` golden hashes may change because brush pixel output changes.
- *Mitigation:* If the new output is visually correct, regenerate golden hashes with `HCIE_REGEN_GOLDENS=1 cargo test -p hcie-engine-api --test visual_regression -- --nocapture` and commit the updated hashes.
- **Risk:** `AGENTS.md` references to exact line numbers may drift.
- *Mitigation:* Replace line-number citations with file paths or function names where possible.
## Task Summary
1. ✅ Unlock `hcie-brush-engine` — file already writable (666), directory 555.
2. ✅ Edit `draw_grain_brush` — per-dab seed offset + soft alpha modulation applied.
3. ✅ Edit `draw_crayon_brush` — per-dab seed offset + soft alpha modulation applied.
4. ✅ Fix `generate_star_stamp` — changed from 5-pointed star to 4-pointed plus-cross.
5. ✅ Enhance `draw_star_brush` — added sparkle particle scatter around main dab.
6. ✅ Iced GUI: Renamed "Star" → "Star Sparkle", moved to Effects category.
7. ✅ Iced GUI: Updated `media_preset_category` to handle "Effects" category.
8. ✅ Egui GUI: Renamed "Stipple Dots" → "Star Sparkle" in styles grid.
9. ✅ Added "Star Sparkle" preset to `hcie-dry-media-brushes` crate (id: `star_sparkle`).
10. ✅ Updated preset count assertions (dry-media: 19→20, iced panel: 47→48).
11. ✅ `cargo check` passes for brush-engine, dry-media-brushes, iced-gui.
12. ✅ `cargo test -p hcie-dry-media-brushes` passes.
13. ⬜ Build and run `visual_regression` + `performance_stroke_4k` tests (needs full rebuild).
14. ⬜ Run Iced GUI, test affected presets, capture before/after screenshots.
15. ⬜ Update `AGENTS.md` to reflect v3.05 naming, the Iced workspace, and current open/locked boundaries.
16. ⬜ Lock `hcie-brush-engine` and `hcie-egui-app`.
+27 -21
View File
@@ -1,8 +1,8 @@
# HCIE-Rust v4 — AI-Aware Architecture
# HCIE-Rust v3.05 — AI-Aware Architecture
## Mission Statement
HCIE-Rust v4 is a pixel-grade image editor built around an atomic project split that prevents automated agents from corrupting the engine while still allowing them to iterate on the graphical user interface.
HCIE-Rust v3.05 is a pixel-grade image editor built around an atomic project split that prevents automated agents from corrupting the engine while still allowing them to iterate on the graphical user interface. The active native GUI is the **Iced** workspace (`hcie-iced-app/`). The `hcie-egui-app/` workspace is legacy/frozen — do not modify it for new features.
## Atomic Crate Split (23 crates / 6 layers)
@@ -56,13 +56,16 @@ One GUI workspace exists:
| Crate / Project | Directory | Responsibility | Dependencies |
|-----------------|-----------|----------------|--------------|
| `hcie-egui-app` | `hcie-egui-app/` | Workspace root for the native GUI. | `hcie-engine-api`, `eframe`, panels |
| `hcie-gui-egui` | `hcie-egui-app/crates/hcie-gui-egui/` | Main binary and application orchestration. | `hcie-engine-api`, panels |
| `egui-panel-adapter` | `hcie-egui-app/crates/egui-panel-adapter/` | Dynamic schema-to-widget UI binder. | `hcie-engine-api` |
| `egui-panel-filters` | `hcie-egui-app/crates/egui-panel-filters/` | Filter parameter panels. | `hcie-engine-api` |
| `egui-panel-ai-chat` | `hcie-egui-app/crates/egui-panel-ai-chat/` | AI chat panel. | `hcie-engine-api`, `hcie-ai` |
| `egui-panel-script` | `hcie-egui-app/crates/egui-panel-script/` | Scripting / automation panel. | `hcie-engine-api` |
| `egui-panel-ai-script` | `hcie-egui-app/crates/egui-panel-ai-script/` | AI-assisted script generation panel. | `hcie-engine-api`, `egui-panel-script` |
| `hcie-iced-app` | `hcie-iced-app/` | Workspace root for the native Iced GUI. | `hcie-engine-api`, `hcie-iced-gui`, panels |
| `hcie-iced-gui` | `hcie-iced-app/crates/hcie-iced-gui/` | Main binary and application orchestration. | `hcie-engine-api`, panels |
| `iced-panel-adapter` | `hcie-iced-app/crates/iced-panel-adapter/` | Dynamic schema-to-widget UI binder. | `hcie-engine-api` |
| `iced-panel-ai-chat` | `hcie-iced-app/crates/iced-panel-ai-chat/` | AI chat panel. | `hcie-engine-api`, `hcie-ai` |
| `iced-panel-script` | `hcie-iced-app/crates/iced-panel-script/` | Scripting / automation panel. | `hcie-engine-api` |
| `hcie-dry-media-brushes` | `hcie-iced-app/crates/hcie-dry-media-brushes/` | Dry-media brush presets (graphite, charcoal, pastel). | `hcie-engine-api` |
| `hcie-watercolor-brushes` | `hcie-iced-app/crates/hcie-watercolor-brushes/` | Watercolor brush presets. | `hcie-engine-api` |
| `hcie-ink-brushes` | `hcie-iced-app/crates/hcie-ink-brushes/` | Ink brush presets. | `hcie-engine-api` |
| `hcie-paint-brushes` | `hcie-iced-app/crates/hcie-paint-brushes/` | Paint brush presets. | `hcie-engine-api` |
| `hcie-digital-brushes` | `hcie-iced-app/crates/hcie-digital-brushes/` | Digital/vector brush presets. | `hcie-engine-api` |
## Critical Rules
@@ -82,7 +85,7 @@ Layer 2: hcie-blend, hcie-history, hcie-brush-engine, hcie-draw,
Layer 3: hcie-document
Layer 4: hcie-engine-api (rlib + staticlib)
Layer 5: hcie-ai, hcie-vision
Layer 6: hcie-egui-app / hcie-gui-egui
Layer 6: hcie-iced-app / hcie-iced-gui
```
## Performance Protection Notes (CRITICAL — Regression Prevention)
@@ -126,13 +129,13 @@ If a new feature conflicts with one of these mechanisms, extend the existing API
## GUI Workspace Architecture (CRITICAL — AI Search Scope)
Only one GUI workspace exists: `hcie-egui-app/`. The GUI crates are `hcie-gui-egui/` and `egui-panel-*/`.
Only one GUI workspace exists: `hcie-iced-app/`. The GUI crates are `hcie-iced-gui/` and `iced-panel-*/`. The `hcie-egui-app/` workspace is legacy and frozen.
### AI Search Rule
When searching for a crate, module, file, or symbol:
1. Scan the active GUI workspace first (`hcie-egui-app/`).
1. Scan the active GUI workspace first (`hcie-iced-app/`).
2. Then scan sibling engine crates (`../hcie-*/`).
3. Follow the `Cargo.toml` dependency chain; if a dependency lives in another workspace, scan that workspace too.
4. If a symbol name appears in two different modules (for example, `plugins/`), examine both.
@@ -169,15 +172,18 @@ Use `unlock.sh <crate>` to temporarily open a crate, make the required change, t
## Open Files (agents may write here)
### Active egui GUI
### Active Iced GUI
- `hcie-egui-app/crates/hcie-gui-egui/src/*.rs`
- `hcie-egui-app/crates/hcie-gui-egui/Cargo.toml`
- `hcie-egui-app/crates/egui-panel-adapter/src/*.rs`
- `hcie-egui-app/crates/egui-panel-filters/src/*.rs`
- `hcie-egui-app/crates/egui-panel-ai-chat/src/*.rs`
- `hcie-egui-app/crates/egui-panel-script/src/*.rs`
- `hcie-egui-app/crates/egui-panel-ai-script/src/*.rs`
- `hcie-iced-app/crates/hcie-iced-gui/src/*.rs`
- `hcie-iced-app/crates/hcie-iced-gui/Cargo.toml`
- `hcie-iced-app/crates/iced-panel-adapter/src/*.rs`
- `hcie-iced-app/crates/iced-panel-ai-chat/src/*.rs`
- `hcie-iced-app/crates/iced-panel-script/src/*.rs`
- `hcie-iced-app/crates/hcie-dry-media-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-watercolor-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-ink-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-paint-brushes/src/*.rs`
- `hcie-iced-app/crates/hcie-digital-brushes/src/*.rs`
## Important Notes
@@ -185,7 +191,7 @@ Use `unlock.sh <crate>` to temporarily open a crate, make the required change, t
- Never add an `egui` dependency to any engine crate.
- Never access `hcie-protocol` directly from GUI code.
- Never import a locked engine crate directly from GUI code; route everything through `hcie-engine-api`.
- The root `hcie-egui-app/Cargo.toml` currently lists `hcie-protocol`, `hcie-blend`, and `hcie-io` for legacy compatibility. Do not add new direct engine dependencies there.
- The active GUI workspace is `hcie-iced-app/`. Treat `hcie-egui-app/` as read-only legacy reference.
## Engine API — Public Surface
+1 -1
View File
@@ -38,4 +38,4 @@ HCIE v4 engine API'si üzerindeki 4K tuval optimizasyonlarının yanlışlıkla
> ```bash
> cargo bench -p hcie-engine-api
> ```
> _Not: Bu testler 4K ve çok katmanlı benchmarklar içerdiğinden belleği yoğun kullanır. Sonuçlar `./criterion/report/index.html` olarak dökülecektir._
> _Not: Bu testler 4K ve çok katmanlı benchmarklar içerdiğinden belleği yoğun kullanır. Sonuçlar `./criterion/report/index.html` olarak dökülecektir. CRITERION_HOME, `.cargo/config.toml` içinde `relative = true` olarak ayarlanmıştır; tüm `cargo bench` çağrıları workspace root'taki `criterion/` dizinine yazar._
@@ -1 +0,0 @@
{"group_id":"below_cache_reuse","function_id":"first_stroke_cache_build","value_str":null,"throughput":null,"full_id":"below_cache_reuse/first_stroke_cache_build","directory_name":"below_cache_reuse/first_stroke_cache_build","title":"below_cache_reuse/first_stroke_cache_build"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":951849109.6060001,"upper_bound":997651459.8389999},"point_estimate":974726514.46,"standard_error":11692756.962205948},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":964333717.5,"upper_bound":1008235925.5},"point_estimate":997231071.5,"standard_error":10129990.438525524},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":69473355.28280139,"upper_bound":111001765.58222473},"point_estimate":82373110.72538495,"standard_error":11488167.256345619},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":100220051.94789164,"upper_bound":134052914.81567669},"point_estimate":117989793.53891322,"standard_error":8675705.832319831}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"times":[766746117.0,762780503.0,802092317.0,810590059.0,785041479.0,833094129.0,797319443.0,781000772.0,824826845.0,838767365.0,791226110.0,829267788.0,781862950.0,779800184.0,771607272.0,789280774.0,945732988.0,910218833.0,917873393.0,940920778.0,947424737.0,923242219.0,931625753.0,919991609.0,913492448.0,916444409.0,950341592.0,923541197.0,928591390.0,995396149.0,1004683636.0,1011866867.0,1070420231.0,1166316467.0,1004262906.0,1011788215.0,1005062028.0,965194005.0,1011232148.0,1036411621.0,1132321236.0,1000067767.0,955373101.0,1003324041.0,1078142864.0,1049865974.0,1161677421.0,1053145913.0,1062159998.0,1063995056.0,1027989008.0,1047439652.0,1071278744.0,1022373315.0,1029988264.0,1023854165.0,982070928.0,996018276.0,1014625316.0,997491612.0,1027984925.0,1038370019.0,1002373050.0,1037010034.0,1093033883.0,1052436036.0,1031065937.0,1120454718.0,1063462438.0,1116641430.0,1047847072.0,1022917719.0,1007374935.0,1051745013.0,997741814.0,972218953.0,991919297.0,1207522671.0,1086048497.0,1030363359.0,973244186.0,994653301.0,948561347.0,943817508.0,952406570.0,956448482.0,953828399.0,1106507324.0,1314654041.0,1169445937.0,1278647220.0,1002822645.0,1064879109.0,996265656.0,996970531.0,947121336.0,754580294.0,758791074.0,740759124.0,749133185.0]}
@@ -1 +0,0 @@
[567805984.25,745117775.375,1217949218.375,1395261009.5]
@@ -1 +0,0 @@
{"group_id":"below_cache_reuse","function_id":"first_stroke_cache_build","value_str":null,"throughput":null,"full_id":"below_cache_reuse/first_stroke_cache_build","directory_name":"below_cache_reuse/first_stroke_cache_build","title":"below_cache_reuse/first_stroke_cache_build"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":802628791.64,"upper_bound":813040484.75625},"point_estimate":807729115.66,"standard_error":2659045.297504378},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":795640433.0,"upper_bound":811508409.0},"point_estimate":802601736.5,"standard_error":3949402.862673317},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20569345.92322111,"upper_bound":31956485.414358974},"point_estimate":26899691.986835003,"standard_error":3013983.96001046},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22212337.25510467,"upper_bound":30449660.487286024},"point_estimate":26573217.06894172,"standard_error":2097572.804009924}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"times":[790268733.0,778077824.0,777753927.0,790748016.0,774874563.0,795354479.0,830986321.0,774933025.0,795640433.0,781222991.0,783034032.0,779584961.0,860249621.0,824591352.0,770614531.0,793335010.0,793120148.0,798457837.0,789556400.0,791420744.0,824640662.0,786581195.0,833347053.0,819516805.0,806814155.0,799358662.0,823386809.0,809103800.0,809246261.0,798475071.0,822390064.0,814365804.0,766813870.0,801503376.0,785641800.0,829493669.0,807809674.0,818182313.0,782331838.0,802600901.0,828619321.0,865375932.0,847686000.0,868990008.0,865904316.0,836130205.0,829871107.0,879545539.0,811999444.0,804613012.0,812123871.0,832134920.0,821824032.0,811624727.0,843506464.0,809350841.0,788414381.0,828658428.0,813950594.0,824437606.0,799515634.0,801852171.0,789206101.0,777631654.0,819295064.0,817602677.0,844474444.0,817757416.0,857198407.0,891795835.0,797757772.0,807208096.0,792158260.0,788329122.0,829061221.0,802602572.0,803586470.0,813557418.0,814978517.0,867225429.0,834303995.0,829183844.0,786379472.0,780827692.0,785952512.0,781295034.0,781292589.0,785193215.0,781383953.0,781449903.0,783723070.0,791816434.0,782836286.0,778115079.0,780737656.0,783681127.0,797553564.0,767112383.0,811508409.0,795581591.0]}
@@ -1 +0,0 @@
[674142403.25,730207567.625,879714672.625,935779837.0]
@@ -1 +0,0 @@
{"group_id":"below_cache_reuse","function_id":"first_stroke_cache_build","value_str":null,"throughput":null,"full_id":"below_cache_reuse/first_stroke_cache_build","directory_name":"below_cache_reuse/first_stroke_cache_build","title":"below_cache_reuse/first_stroke_cache_build"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":802628791.64,"upper_bound":813040484.75625},"point_estimate":807729115.66,"standard_error":2659045.297504378},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":795640433.0,"upper_bound":811508409.0},"point_estimate":802601736.5,"standard_error":3949402.862673317},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20569345.92322111,"upper_bound":31956485.414358974},"point_estimate":26899691.986835003,"standard_error":3013983.96001046},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":22212337.25510467,"upper_bound":30449660.487286024},"point_estimate":26573217.06894172,"standard_error":2097572.804009924}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"times":[790268733.0,778077824.0,777753927.0,790748016.0,774874563.0,795354479.0,830986321.0,774933025.0,795640433.0,781222991.0,783034032.0,779584961.0,860249621.0,824591352.0,770614531.0,793335010.0,793120148.0,798457837.0,789556400.0,791420744.0,824640662.0,786581195.0,833347053.0,819516805.0,806814155.0,799358662.0,823386809.0,809103800.0,809246261.0,798475071.0,822390064.0,814365804.0,766813870.0,801503376.0,785641800.0,829493669.0,807809674.0,818182313.0,782331838.0,802600901.0,828619321.0,865375932.0,847686000.0,868990008.0,865904316.0,836130205.0,829871107.0,879545539.0,811999444.0,804613012.0,812123871.0,832134920.0,821824032.0,811624727.0,843506464.0,809350841.0,788414381.0,828658428.0,813950594.0,824437606.0,799515634.0,801852171.0,789206101.0,777631654.0,819295064.0,817602677.0,844474444.0,817757416.0,857198407.0,891795835.0,797757772.0,807208096.0,792158260.0,788329122.0,829061221.0,802602572.0,803586470.0,813557418.0,814978517.0,867225429.0,834303995.0,829183844.0,786379472.0,780827692.0,785952512.0,781295034.0,781292589.0,785193215.0,781383953.0,781449903.0,783723070.0,791816434.0,782836286.0,778115079.0,780737656.0,783681127.0,797553564.0,767112383.0,811508409.0,795581591.0]}
@@ -1 +0,0 @@
[674142403.25,730207567.625,879714672.625,935779837.0]
@@ -1,84 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build:MAD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="433" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,433 86,433 "/>
<text x="77" y="373" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,373 86,373 "/>
<text x="77" y="313" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,313 86,313 "/>
<text x="77" y="253" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.08
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,253 86,253 "/>
<text x="77" y="193" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,193 86,193 "/>
<text x="77" y="132" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,132 86,132 "/>
<text x="77" y="72" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,72 86,72 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="129" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="129,473 129,478 "/>
<text x="250" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
22
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="250,473 250,478 "/>
<text x="372" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
24
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="372,473 372,478 "/>
<text x="493" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
26
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="493,473 493,478 "/>
<text x="614" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
28
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="614,473 614,478 "/>
<text x="736" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="736,473 736,478 "/>
<text x="857" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
32
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="857,473 857,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,466 88,465 90,465 92,464 93,463 95,463 97,462 98,462 100,461 102,461 103,461 105,460 107,460 109,459 110,459 112,459 114,458 115,458 117,457 119,457 120,456 122,456 124,455 125,455 127,454 129,454 131,453 132,452 134,452 136,451 137,450 139,449 141,448 142,447 144,446 146,445 147,444 149,443 151,441 153,440 154,438 156,436 158,435 159,433 161,431 163,429 164,426 166,424 168,422 169,419 171,417 173,414 175,411 176,409 178,406 180,404 181,401 183,399 185,396 186,394 188,392 190,390 191,388 193,386 195,385 197,383 198,382 200,381 202,380 203,379 205,379 207,378 208,378 210,377 212,377 214,377 215,376 217,376 219,376 220,376 222,375 224,375 225,374 227,374 229,374 230,373 232,372 234,372 236,371 237,370 239,369 241,368 242,367 244,366 246,365 247,364 249,362 251,361 252,359 254,358 256,356 258,354 259,351 261,349 263,347 264,344 266,341 268,338 269,335 271,332 273,329 274,325 276,322 278,318 280,314 281,311 283,307 285,304 286,300 288,296 290,293 291,289 293,286 295,283 296,279 298,276 300,273 302,270 303,266 305,263 307,260 308,257 310,254 312,251 313,248 315,246 317,243 318,240 320,237 322,234 324,231 325,229 327,226 329,223 330,221 332,218 334,216 335,213 337,211 339,208 341,206 342,203 344,201 346,199 347,196 349,194 351,191 352,189 354,187 356,185 357,182 359,180 361,178 363,176 364,174 366,171 368,169 369,167 371,165 373,164 374,162 376,160 378,158 379,157 381,155 383,154 385,152 386,151 388,150 390,149 391,147 393,146 395,145 396,144 398,143 400,141 401,140 403,139 405,138 407,136 408,135 410,133 412,131 413,130 415,128 417,126 418,124 420,121 422,119 423,117 425,115 427,112 429,110 430,107 432,105 434,103 435,101 437,99 439,98 440,96 442,95 444,94 445,94 447,94 449,94 451,94 452,95 454,96 456,98 457,100 459,102 461,104 462,106 464,109 466,111 468,113 469,116 471,118 473,120 474,121 476,123 478,124 479,124 481,125 483,125 484,125 486,125 488,124 490,123 491,122 493,121 495,120 496,119 498,118 500,117 501,116 503,115 505,115 506,114 508,114 510,113 512,113 513,113 515,113 517,113 518,114 520,114 522,115 523,115 525,116 527,116 528,117 530,118 532,119 534,120 535,121 537,123 539,124 540,126 542,128 544,130 545,133 547,135 549,138 550,142 552,145 554,149 556,153 557,157 559,161 561,166 562,170 564,175 566,179 567,183 569,187 571,191 573,195 574,198 576,201 578,204 579,206 581,208 583,210 584,211 586,211 588,212 589,212 591,211 593,211 595,210 596,208 598,207 600,205 601,204 603,202 605,200 606,198 608,197 610,195 611,194 613,193 615,191 617,191 618,190 620,189 622,189 623,189 625,189 627,189 628,189 630,190 632,190 633,191 635,192 637,192 639,193 640,194 642,195 644,195 645,196 647,197 649,198 650,199 652,200 654,201 655,202 657,204 659,205 661,206 662,207 664,209 666,210 667,212 669,213 671,215 672,216 674,217 676,219 677,220 679,221 681,223 683,224 684,225 686,226 688,227 689,229 691,230 693,231 694,232 696,234 698,235 700,237 701,239 703,240 705,242 706,244 708,246 710,248 711,250 713,253 715,255 716,257 718,259 720,262 722,264 723,266 725,269 727,271 728,273 730,276 732,278 733,281 735,284 737,286 738,289 740,292 742,294 744,297 745,300 747,303 749,305 750,308 752,311 754,314 755,316 757,319 759,321 760,324 762,326 764,329 766,331 767,333 769,335 771,337 772,339 774,341 776,343 777,344 779,346 781,347 782,349 784,350 786,352 788,353 789,354 791,356 793,357 794,358 796,360 798,361 799,362 801,363 803,365 804,366 806,368 808,369 810,370 811,372 813,373 815,374 816,376 818,377 820,378 821,380 823,381 825,382 827,384 828,385 830,387 832,388 833,390 835,391 837,393 838,395 840,396 842,398 843,400 845,402 847,404 849,406 850,407 852,409 854,411 855,413 857,415 859,417 860,419 862,421 864,423 865,425 867,427 869,429 871,431 872,433 874,435 876,437 877,438 879,440 881,442 882,443 884,445 886,447 887,448 889,450 891,451 893,452 894,454 896,455 898,456 899,458 901,459 903,460 904,461 906,462 908,463 909,464 911,465 913,466 915,467 916,468 918,468 920,469 921,470 923,470 925,471 926,471 928,472 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,426 166,424 168,422 169,419 171,417 173,414 175,411 176,409 178,406 180,404 181,401 183,399 185,396 186,394 188,392 190,390 191,388 193,386 195,385 197,383 198,382 200,381 202,380 203,379 205,379 207,378 208,378 210,377 212,377 214,377 215,376 217,376 219,376 220,376 222,375 224,375 225,374 227,374 229,374 230,373 232,372 234,372 236,371 237,370 239,369 241,368 242,367 244,366 246,365 247,364 249,362 251,361 252,359 254,358 256,356 258,354 259,351 261,349 263,347 264,344 266,341 268,338 269,335 271,332 273,329 274,325 276,322 278,318 280,314 281,311 283,307 285,304 286,300 288,296 290,293 291,289 293,286 295,283 296,279 298,276 300,273 302,270 303,266 305,263 307,260 308,257 310,254 312,251 313,248 315,246 317,243 318,240 320,237 322,234 324,231 325,229 327,226 329,223 330,221 332,218 334,216 335,213 337,211 339,208 341,206 342,203 344,201 346,199 347,196 349,194 351,191 352,189 354,187 356,185 357,182 359,180 361,178 363,176 364,174 366,171 368,169 369,167 371,165 373,164 374,162 376,160 378,158 379,157 381,155 383,154 385,152 386,151 388,150 390,149 391,147 393,146 395,145 396,144 398,143 400,141 401,140 403,139 405,138 407,136 408,135 410,133 412,131 413,130 415,128 417,126 418,124 420,121 422,119 423,117 425,115 427,112 429,110 430,107 432,105 434,103 435,101 437,99 439,98 440,96 442,95 444,94 445,94 447,94 449,94 451,94 452,95 454,96 456,98 457,100 459,102 461,104 462,106 464,109 466,111 468,113 469,116 471,118 473,120 474,121 476,123 478,124 479,124 481,125 483,125 484,125 486,125 488,124 490,123 491,122 493,121 495,120 496,119 498,118 500,117 501,116 503,115 505,115 506,114 508,114 510,113 512,113 513,113 515,113 517,113 518,114 520,114 522,115 523,115 525,116 527,116 528,117 530,118 532,119 534,120 535,121 537,123 539,124 540,126 542,128 544,130 545,133 547,135 549,138 550,142 552,145 554,149 556,153 557,157 559,161 561,166 562,170 564,175 566,179 567,183 569,187 571,191 573,195 574,198 576,201 578,204 579,206 581,208 583,210 584,211 586,211 588,212 589,212 591,211 593,211 595,210 596,208 598,207 600,205 601,204 603,202 605,200 606,198 608,197 610,195 611,194 613,193 615,191 617,191 618,190 620,189 622,189 623,189 625,189 627,189 628,189 630,190 632,190 633,191 635,192 637,192 639,193 640,194 642,195 644,195 645,196 647,197 649,198 650,199 652,200 654,201 655,202 657,204 659,205 661,206 662,207 664,209 666,210 667,212 669,213 671,215 672,216 674,217 676,219 677,220 679,221 681,223 683,224 684,225 686,226 688,227 689,229 691,230 693,231 694,232 696,234 698,235 700,237 701,239 703,240 705,242 706,244 708,246 710,248 711,250 713,253 715,255 716,257 718,259 720,262 722,264 723,266 725,269 727,271 728,273 730,276 732,278 733,281 735,284 737,286 738,289 740,292 742,294 744,297 745,300 747,303 749,305 750,308 752,311 754,314 755,316 757,319 759,321 760,324 762,326 764,329 766,331 767,333 769,335 771,337 772,339 774,341 776,343 777,344 779,346 781,347 782,349 784,350 786,352 788,353 789,354 791,356 793,357 794,358 796,360 798,361 799,362 801,363 803,365 804,366 806,368 808,369 810,370 811,372 813,373 815,374 816,376 818,377 820,378 821,380 823,381 825,382 827,384 828,385 830,387 832,388 833,390 835,391 837,393 838,395 840,396 842,398 843,400 845,402 847,404 849,406 850,407 852,409 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="548,473 548,136 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,108 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build:SD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="452" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,452 86,452 "/>
<text x="77" y="411" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,411 86,411 "/>
<text x="77" y="369" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,369 86,369 "/>
<text x="77" y="327" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.08
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,327 86,327 "/>
<text x="77" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,285 86,285 "/>
<text x="77" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,244 86,244 "/>
<text x="77" y="202" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,202 86,202 "/>
<text x="77" y="160" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,160 86,160 "/>
<text x="77" y="118" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.18
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,118 86,118 "/>
<text x="77" y="77" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,77 86,77 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="145" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
22
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="145,473 145,478 "/>
<text x="229" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
23
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="229,473 229,478 "/>
<text x="313" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
24
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="313,473 313,478 "/>
<text x="397" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
25
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="397,473 397,478 "/>
<text x="481" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
26
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="481,473 481,478 "/>
<text x="565" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
27
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="565,473 565,478 "/>
<text x="649" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
28
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="649,473 649,478 "/>
<text x="733" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
29
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="733,473 733,478 "/>
<text x="817" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="817,473 817,478 "/>
<text x="901" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
31
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="901,473 901,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,472 92,471 93,471 95,470 97,469 98,469 100,468 102,467 103,467 105,466 107,465 109,464 110,464 112,463 114,462 115,461 117,460 119,459 120,459 122,458 124,457 125,456 127,455 129,454 131,453 132,452 134,452 136,451 137,450 139,449 141,448 142,447 144,446 146,445 147,444 149,443 151,442 153,441 154,440 156,439 158,438 159,437 161,436 163,435 164,434 166,433 168,431 169,430 171,429 173,428 175,426 176,425 178,424 180,423 181,421 183,420 185,419 186,417 188,416 190,415 191,414 193,412 195,411 197,410 198,409 200,407 202,406 203,405 205,404 207,402 208,401 210,400 212,399 214,397 215,396 217,395 219,394 220,392 222,391 224,389 225,388 227,386 229,384 230,383 232,381 234,379 236,377 237,376 239,374 241,372 242,370 244,368 246,366 247,364 249,362 251,360 252,358 254,356 256,355 258,353 259,351 261,349 263,348 264,346 266,344 268,343 269,341 271,339 273,338 274,336 276,335 278,333 280,331 281,330 283,328 285,326 286,325 288,323 290,321 291,319 293,317 295,315 296,313 298,311 300,309 302,306 303,304 305,302 307,300 308,297 310,295 312,292 313,290 315,288 317,285 318,283 320,281 322,278 324,276 325,273 327,271 329,269 330,266 332,264 334,261 335,259 337,256 339,254 341,251 342,248 344,246 346,243 347,240 349,238 351,235 352,232 354,229 356,226 357,224 359,221 361,218 363,215 364,213 366,210 368,208 369,205 371,203 373,201 374,198 376,196 378,194 379,192 381,190 383,188 385,186 386,184 388,183 390,181 391,179 393,177 395,176 396,174 398,172 400,171 401,169 403,168 405,166 407,165 408,164 410,162 412,161 413,160 415,159 417,158 418,156 420,155 422,154 423,153 425,152 427,151 429,150 430,149 432,147 434,146 435,145 437,143 439,142 440,140 442,139 444,137 445,136 447,134 449,132 451,131 452,129 454,127 456,125 457,124 459,122 461,120 462,119 464,117 466,115 468,114 469,112 471,111 473,110 474,108 476,107 478,106 479,105 481,104 483,103 484,103 486,102 488,101 490,101 491,100 493,99 495,99 496,98 498,98 500,97 501,97 503,96 505,96 506,96 508,95 510,95 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,94 528,95 530,95 532,96 534,97 535,98 537,98 539,99 540,100 542,101 544,102 545,103 547,104 549,105 550,106 552,107 554,107 556,108 557,109 559,110 561,111 562,112 564,113 566,114 567,115 569,116 571,117 573,118 574,120 576,121 578,122 579,124 581,126 583,127 584,129 586,131 588,133 589,135 591,137 593,139 595,141 596,143 598,145 600,147 601,149 603,151 605,153 606,155 608,157 610,158 611,160 613,162 615,164 617,166 618,168 620,170 622,172 623,173 625,175 627,177 628,179 630,180 632,182 633,184 635,185 637,187 639,188 640,190 642,192 644,193 645,195 647,197 649,198 650,200 652,202 654,204 655,206 657,208 659,210 661,212 662,214 664,217 666,219 667,222 669,224 671,227 672,229 674,232 676,234 677,237 679,239 681,242 683,244 684,247 686,249 688,251 689,254 691,256 693,258 694,260 696,262 698,264 700,266 701,268 703,270 705,272 706,274 708,276 710,279 711,281 713,283 715,285 716,287 718,290 720,292 722,294 723,297 725,299 727,301 728,304 730,306 732,309 733,312 735,314 737,317 738,319 740,322 742,324 744,327 745,329 747,332 749,334 750,337 752,339 754,341 755,343 757,346 759,348 760,350 762,352 764,354 766,355 767,357 769,359 771,361 772,362 774,364 776,365 777,367 779,368 781,370 782,371 784,372 786,374 788,375 789,377 791,378 793,380 794,382 796,383 798,385 799,387 801,389 803,390 804,392 806,394 808,396 810,398 811,400 813,401 815,403 816,405 818,407 820,408 821,410 823,411 825,413 827,414 828,416 830,417 832,419 833,420 835,421 837,422 838,424 840,425 842,426 843,427 845,428 847,429 849,430 850,431 852,432 854,433 855,434 857,435 859,436 860,437 862,438 864,439 865,439 867,440 869,441 871,442 872,443 874,444 876,444 877,445 879,446 881,447 882,448 884,449 886,450 887,451 889,452 891,453 893,453 894,454 896,455 898,456 899,457 901,458 903,459 904,460 906,461 908,462 909,462 911,463 913,464 915,465 916,465 918,466 920,467 921,467 923,468 925,468 926,469 928,470 930,470 932,471 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,434 166,433 168,431 169,430 171,429 173,428 175,426 176,425 178,424 180,423 181,421 183,420 185,419 186,417 188,416 190,415 191,414 193,412 195,411 197,410 198,409 200,407 202,406 203,405 205,404 207,402 208,401 210,400 212,399 214,397 215,396 217,395 219,394 220,392 222,391 224,389 225,388 227,386 229,384 230,383 232,381 234,379 236,377 237,376 239,374 241,372 242,370 244,368 246,366 247,364 249,362 251,360 252,358 254,356 256,355 258,353 259,351 261,349 263,348 264,346 266,344 268,343 269,341 271,339 273,338 274,336 276,335 278,333 280,331 281,330 283,328 285,326 286,325 288,323 290,321 291,319 293,317 295,315 296,313 298,311 300,309 302,306 303,304 305,302 307,300 308,297 310,295 312,292 313,290 315,288 317,285 318,283 320,281 322,278 324,276 325,273 327,271 329,269 330,266 332,264 334,261 335,259 337,256 339,254 341,251 342,248 344,246 346,243 347,240 349,238 351,235 352,232 354,229 356,226 357,224 359,221 361,218 363,215 364,213 366,210 368,208 369,205 371,203 373,201 374,198 376,196 378,194 379,192 381,190 383,188 385,186 386,184 388,183 390,181 391,179 393,177 395,176 396,174 398,172 400,171 401,169 403,168 405,166 407,165 408,164 410,162 412,161 413,160 415,159 417,158 418,156 420,155 422,154 423,153 425,152 427,151 429,150 430,149 432,147 434,146 435,145 437,143 439,142 440,140 442,139 444,137 445,136 447,134 449,132 451,131 452,129 454,127 456,125 457,124 459,122 461,120 462,119 464,117 466,115 468,114 469,112 471,111 473,110 474,108 476,107 478,106 479,105 481,104 483,103 484,103 486,102 488,101 490,101 491,100 493,99 495,99 496,98 498,98 500,97 501,97 503,96 505,96 506,96 508,95 510,95 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,94 528,95 530,95 532,96 534,97 535,98 537,98 539,99 540,100 542,101 544,102 545,103 547,104 549,105 550,106 552,107 554,107 556,108 557,109 559,110 561,111 562,112 564,113 566,114 567,115 569,116 571,117 573,118 574,120 576,121 578,122 579,124 581,126 583,127 584,129 586,131 588,133 589,135 591,137 593,139 595,141 596,143 598,145 600,147 601,149 603,151 605,153 606,155 608,157 610,158 611,160 613,162 615,164 617,166 618,168 620,170 622,172 623,173 625,175 627,177 628,179 630,180 632,182 633,184 635,185 637,187 639,188 640,190 642,192 644,193 645,195 647,197 649,198 650,200 652,202 654,204 655,206 657,208 659,210 661,212 662,214 664,217 666,219 667,222 669,224 671,227 672,229 674,232 676,234 677,237 679,239 681,242 683,244 684,247 686,249 688,251 689,254 691,256 693,258 694,260 696,262 698,264 700,266 701,268 703,270 705,272 706,274 708,276 710,279 711,281 713,283 715,285 716,287 718,290 720,292 722,294 723,297 725,299 727,301 728,304 730,306 732,309 733,312 735,314 737,317 738,319 740,322 742,324 744,327 745,329 747,332 749,334 750,337 752,339 754,341 755,343 757,346 759,348 760,350 762,352 764,354 766,355 767,357 769,359 771,361 772,362 774,364 776,365 777,367 779,368 781,370 782,371 784,372 786,374 788,375 789,377 791,378 793,380 794,382 796,383 798,385 799,387 801,389 803,390 804,392 806,394 808,396 810,398 811,400 813,401 815,403 816,405 818,407 820,408 821,410 823,411 825,413 827,414 828,416 830,417 832,419 833,420 835,421 837,422 838,424 840,425 842,426 843,427 845,428 847,429 849,430 850,431 852,432 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="529,473 529,95 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,193 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>below_cache_reuse/first_stroke_cache_build - Criterion.rs</title>
<style type="text/css">
body {
font: 14px Helvetica Neue;
text-rendering: optimizelegibility;
}
.body {
width: 960px;
margin: auto;
}
th {
font-weight: 200
}
th,
td {
padding-right: 3px;
padding-bottom: 3px;
}
a:link {
color: #1F78B4;
text-decoration: none;
}
th.ci-bound {
opacity: 0.6
}
td.ci-bound {
opacity: 0.5
}
.stats {
width: 80%;
margin: auto;
display: flex;
}
.additional_stats {
flex: 0 0 60%
}
.additional_plots {
flex: 1
}
h2 {
font-size: 36px;
font-weight: 300;
}
h3 {
font-size: 24px;
font-weight: 300;
}
#footer {
height: 40px;
background: #888;
color: white;
font-size: larger;
font-weight: 300;
}
#footer a {
color: white;
text-decoration: underline;
}
#footer p {
text-align: center
}
</style>
</head>
<body>
<div class="body">
<h2>below_cache_reuse/first_stroke_cache_build</h2>
<div class="absolute">
<section class="plots">
<table width="100%">
<tbody>
<tr>
<td>
<a href="pdf.svg">
<img src="pdf_small.svg" alt="PDF of Slope" width="450" height="300" />
</a>
</td>
<td>
<a href="iteration_times.svg">
<img src="iteration_times_small.svg" alt="Iteration Times" width="450" height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
<section class="stats">
<div class="additional_stats">
<h4>Additional Statistics:</h4>
<table>
<thead>
<tr>
<th></th>
<th title="0.95 confidence level" class="ci-bound">Lower bound</th>
<th>Estimate</th>
<th title="0.95 confidence level" class="ci-bound">Upper bound</th>
</tr>
</thead>
<tbody>
<tr>
<td>R&#xb2;</td>
<td class="ci-bound">0.0020310</td>
<td>0.0021064</td>
<td class="ci-bound">0.0020248</td>
</tr>
<tr>
<td>Mean</td>
<td class="ci-bound">802.63 ms</td>
<td>807.73 ms</td>
<td class="ci-bound">813.04 ms</td>
</tr>
<tr>
<td title="Standard Deviation">Std. Dev.</td>
<td class="ci-bound">22.212 ms</td>
<td>26.573 ms</td>
<td class="ci-bound">30.450 ms</td>
</tr>
<tr>
<td>Median</td>
<td class="ci-bound">795.64 ms</td>
<td>802.60 ms</td>
<td class="ci-bound">811.51 ms</td>
</tr>
<tr>
<td title="Median Absolute Deviation">MAD</td>
<td class="ci-bound">20.569 ms</td>
<td>26.900 ms</td>
<td class="ci-bound">31.956 ms</td>
</tr>
</tbody>
</table>
</div>
<div class="additional_plots">
<h4>Additional Plots:</h4>
<ul>
<li>
<a href="typical.svg">Typical</a>
</li>
<li>
<a href="mean.svg">Mean</a>
</li>
<li>
<a href="SD.svg">Std. Dev.</a>
</li>
<li>
<a href="median.svg">Median</a>
</li>
<li>
<a href="MAD.svg">MAD</a>
</li>
</ul>
</div>
</section>
<section class="explanation">
<h4>Understanding this report:</h4>
<p>The plot on the left displays the average time per iteration for this benchmark. The shaded region
shows the estimated probability of an iteration taking a certain amount of time, while the line
shows the mean. Click on the plot for a larger view showing the outliers.</p>
<p>The plot on the right shows the average time per iteration for the samples. Each point
represents one sample.</p>
<p>See <a href="https://bheisler.github.io/criterion.rs/book/user_guide/command_line_output.html#additional-statistics">the
documentation</a> for more details on the additional statistics.</p>
</section>
</div>
</div>
<div id="footer">
<p>This report was generated by
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
library in Rust.</p>
</div>
</body>
</html>
@@ -1,194 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Average Iteration Time (ms)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="163" y1="472" x2="163" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="247" y1="472" x2="247" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="332" y1="472" x2="332" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="416" y1="472" x2="416" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="501" y1="472" x2="501" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="585" y1="472" x2="585" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="670" y1="472" x2="670" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="754" y1="472" x2="754" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="839" y1="472" x2="839" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="923" y1="472" x2="923" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="428" x2="932" y2="428"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="361" x2="932" y2="361"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="294" x2="932" y2="294"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="227" x2="932" y2="227"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="160" x2="932" y2="160"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="93" x2="932" y2="93"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="428" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
780.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,428 86,428 "/>
<text x="77" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
800.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,361 86,361 "/>
<text x="77" y="294" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
820.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,294 86,294 "/>
<text x="77" y="227" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
840.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,227 86,227 "/>
<text x="77" y="160" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
860.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,160 86,160 "/>
<text x="77" y="93" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
880.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,93 86,93 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="163" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="163,473 163,478 "/>
<text x="247" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="247,473 247,478 "/>
<text x="332" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="332,473 332,478 "/>
<text x="416" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="416,473 416,478 "/>
<text x="501" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="501,473 501,478 "/>
<text x="585" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="585,473 585,478 "/>
<text x="670" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="670,473 670,478 "/>
<text x="754" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="754,473 754,478 "/>
<text x="839" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="839,473 839,478 "/>
<text x="923" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="923,473 923,478 "/>
<circle cx="87" cy="394" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="95" cy="435" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="436" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="112" cy="392" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="120" cy="445" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="129" cy="377" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="137" cy="257" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="445" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="154" cy="376" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="163" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="418" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="430" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="188" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="196" cy="279" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="205" cy="460" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="213" cy="384" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="384" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="230" cy="366" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="239" cy="396" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="390" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="256" cy="279" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="264" cy="406" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="249" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="281" cy="296" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="289" cy="338" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="298" cy="363" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="306" cy="283" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="331" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="323" cy="330" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="332" cy="366" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="286" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="348" cy="313" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="357" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="356" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="374" cy="409" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="382" cy="262" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="391" cy="335" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="399" cy="300" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="420" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="353" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="425" cy="265" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="433" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="441" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="450" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="458" cy="140" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="467" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="475" cy="261" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="484" cy="95" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="492" cy="321" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="501" cy="346" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="509" cy="321" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="517" cy="254" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="526" cy="288" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="534" cy="322" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="543" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="551" cy="330" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="560" cy="400" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="568" cy="265" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="577" cy="314" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="585" cy="279" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="594" cy="363" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="602" cy="355" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="610" cy="397" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="619" cy="436" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="627" cy="297" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="636" cy="302" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="644" cy="212" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="653" cy="302" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="661" cy="169" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="670" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="678" cy="369" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="686" cy="337" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="695" cy="388" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="703" cy="400" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="712" cy="264" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="720" cy="353" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="729" cy="349" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="737" cy="316" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="746" cy="311" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="754" cy="136" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="763" cy="246" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="771" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="779" cy="407" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="788" cy="426" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="796" cy="408" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="805" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="813" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="822" cy="411" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="830" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="839" cy="423" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="847" cy="416" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="855" cy="389" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="864" cy="419" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="872" cy="435" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="881" cy="426" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="889" cy="416" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="898" cy="369" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="906" cy="471" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="915" cy="323" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="923" cy="376" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<text x="132" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Sample
</text>
<circle cx="112" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

@@ -1,187 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Average Iteration Time (ms)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="107" y1="244" x2="107" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="143" y1="244" x2="143" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="179" y1="244" x2="179" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="215" y1="244" x2="215" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="250" y1="244" x2="250" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="286" y1="244" x2="286" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="322" y1="244" x2="322" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="358" y1="244" x2="358" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="394" y1="244" x2="394" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="430" y1="244" x2="430" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="220" x2="434" y2="220"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="184" x2="434" y2="184"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="147" x2="434" y2="147"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="110" x2="434" y2="110"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="74" x2="434" y2="74"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="37" x2="434" y2="37"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="220" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
780.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,220 74,220 "/>
<text x="65" y="184" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
800.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,184 74,184 "/>
<text x="65" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
820.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,147 74,147 "/>
<text x="65" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
840.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,110 74,110 "/>
<text x="65" y="74" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
860.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,74 74,74 "/>
<text x="65" y="37" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
880.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,37 74,37 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="107" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="107,245 107,250 "/>
<text x="143" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="143,245 143,250 "/>
<text x="179" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="179,245 179,250 "/>
<text x="215" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="215,245 215,250 "/>
<text x="250" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="250,245 250,250 "/>
<text x="286" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="286,245 286,250 "/>
<text x="322" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="322,245 322,250 "/>
<text x="358" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="358,245 358,250 "/>
<text x="394" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="394,245 394,250 "/>
<text x="430" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="430,245 430,250 "/>
<circle cx="75" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="78" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="82" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="85" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="89" cy="230" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="92" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="96" cy="127" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="100" cy="230" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="107" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="110" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="114" cy="221" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="118" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="121" cy="139" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="125" cy="238" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="128" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="132" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="136" cy="187" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="139" cy="203" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="143" cy="199" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="139" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="150" cy="208" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="153" cy="123" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="157" cy="148" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="161" cy="171" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="164" cy="185" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="168" cy="141" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="167" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="175" cy="167" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="186" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="182" cy="143" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="186" cy="157" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="189" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="193" cy="181" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="197" cy="210" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="200" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="204" cy="169" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="207" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="211" cy="216" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="215" cy="179" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="218" cy="131" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="64" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="225" cy="96" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="229" cy="57" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="232" cy="63" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="236" cy="117" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="240" cy="129" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="243" cy="38" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="162" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="250" cy="175" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="254" cy="161" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="258" cy="125" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="261" cy="144" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="265" cy="162" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="268" cy="104" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="167" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="276" cy="205" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="279" cy="131" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="283" cy="158" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="286" cy="139" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="290" cy="185" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="293" cy="180" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="297" cy="203" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="301" cy="225" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="304" cy="148" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="308" cy="151" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="311" cy="102" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="151" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="319" cy="79" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="322" cy="15" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="326" cy="188" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="329" cy="170" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="333" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="337" cy="205" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="344" cy="179" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="347" cy="177" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="351" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="355" cy="156" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="358" cy="61" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="362" cy="121" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="369" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="372" cy="219" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="376" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="380" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="383" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="387" cy="211" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="390" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="394" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="398" cy="214" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="401" cy="199" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="405" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="412" cy="219" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="214" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="419" cy="188" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="423" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="426" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="430" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

@@ -1,88 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build:mean
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="441" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,441 86,441 "/>
<text x="77" y="388" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,388 86,388 "/>
<text x="77" y="335" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,335 86,335 "/>
<text x="77" y="281" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.08
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,281 86,281 "/>
<text x="77" y="228" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,228 86,228 "/>
<text x="77" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,175 86,175 "/>
<text x="77" y="121" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,121 86,121 "/>
<text x="77" y="68" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,68 86,68 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="122" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
802
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="122,473 122,478 "/>
<text x="254" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
804
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="254,473 254,478 "/>
<text x="387" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
806
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="387,473 387,478 "/>
<text x="520" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
808
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="520,473 520,478 "/>
<text x="653" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
810
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="653,473 653,478 "/>
<text x="786" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
812
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="786,473 786,478 "/>
<text x="918" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
814
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="918,473 918,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,471 92,470 93,469 95,469 97,468 98,467 100,466 102,466 103,465 105,464 107,463 109,463 110,462 112,461 114,460 115,459 117,459 119,458 120,457 122,456 124,455 125,454 127,453 129,452 131,451 132,450 134,449 136,448 137,447 139,446 141,445 142,444 144,443 146,442 147,440 149,439 151,438 153,437 154,435 156,434 158,433 159,431 161,430 163,428 164,427 166,426 168,424 169,423 171,421 173,420 175,419 176,417 178,416 180,414 181,413 183,412 185,410 186,409 188,407 190,406 191,404 193,403 195,401 197,399 198,398 200,396 202,394 203,393 205,391 207,389 208,388 210,386 212,384 214,383 215,381 217,379 219,378 220,376 222,375 224,373 225,372 227,370 229,369 230,368 232,366 234,365 236,364 237,362 239,361 241,360 242,358 244,357 246,355 247,354 249,352 251,351 252,349 254,347 256,345 258,343 259,341 261,339 263,337 264,335 266,332 268,330 269,327 271,325 273,322 274,320 276,317 278,314 280,312 281,309 283,306 285,304 286,301 288,298 290,296 291,293 293,290 295,288 296,285 298,283 300,280 302,278 303,276 305,273 307,271 308,269 310,266 312,264 313,262 315,259 317,257 318,255 320,252 322,250 324,248 325,245 327,243 329,241 330,238 332,236 334,234 335,231 337,229 339,227 341,225 342,222 344,220 346,218 347,216 349,213 351,211 352,209 354,206 356,204 357,202 359,200 361,197 363,195 364,193 366,190 368,188 369,186 371,183 373,181 374,179 376,176 378,174 379,172 381,169 383,167 385,165 386,162 388,160 390,158 391,156 393,154 395,152 396,149 398,147 400,145 401,143 403,141 405,140 407,138 408,136 410,134 412,133 413,131 415,130 417,128 418,127 420,126 422,125 423,124 425,123 427,123 429,122 430,121 432,121 434,121 435,120 437,120 439,119 440,119 442,119 444,118 445,118 447,117 449,117 451,116 452,115 454,115 456,114 457,113 459,112 461,111 462,110 464,109 466,108 468,108 469,107 471,106 473,105 474,104 476,103 478,102 479,101 481,100 483,99 484,98 486,97 488,97 490,96 491,95 493,95 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,95 510,95 512,96 513,97 515,98 517,99 518,100 520,101 522,102 523,103 525,104 527,106 528,107 530,108 532,110 534,111 535,112 537,114 539,115 540,116 542,117 544,119 545,120 547,121 549,122 550,123 552,124 554,125 556,126 557,127 559,127 561,128 562,128 564,129 566,130 567,130 569,131 571,131 573,132 574,132 576,133 578,133 579,134 581,135 583,136 584,137 586,139 588,140 589,142 591,143 593,145 595,147 596,149 598,152 600,154 601,156 603,159 605,161 606,164 608,167 610,169 611,172 613,174 615,177 617,179 618,182 620,184 622,187 623,189 625,191 627,194 628,196 630,198 632,200 633,202 635,205 637,207 639,209 640,211 642,213 644,215 645,217 647,219 649,221 650,223 652,225 654,227 655,229 657,231 659,233 661,235 662,238 664,240 666,242 667,244 669,246 671,248 672,250 674,252 676,254 677,256 679,258 681,260 683,262 684,264 686,266 688,268 689,270 691,272 693,275 694,277 696,279 698,281 700,284 701,286 703,289 705,291 706,293 708,296 710,298 711,301 713,303 715,306 716,308 718,311 720,313 722,315 723,318 725,320 727,322 728,324 730,326 732,328 733,330 735,332 737,334 738,336 740,338 742,340 744,341 745,343 747,345 749,347 750,348 752,350 754,352 755,354 757,355 759,357 760,359 762,360 764,362 766,363 767,365 769,367 771,368 772,369 774,371 776,372 777,374 779,375 781,376 782,378 784,379 786,380 788,382 789,383 791,385 793,386 794,388 796,389 798,391 799,393 801,394 803,396 804,398 806,400 808,401 810,403 811,405 813,407 815,409 816,411 818,413 820,414 821,416 823,418 825,420 827,421 828,423 830,424 832,426 833,427 835,429 837,430 838,431 840,432 842,433 843,434 845,435 847,436 849,437 850,438 852,439 854,440 855,441 857,442 859,443 860,444 862,444 864,445 865,446 867,447 869,448 871,448 872,449 874,450 876,451 877,452 879,452 881,453 882,454 884,455 886,455 887,456 889,457 891,458 893,458 894,459 896,460 898,460 899,461 901,462 903,462 904,463 906,463 908,464 909,465 911,465 913,466 915,466 916,467 918,468 920,468 921,469 923,469 925,470 926,471 928,471 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,427 166,426 168,424 169,423 171,421 173,420 175,419 176,417 178,416 180,414 181,413 183,412 185,410 186,409 188,407 190,406 191,404 193,403 195,401 197,399 198,398 200,396 202,394 203,393 205,391 207,389 208,388 210,386 212,384 214,383 215,381 217,379 219,378 220,376 222,375 224,373 225,372 227,370 229,369 230,368 232,366 234,365 236,364 237,362 239,361 241,360 242,358 244,357 246,355 247,354 249,352 251,351 252,349 254,347 256,345 258,343 259,341 261,339 263,337 264,335 266,332 268,330 269,327 271,325 273,322 274,320 276,317 278,314 280,312 281,309 283,306 285,304 286,301 288,298 290,296 291,293 293,290 295,288 296,285 298,283 300,280 302,278 303,276 305,273 307,271 308,269 310,266 312,264 313,262 315,259 317,257 318,255 320,252 322,250 324,248 325,245 327,243 329,241 330,238 332,236 334,234 335,231 337,229 339,227 341,225 342,222 344,220 346,218 347,216 349,213 351,211 352,209 354,206 356,204 357,202 359,200 361,197 363,195 364,193 366,190 368,188 369,186 371,183 373,181 374,179 376,176 378,174 379,172 381,169 383,167 385,165 386,162 388,160 390,158 391,156 393,154 395,152 396,149 398,147 400,145 401,143 403,141 405,140 407,138 408,136 410,134 412,133 413,131 415,130 417,128 418,127 420,126 422,125 423,124 425,123 427,123 429,122 430,121 432,121 434,121 435,120 437,120 439,119 440,119 442,119 444,118 445,118 447,117 449,117 451,116 452,115 454,115 456,114 457,113 459,112 461,111 462,110 464,109 466,108 468,108 469,107 471,106 473,105 474,104 476,103 478,102 479,101 481,100 483,99 484,98 486,97 488,97 490,96 491,95 493,95 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,95 510,95 512,96 513,97 515,98 517,99 518,100 520,101 522,102 523,103 525,104 527,106 528,107 530,108 532,110 534,111 535,112 537,114 539,115 540,116 542,117 544,119 545,120 547,121 549,122 550,123 552,124 554,125 556,126 557,127 559,127 561,128 562,128 564,129 566,130 567,130 569,131 571,131 573,132 574,132 576,133 578,133 579,134 581,135 583,136 584,137 586,139 588,140 589,142 591,143 593,145 595,147 596,149 598,152 600,154 601,156 603,159 605,161 606,164 608,167 610,169 611,172 613,174 615,177 617,179 618,182 620,184 622,187 623,189 625,191 627,194 628,196 630,198 632,200 633,202 635,205 637,207 639,209 640,211 642,213 644,215 645,217 647,219 649,221 650,223 652,225 654,227 655,229 657,231 659,233 661,235 662,238 664,240 666,242 667,244 669,246 671,248 672,250 674,252 676,254 677,256 679,258 681,260 683,262 684,264 686,266 688,268 689,270 691,272 693,275 694,277 696,279 698,281 700,284 701,286 703,289 705,291 706,293 708,296 710,298 711,301 713,303 715,306 716,308 718,311 720,313 722,315 723,318 725,320 727,322 728,324 730,326 732,328 733,330 735,332 737,334 738,336 740,338 742,340 744,341 745,343 747,345 749,347 750,348 752,350 754,352 755,354 757,355 759,357 760,359 762,360 764,362 766,363 767,365 769,367 771,368 772,369 774,371 776,372 777,374 779,375 781,376 782,378 784,379 786,380 788,382 789,383 791,385 793,386 794,388 796,389 798,391 799,393 801,394 803,396 804,398 806,400 808,401 810,403 811,405 813,407 815,409 816,411 818,413 820,414 821,416 823,418 825,420 827,421 828,423 830,424 832,426 833,427 835,429 837,430 838,431 840,432 842,433 843,434 845,435 847,436 849,437 850,438 852,439 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="502,473 502,94 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,100 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build:median
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="430" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,430 86,430 "/>
<text x="77" y="383" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,383 86,383 "/>
<text x="77" y="336" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,336 86,336 "/>
<text x="77" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.08
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,289 86,289 "/>
<text x="77" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,241 86,241 "/>
<text x="77" y="194" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,194 86,194 "/>
<text x="77" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,147 86,147 "/>
<text x="77" y="100" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,100 86,100 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="92" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
794
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="92,473 92,478 "/>
<text x="179" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
796
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="179,473 179,478 "/>
<text x="266" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
798
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="266,473 266,478 "/>
<text x="353" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
800
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="353,473 353,478 "/>
<text x="440" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
802
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="440,473 440,478 "/>
<text x="528" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
804
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="528,473 528,478 "/>
<text x="615" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
806
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="615,473 615,478 "/>
<text x="702" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
808
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="702,473 702,478 "/>
<text x="789" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
810
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="789,473 789,478 "/>
<text x="876" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
812
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="876,473 876,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,470 88,470 90,470 92,470 93,470 95,469 97,469 98,469 100,469 102,468 103,468 105,468 107,468 109,468 110,468 112,467 114,467 115,467 117,467 119,467 120,466 122,466 124,465 125,464 127,463 129,462 131,461 132,460 134,458 136,457 137,455 139,453 141,451 142,449 144,447 146,445 147,443 149,441 151,440 153,438 154,437 156,436 158,435 159,435 161,435 163,435 164,435 166,436 168,437 169,437 171,439 173,440 175,441 176,442 178,443 180,444 181,445 183,445 185,446 186,446 188,446 190,446 191,446 193,446 195,446 197,445 198,445 200,444 202,444 203,443 205,443 207,443 208,442 210,442 212,442 214,441 215,441 217,440 219,439 220,438 222,437 224,436 225,434 227,432 229,430 230,428 232,425 234,421 236,418 237,414 239,410 241,405 242,401 244,396 246,391 247,386 249,380 251,375 252,369 254,363 256,358 258,352 259,346 261,340 263,334 264,329 266,323 268,317 269,312 271,306 273,301 274,296 276,291 278,287 280,282 281,279 283,275 285,272 286,269 288,266 290,264 291,262 293,261 295,259 296,258 298,257 300,256 302,256 303,255 305,254 307,254 308,253 310,253 312,253 313,253 315,253 317,254 318,255 320,256 322,258 324,261 325,264 327,267 329,272 330,276 332,282 334,288 335,294 337,300 339,306 341,313 342,319 344,325 346,331 347,336 349,340 351,344 352,347 354,349 356,351 357,351 359,352 361,351 363,350 364,349 366,348 368,346 369,345 371,343 373,342 374,341 376,340 378,340 379,339 381,339 383,340 385,340 386,341 388,341 390,341 391,341 393,341 395,340 396,338 398,335 400,332 401,328 403,323 405,317 407,311 408,303 410,295 412,286 413,277 415,268 417,258 418,247 420,237 422,227 423,217 425,207 427,198 429,189 430,180 432,171 434,163 435,156 437,148 439,141 440,135 442,128 444,122 445,117 447,112 449,107 451,103 452,99 454,96 456,94 457,93 459,92 461,92 462,94 464,96 466,99 468,103 469,108 471,114 473,121 474,128 476,136 478,145 479,153 481,163 483,172 484,181 486,190 488,199 490,207 491,216 493,224 495,231 496,238 498,245 500,251 501,257 503,263 505,268 506,273 508,277 510,282 512,286 513,290 515,294 517,298 518,302 520,305 522,309 523,312 525,315 527,318 528,321 530,324 532,326 534,329 535,331 537,334 539,336 540,338 542,340 544,342 545,344 547,346 549,348 550,350 552,353 554,355 556,357 557,359 559,361 561,364 562,366 564,368 566,370 567,372 569,373 571,375 573,376 574,377 576,377 578,377 579,377 581,377 583,376 584,376 586,375 588,374 589,373 591,372 593,371 595,370 596,369 598,369 600,369 601,369 603,370 605,371 606,372 608,373 610,375 611,377 613,379 615,381 617,383 618,385 620,386 622,387 623,388 625,388 627,387 628,386 630,384 632,381 633,378 635,374 637,369 639,363 640,357 642,351 644,344 645,338 647,331 649,324 650,318 652,311 654,306 655,300 657,296 659,292 661,288 662,286 664,284 666,283 667,283 669,283 671,284 672,286 674,289 676,291 677,295 679,298 681,302 683,306 684,311 686,315 688,319 689,323 691,327 693,331 694,335 696,338 698,341 700,344 701,347 703,349 705,351 706,353 708,354 710,356 711,357 713,358 715,359 716,359 718,360 720,360 722,360 723,359 725,359 727,358 728,357 730,356 732,355 733,354 735,352 737,350 738,348 740,347 742,345 744,343 745,342 747,341 749,341 750,341 752,342 754,343 755,345 757,347 759,350 760,354 762,359 764,364 766,369 767,375 769,381 771,387 772,393 774,399 776,405 777,410 779,415 781,420 782,424 784,428 786,431 788,434 789,436 791,438 793,440 794,441 796,442 798,442 799,443 801,443 803,443 804,444 806,444 808,444 810,445 811,445 813,446 815,446 816,447 818,448 820,449 821,449 823,450 825,451 827,451 828,451 830,451 832,451 833,451 835,450 837,450 838,449 840,448 842,446 843,445 845,443 847,441 849,440 850,438 852,437 854,435 855,434 857,433 859,432 860,431 862,431 864,431 865,431 867,431 869,432 871,433 872,434 874,436 876,437 877,439 879,441 881,443 882,445 884,447 886,449 887,451 889,453 891,455 893,457 894,458 896,460 898,461 899,463 901,464 903,465 904,466 906,467 908,468 909,468 911,469 913,469 915,470 916,470 918,471 920,471 921,471 923,471 925,472 926,472 928,472 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,435 166,436 168,437 169,437 171,439 173,440 175,441 176,442 178,443 180,444 181,445 183,445 185,446 186,446 188,446 190,446 191,446 193,446 195,446 197,445 198,445 200,444 202,444 203,443 205,443 207,443 208,442 210,442 212,442 214,441 215,441 217,440 219,439 220,438 222,437 224,436 225,434 227,432 229,430 230,428 232,425 234,421 236,418 237,414 239,410 241,405 242,401 244,396 246,391 247,386 249,380 251,375 252,369 254,363 256,358 258,352 259,346 261,340 263,334 264,329 266,323 268,317 269,312 271,306 273,301 274,296 276,291 278,287 280,282 281,279 283,275 285,272 286,269 288,266 290,264 291,262 293,261 295,259 296,258 298,257 300,256 302,256 303,255 305,254 307,254 308,253 310,253 312,253 313,253 315,253 317,254 318,255 320,256 322,258 324,261 325,264 327,267 329,272 330,276 332,282 334,288 335,294 337,300 339,306 341,313 342,319 344,325 346,331 347,336 349,340 351,344 352,347 354,349 356,351 357,351 359,352 361,351 363,350 364,349 366,348 368,346 369,345 371,343 373,342 374,341 376,340 378,340 379,339 381,339 383,340 385,340 386,341 388,341 390,341 391,341 393,341 395,340 396,338 398,335 400,332 401,328 403,323 405,317 407,311 408,303 410,295 412,286 413,277 415,268 417,258 418,247 420,237 422,227 423,217 425,207 427,198 429,189 430,180 432,171 434,163 435,156 437,148 439,141 440,135 442,128 444,122 445,117 447,112 449,107 451,103 452,99 454,96 456,94 457,93 459,92 461,92 462,94 464,96 466,99 468,103 469,108 471,114 473,121 474,128 476,136 478,145 479,153 481,163 483,172 484,181 486,190 488,199 490,207 491,216 493,224 495,231 496,238 498,245 500,251 501,257 503,263 505,268 506,273 508,277 510,282 512,286 513,290 515,294 517,298 518,302 520,305 522,309 523,312 525,315 527,318 528,321 530,324 532,326 534,329 535,331 537,334 539,336 540,338 542,340 544,342 545,344 547,346 549,348 550,350 552,353 554,355 556,357 557,359 559,361 561,364 562,366 564,368 566,370 567,372 569,373 571,375 573,376 574,377 576,377 578,377 579,377 581,377 583,376 584,376 586,375 588,374 589,373 591,372 593,371 595,370 596,369 598,369 600,369 601,369 603,370 605,371 606,372 608,373 610,375 611,377 613,379 615,381 617,383 618,385 620,386 622,387 623,388 625,388 627,387 628,386 630,384 632,381 633,378 635,374 637,369 639,363 640,357 642,351 644,344 645,338 647,331 649,324 650,318 652,311 654,306 655,300 657,296 659,292 661,288 662,286 664,284 666,283 667,283 669,283 671,284 672,286 674,289 676,291 677,295 679,298 681,302 683,306 684,311 686,315 688,319 689,323 691,327 693,331 694,335 696,338 698,341 700,344 701,347 703,349 705,351 706,353 708,354 710,356 711,357 713,358 715,359 716,359 718,360 720,360 722,360 723,359 725,359 727,358 728,357 730,356 732,355 733,354 735,352 737,350 738,348 740,347 742,345 744,343 745,342 747,341 749,341 750,341 752,342 754,343 755,345 757,347 759,350 760,354 762,359 764,364 766,369 767,375 769,381 771,387 772,393 774,399 776,405 777,410 779,415 781,420 782,424 784,428 786,431 788,434 789,436 791,438 793,440 794,441 796,442 798,442 799,443 801,443 803,443 804,444 806,444 808,444 810,445 811,445 813,446 815,446 816,447 818,448 820,449 821,449 823,450 825,451 827,451 828,451 830,451 832,451 833,451 835,450 837,450 838,449 840,448 842,446 843,445 845,443 847,441 849,440 850,438 852,437 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="467,473 467,101 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

@@ -1,161 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Iterations
</text>
<text x="480" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="472" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,472 86,472 "/>
<text x="77" y="431" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,431 86,431 "/>
<text x="77" y="389" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,389 86,389 "/>
<text x="77" y="347" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,347 86,347 "/>
<text x="77" y="305" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,305 86,305 "/>
<text x="77" y="263" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,263 86,263 "/>
<text x="77" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,221 86,221 "/>
<text x="77" y="179" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.7
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,179 86,179 "/>
<text x="77" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,137 86,137 "/>
<text x="77" y="95" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,95 86,95 "/>
<text x="77" y="53" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,53 86,53 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 872,473 "/>
<text x="114" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
740
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="114,473 114,478 "/>
<text x="196" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
760
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="196,473 196,478 "/>
<text x="278" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
780
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="278,473 278,478 "/>
<text x="359" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
800
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="359,473 359,478 "/>
<text x="441" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
820
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="441,473 441,478 "/>
<text x="523" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
840
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="523,473 523,478 "/>
<text x="604" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
860
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="604,473 604,478 "/>
<text x="686" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
880
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="686,473 686,478 "/>
<text x="768" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
900
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="768,473 768,478 "/>
<text x="849" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
920
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="849,473 849,478 "/>
<text x="933" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(90, 933, 263)">
Density (a.u.)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,53 873,473 "/>
<text x="883" y="473" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,473 878,473 "/>
<text x="883" y="418" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.002
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,418 878,418 "/>
<text x="883" y="362" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.004
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,362 878,362 "/>
<text x="883" y="306" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.006
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,306 878,306 "/>
<text x="883" y="250" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.008
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,250 878,250 "/>
<text x="883" y="194" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.01
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,194 878,194 "/>
<text x="883" y="138" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.012
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,138 878,138 "/>
<text x="883" y="82" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.014
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,82 878,82 "/>
<polygon opacity="0.5" fill="#1F78B4" points="87,473 88,473 90,473 91,473 93,473 94,473 96,473 98,473 99,473 101,473 102,473 104,473 105,472 107,472 109,472 110,472 112,472 113,472 115,472 116,471 118,471 120,471 121,471 123,471 124,470 126,470 127,470 129,469 131,469 132,469 134,468 135,468 137,467 138,467 140,466 142,466 143,465 145,465 146,464 148,463 150,462 151,461 153,461 154,460 156,459 157,458 159,456 161,455 162,454 164,453 165,451 167,450 168,448 170,446 172,445 173,443 175,441 176,439 178,437 179,435 181,432 183,430 184,428 186,425 187,422 189,419 190,416 192,413 194,410 195,407 197,404 198,400 200,396 201,393 203,389 205,385 206,380 208,376 209,372 211,367 213,363 214,358 216,353 217,348 219,343 220,338 222,332 224,327 225,321 227,316 228,310 230,304 231,298 233,292 235,286 236,280 238,274 239,268 241,261 242,255 244,249 246,242 247,236 249,230 250,223 252,217 253,211 255,204 257,198 258,192 260,186 261,180 263,174 264,168 266,162 268,156 269,150 271,145 272,140 274,134 276,129 277,124 279,119 280,115 282,110 283,106 285,101 287,97 288,93 290,90 291,86 293,83 294,80 296,77 298,74 299,71 301,69 302,67 304,65 305,63 307,61 309,60 310,58 312,57 313,56 315,55 316,55 318,54 320,54 321,54 323,53 324,54 326,54 327,54 329,54 331,55 332,56 334,56 335,57 337,58 339,59 340,60 342,61 343,62 345,64 346,65 348,66 350,68 351,69 353,71 354,72 356,74 357,75 359,77 361,78 362,80 364,82 365,83 367,85 368,86 370,88 372,90 373,91 375,93 376,94 378,96 379,98 381,99 383,101 384,102 386,104 387,105 389,107 391,109 392,110 394,112 395,113 397,115 398,116 400,118 402,119 403,121 405,122 406,124 408,125 409,127 411,128 413,130 414,131 416,133 417,134 419,136 420,138 422,139 424,141 425,143 427,144 428,146 430,148 431,150 433,152 435,154 436,155 438,157 439,159 441,162 442,164 444,166 446,168 447,170 449,173 450,175 452,177 454,180 455,182 457,185 458,188 460,190 461,193 463,196 465,199 466,202 468,205 469,208 471,211 472,214 474,217 476,220 477,223 479,227 480,230 482,233 483,237 485,240 487,244 488,247 490,251 491,255 493,258 494,262 496,265 498,269 499,273 501,276 502,280 504,284 505,287 507,291 509,294 510,298 512,302 513,305 515,309 517,312 518,316 520,319 521,322 523,326 524,329 526,332 528,335 529,338 531,341 532,344 534,347 535,350 537,352 539,355 540,357 542,360 543,362 545,365 546,367 548,369 550,371 551,373 553,375 554,377 556,378 557,380 559,381 561,383 562,384 564,386 565,387 567,388 568,389 570,390 572,391 573,392 575,393 576,394 578,395 580,395 581,396 583,396 584,397 586,397 587,398 589,398 591,399 592,399 594,399 595,400 597,400 598,400 600,400 602,401 603,401 605,401 606,401 608,402 609,402 611,402 613,402 614,403 616,403 617,403 619,403 620,404 622,404 624,404 625,405 627,405 628,406 630,406 632,406 633,407 635,407 636,408 638,409 639,409 641,410 643,410 644,411 646,412 647,413 649,413 650,414 652,415 654,416 655,416 657,417 658,418 660,419 661,420 663,421 665,422 666,422 668,423 669,424 671,425 672,426 674,427 676,428 677,429 679,430 680,430 682,431 683,432 685,433 687,434 688,435 690,436 691,436 693,437 695,438 696,439 698,440 699,440 701,441 702,442 704,443 706,443 707,444 709,445 710,445 712,446 713,447 715,447 717,448 718,448 720,449 721,450 723,450 724,451 726,451 728,452 729,452 731,453 732,453 734,454 735,454 737,455 739,455 740,456 742,456 743,457 745,457 746,458 748,458 750,459 751,459 753,459 754,460 756,460 758,461 759,461 761,462 762,462 764,462 765,463 767,463 769,463 770,464 772,464 773,464 775,465 776,465 778,466 780,466 781,466 783,466 784,467 786,467 787,467 789,468 791,468 792,468 794,468 795,469 797,469 798,469 800,469 802,470 803,470 805,470 806,470 808,470 809,471 811,471 813,471 814,471 816,471 817,471 819,471 821,472 822,472 824,472 825,472 827,472 828,472 830,472 832,472 833,472 835,473 836,473 838,473 839,473 841,473 843,473 844,473 846,473 847,473 849,473 850,473 852,473 854,473 855,473 857,473 858,473 860,473 861,473 863,473 865,473 866,473 868,473 869,473 871,473 873,473 873,473 87,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="391,472 391,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="87,472 87,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="685,472 685,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="87,472 87,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="873,472 873,53 "/>
<circle cx="734" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="734" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<text x="776" y="228" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
PDF
</text>
<text x="776" y="243" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mean
</text>
<text x="776" y="258" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
&quot;Clean&quot; sample
</text>
<text x="776" y="273" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mild outliers
</text>
<text x="776" y="288" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Severe outliers
</text>
<rect x="746" y="228" width="20" height="10" opacity="0.5" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="746,248 766,248 "/>
<circle cx="756" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="756" cy="278" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="756" cy="293" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,64 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Density (a.u.)
</text>
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,244 74,244 "/>
<text x="65" y="217" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.002
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,217 74,217 "/>
<text x="65" y="189" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.004
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,189 74,189 "/>
<text x="65" y="161" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.006
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,161 74,161 "/>
<text x="65" y="134" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.008
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,134 74,134 "/>
<text x="65" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.01
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,106 74,106 "/>
<text x="65" y="78" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.012
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,78 74,78 "/>
<text x="65" y="50" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.014
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,50 74,50 "/>
<text x="65" y="23" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.016
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,23 74,23 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="106" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
750
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="106,245 106,250 "/>
<text x="199" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
800
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="199,245 199,250 "/>
<text x="293" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
850
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="293,245 293,250 "/>
<text x="386" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
900
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="386,245 386,250 "/>
<polygon opacity="0.25" fill="#1F78B4" points="75,244 75,244 76,244 77,244 77,244 78,244 79,244 80,244 80,244 81,244 82,244 82,244 83,244 84,244 85,244 85,244 86,244 87,244 87,244 88,244 89,243 90,243 90,243 91,243 92,243 92,243 93,243 94,242 95,242 95,242 96,242 97,242 98,241 98,241 99,241 100,241 100,240 101,240 102,240 103,239 103,239 104,239 105,238 105,238 106,237 107,237 108,236 108,235 109,235 110,234 110,233 111,233 112,232 113,231 113,230 114,229 115,228 116,227 116,226 117,225 118,224 118,223 119,222 120,220 121,219 121,218 122,216 123,215 123,213 124,212 125,210 126,208 126,206 127,204 128,202 128,200 129,198 130,196 131,194 131,192 132,190 133,187 133,185 134,182 135,180 136,177 136,174 137,172 138,169 139,166 139,163 140,161 141,158 141,155 142,152 143,149 144,146 144,142 145,139 146,136 146,133 147,130 148,127 149,124 149,121 150,117 151,114 151,111 152,108 153,105 154,102 154,99 155,96 156,93 157,90 157,87 158,84 159,82 159,79 160,76 161,74 162,71 162,69 163,67 164,64 164,62 165,60 166,58 167,56 167,54 168,53 169,51 169,49 170,48 171,46 172,45 172,44 173,43 174,42 175,41 175,40 176,39 177,39 177,38 178,38 179,37 180,37 180,37 181,36 182,36 182,36 183,36 184,36 185,37 185,37 186,37 187,37 187,38 188,38 189,39 190,39 190,40 191,40 192,41 192,41 193,42 194,43 195,43 195,44 196,45 197,46 198,46 198,47 199,48 200,49 200,49 201,50 202,51 203,52 203,53 204,53 205,54 205,55 206,56 207,57 208,57 208,58 209,59 210,60 210,61 211,61 212,62 213,63 213,64 214,64 215,65 216,66 216,67 217,67 218,68 218,69 219,70 220,70 221,71 221,72 222,73 223,73 223,74 224,75 225,76 226,76 226,77 227,78 228,79 228,80 229,81 230,81 231,82 231,83 232,84 233,85 233,86 234,87 235,88 236,89 236,90 237,91 238,92 239,93 239,94 240,95 241,97 241,98 242,99 243,100 244,101 244,103 245,104 246,105 246,107 247,108 248,110 249,111 249,113 250,114 251,116 251,117 252,119 253,121 254,122 254,124 255,126 256,127 257,129 257,131 258,132 259,134 259,136 260,138 261,140 262,141 262,143 263,145 264,147 264,149 265,150 266,152 267,154 267,156 268,158 269,159 269,161 270,163 271,165 272,166 272,168 273,170 274,171 275,173 275,174 276,176 277,177 277,179 278,180 279,182 280,183 280,184 281,186 282,187 282,188 283,189 284,190 285,192 285,193 286,194 287,195 287,196 288,196 289,197 290,198 290,199 291,200 292,200 292,201 293,202 294,202 295,203 295,203 296,204 297,204 298,205 298,205 299,205 300,206 300,206 301,206 302,207 303,207 303,207 304,207 305,207 305,208 306,208 307,208 308,208 308,208 309,208 310,208 310,209 311,209 312,209 313,209 313,209 314,209 315,209 316,209 316,209 317,210 318,210 318,210 319,210 320,210 321,210 321,211 322,211 323,211 323,211 324,212 325,212 326,212 326,212 327,213 328,213 328,213 329,214 330,214 331,214 331,215 332,215 333,215 333,216 334,216 335,217 336,217 336,217 337,218 338,218 339,219 339,219 340,220 341,220 341,221 342,221 343,221 344,222 344,222 345,223 346,223 346,224 347,224 348,224 349,225 349,225 350,226 351,226 351,227 352,227 353,227 354,228 354,228 355,228 356,229 357,229 357,230 358,230 359,230 359,231 360,231 361,231 362,232 362,232 363,232 364,232 364,233 365,233 366,233 367,234 367,234 368,234 369,234 369,235 370,235 371,235 372,235 372,236 373,236 374,236 375,236 375,236 376,237 377,237 377,237 378,237 379,238 380,238 380,238 381,238 382,238 382,239 383,239 384,239 385,239 385,239 386,240 387,240 387,240 388,240 389,240 390,240 390,241 391,241 392,241 392,241 393,241 394,241 395,241 395,242 396,242 397,242 398,242 398,242 399,242 400,242 400,242 401,243 402,243 403,243 403,243 404,243 405,243 405,243 406,243 407,243 408,243 408,243 409,244 410,244 410,244 411,244 412,244 413,244 413,244 414,244 415,244 416,244 416,244 417,244 418,244 418,244 419,244 420,244 421,244 421,244 422,244 423,244 423,244 424,244 425,244 426,244 426,244 427,244 428,244 428,244 429,244 430,244 431,244 431,244 432,244 433,244 434,244 434,244 75,244 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="214,244 214,64 "/>
</svg>

Before

Width:  |  Height:  |  Size: 7.6 KiB

@@ -1,88 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build:typical
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="441" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,441 86,441 "/>
<text x="77" y="388" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,388 86,388 "/>
<text x="77" y="335" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,335 86,335 "/>
<text x="77" y="281" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.08
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,281 86,281 "/>
<text x="77" y="228" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,228 86,228 "/>
<text x="77" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,175 86,175 "/>
<text x="77" y="121" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,121 86,121 "/>
<text x="77" y="68" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,68 86,68 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="122" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
802
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="122,473 122,478 "/>
<text x="254" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
804
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="254,473 254,478 "/>
<text x="387" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
806
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="387,473 387,478 "/>
<text x="520" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
808
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="520,473 520,478 "/>
<text x="653" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
810
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="653,473 653,478 "/>
<text x="786" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
812
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="786,473 786,478 "/>
<text x="918" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
814
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="918,473 918,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,471 92,470 93,469 95,469 97,468 98,467 100,466 102,466 103,465 105,464 107,463 109,463 110,462 112,461 114,460 115,459 117,459 119,458 120,457 122,456 124,455 125,454 127,453 129,452 131,451 132,450 134,449 136,448 137,447 139,446 141,445 142,444 144,443 146,442 147,440 149,439 151,438 153,437 154,435 156,434 158,433 159,431 161,430 163,428 164,427 166,426 168,424 169,423 171,421 173,420 175,419 176,417 178,416 180,414 181,413 183,412 185,410 186,409 188,407 190,406 191,404 193,403 195,401 197,399 198,398 200,396 202,394 203,393 205,391 207,389 208,388 210,386 212,384 214,383 215,381 217,379 219,378 220,376 222,375 224,373 225,372 227,370 229,369 230,368 232,366 234,365 236,364 237,362 239,361 241,360 242,358 244,357 246,355 247,354 249,352 251,351 252,349 254,347 256,345 258,343 259,341 261,339 263,337 264,335 266,332 268,330 269,327 271,325 273,322 274,320 276,317 278,314 280,312 281,309 283,306 285,304 286,301 288,298 290,296 291,293 293,290 295,288 296,285 298,283 300,280 302,278 303,276 305,273 307,271 308,269 310,266 312,264 313,262 315,259 317,257 318,255 320,252 322,250 324,248 325,245 327,243 329,241 330,238 332,236 334,234 335,231 337,229 339,227 341,225 342,222 344,220 346,218 347,216 349,213 351,211 352,209 354,206 356,204 357,202 359,200 361,197 363,195 364,193 366,190 368,188 369,186 371,183 373,181 374,179 376,176 378,174 379,172 381,169 383,167 385,165 386,162 388,160 390,158 391,156 393,154 395,152 396,149 398,147 400,145 401,143 403,141 405,140 407,138 408,136 410,134 412,133 413,131 415,130 417,128 418,127 420,126 422,125 423,124 425,123 427,123 429,122 430,121 432,121 434,121 435,120 437,120 439,119 440,119 442,119 444,118 445,118 447,117 449,117 451,116 452,115 454,115 456,114 457,113 459,112 461,111 462,110 464,109 466,108 468,108 469,107 471,106 473,105 474,104 476,103 478,102 479,101 481,100 483,99 484,98 486,97 488,97 490,96 491,95 493,95 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,95 510,95 512,96 513,97 515,98 517,99 518,100 520,101 522,102 523,103 525,104 527,106 528,107 530,108 532,110 534,111 535,112 537,114 539,115 540,116 542,117 544,119 545,120 547,121 549,122 550,123 552,124 554,125 556,126 557,127 559,127 561,128 562,128 564,129 566,130 567,130 569,131 571,131 573,132 574,132 576,133 578,133 579,134 581,135 583,136 584,137 586,139 588,140 589,142 591,143 593,145 595,147 596,149 598,152 600,154 601,156 603,159 605,161 606,164 608,167 610,169 611,172 613,174 615,177 617,179 618,182 620,184 622,187 623,189 625,191 627,194 628,196 630,198 632,200 633,202 635,205 637,207 639,209 640,211 642,213 644,215 645,217 647,219 649,221 650,223 652,225 654,227 655,229 657,231 659,233 661,235 662,238 664,240 666,242 667,244 669,246 671,248 672,250 674,252 676,254 677,256 679,258 681,260 683,262 684,264 686,266 688,268 689,270 691,272 693,275 694,277 696,279 698,281 700,284 701,286 703,289 705,291 706,293 708,296 710,298 711,301 713,303 715,306 716,308 718,311 720,313 722,315 723,318 725,320 727,322 728,324 730,326 732,328 733,330 735,332 737,334 738,336 740,338 742,340 744,341 745,343 747,345 749,347 750,348 752,350 754,352 755,354 757,355 759,357 760,359 762,360 764,362 766,363 767,365 769,367 771,368 772,369 774,371 776,372 777,374 779,375 781,376 782,378 784,379 786,380 788,382 789,383 791,385 793,386 794,388 796,389 798,391 799,393 801,394 803,396 804,398 806,400 808,401 810,403 811,405 813,407 815,409 816,411 818,413 820,414 821,416 823,418 825,420 827,421 828,423 830,424 832,426 833,427 835,429 837,430 838,431 840,432 842,433 843,434 845,435 847,436 849,437 850,438 852,439 854,440 855,441 857,442 859,443 860,444 862,444 864,445 865,446 867,447 869,448 871,448 872,449 874,450 876,451 877,452 879,452 881,453 882,454 884,455 886,455 887,456 889,457 891,458 893,458 894,459 896,460 898,460 899,461 901,462 903,462 904,463 906,463 908,464 909,465 911,465 913,466 915,466 916,467 918,468 920,468 921,469 923,469 925,470 926,471 928,471 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,427 166,426 168,424 169,423 171,421 173,420 175,419 176,417 178,416 180,414 181,413 183,412 185,410 186,409 188,407 190,406 191,404 193,403 195,401 197,399 198,398 200,396 202,394 203,393 205,391 207,389 208,388 210,386 212,384 214,383 215,381 217,379 219,378 220,376 222,375 224,373 225,372 227,370 229,369 230,368 232,366 234,365 236,364 237,362 239,361 241,360 242,358 244,357 246,355 247,354 249,352 251,351 252,349 254,347 256,345 258,343 259,341 261,339 263,337 264,335 266,332 268,330 269,327 271,325 273,322 274,320 276,317 278,314 280,312 281,309 283,306 285,304 286,301 288,298 290,296 291,293 293,290 295,288 296,285 298,283 300,280 302,278 303,276 305,273 307,271 308,269 310,266 312,264 313,262 315,259 317,257 318,255 320,252 322,250 324,248 325,245 327,243 329,241 330,238 332,236 334,234 335,231 337,229 339,227 341,225 342,222 344,220 346,218 347,216 349,213 351,211 352,209 354,206 356,204 357,202 359,200 361,197 363,195 364,193 366,190 368,188 369,186 371,183 373,181 374,179 376,176 378,174 379,172 381,169 383,167 385,165 386,162 388,160 390,158 391,156 393,154 395,152 396,149 398,147 400,145 401,143 403,141 405,140 407,138 408,136 410,134 412,133 413,131 415,130 417,128 418,127 420,126 422,125 423,124 425,123 427,123 429,122 430,121 432,121 434,121 435,120 437,120 439,119 440,119 442,119 444,118 445,118 447,117 449,117 451,116 452,115 454,115 456,114 457,113 459,112 461,111 462,110 464,109 466,108 468,108 469,107 471,106 473,105 474,104 476,103 478,102 479,101 481,100 483,99 484,98 486,97 488,97 490,96 491,95 493,95 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,95 510,95 512,96 513,97 515,98 517,99 518,100 520,101 522,102 523,103 525,104 527,106 528,107 530,108 532,110 534,111 535,112 537,114 539,115 540,116 542,117 544,119 545,120 547,121 549,122 550,123 552,124 554,125 556,126 557,127 559,127 561,128 562,128 564,129 566,130 567,130 569,131 571,131 573,132 574,132 576,133 578,133 579,134 581,135 583,136 584,137 586,139 588,140 589,142 591,143 593,145 595,147 596,149 598,152 600,154 601,156 603,159 605,161 606,164 608,167 610,169 611,172 613,174 615,177 617,179 618,182 620,184 622,187 623,189 625,191 627,194 628,196 630,198 632,200 633,202 635,205 637,207 639,209 640,211 642,213 644,215 645,217 647,219 649,221 650,223 652,225 654,227 655,229 657,231 659,233 661,235 662,238 664,240 666,242 667,244 669,246 671,248 672,250 674,252 676,254 677,256 679,258 681,260 683,262 684,264 686,266 688,268 689,270 691,272 693,275 694,277 696,279 698,281 700,284 701,286 703,289 705,291 706,293 708,296 710,298 711,301 713,303 715,306 716,308 718,311 720,313 722,315 723,318 725,320 727,322 728,324 730,326 732,328 733,330 735,332 737,334 738,336 740,338 742,340 744,341 745,343 747,345 749,347 750,348 752,350 754,352 755,354 757,355 759,357 760,359 762,360 764,362 766,363 767,365 769,367 771,368 772,369 774,371 776,372 777,374 779,375 781,376 782,378 784,379 786,380 788,382 789,383 791,385 793,386 794,388 796,389 798,391 799,393 801,394 803,396 804,398 806,400 808,401 810,403 811,405 813,407 815,409 816,411 818,413 820,414 821,416 823,418 825,420 827,421 828,423 830,424 832,426 833,427 835,429 837,430 838,431 840,432 842,433 843,434 845,435 847,436 849,437 850,438 852,439 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="502,473 502,94 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,116 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>below_cache_reuse Summary - Criterion.rs</title>
<style type="text/css">
body {
font: 14px Helvetica Neue;
text-rendering: optimizelegibility;
}
.body {
width: 960px;
margin: auto;
}
a:link {
color: #1F78B4;
text-decoration: none;
}
h2 {
font-size: 36px;
font-weight: 300;
}
h3 {
font-size: 24px;
font-weight: 300;
}
#footer {
height: 40px;
background: #888;
color: white;
font-size: larger;
font-weight: 300;
}
#footer a {
color: white;
text-decoration: underline;
}
#footer p {
text-align: center
}
</style>
</head>
<body>
<div class="body">
<h2>below_cache_reuse</h2>
<h3>Violin Plot</h3>
<a href="violin.svg">
<img src="violin.svg" alt="Violin Plot" />
</a>
<p>This chart shows the relationship between function/parameter and iteration time. The thickness of the shaded
region indicates the probability that a measurement of the given function/parameter would take a particular
length of time.</p>
<section class="plots">
<a href="../../below_cache_reuse/first_stroke_cache_build/report/index.html">
<h4>below_cache_reuse/first_stroke_cache_build</h4>
</a>
<table width="100%">
<tbody>
<tr>
<td>
<a href="../../below_cache_reuse/first_stroke_cache_build/report/pdf.svg">
<img src="../../below_cache_reuse/first_stroke_cache_build/report/pdf_small.svg" alt="PDF of Slope" width="450"
height="300" />
</a>
</td>
<td>
<a href="../../below_cache_reuse/first_stroke_cache_build/report/iteration_times.svg">
<img src="../../below_cache_reuse/first_stroke_cache_build/report/iteration_times_small.svg" alt="Iteration Times" width="450"
height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
<section class="plots">
<a href="../../below_cache_reuse/second_stroke_cache_reuse/report/index.html">
<h4>below_cache_reuse/second_stroke_cache_reuse</h4>
</a>
<table width="100%">
<tbody>
<tr>
<td>
<a href="../../below_cache_reuse/second_stroke_cache_reuse/report/pdf.svg">
<img src="../../below_cache_reuse/second_stroke_cache_reuse/report/pdf_small.svg" alt="PDF of Slope" width="450"
height="300" />
</a>
</td>
<td>
<a href="../../below_cache_reuse/second_stroke_cache_reuse/report/iteration_times.svg">
<img src="../../below_cache_reuse/second_stroke_cache_reuse/report/iteration_times_small.svg" alt="Iteration Times" width="450"
height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
</div>
<div id="footer">
<p>This report was generated by
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
library in Rust.</p>
</div>
</body>
</html>
@@ -1,65 +0,0 @@
<svg width="960" height="186" viewBox="0 0 960 186" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="5" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse: Violin plot
</text>
<text x="8" y="82" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 8, 82)">
Input
</text>
<text x="528" y="178" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="103,34 103,129 "/>
<text x="94" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="8.064516129032258" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="98,106 103,106 "/>
<text x="94" y="58" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="8.064516129032258" opacity="1" fill="#000000">
below_cache_reuse/first_stroke_cache_build
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="98,58 103,58 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="104,130 951,130 "/>
<text x="104" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="104,130 104,135 "/>
<text x="195" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="195,130 195,135 "/>
<text x="287" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
200.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="287,130 287,135 "/>
<text x="378" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
300.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="378,130 378,135 "/>
<text x="470" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
400.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="470,130 470,135 "/>
<text x="561" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
500.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="561,130 561,135 "/>
<text x="653" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
600.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="653,130 653,135 "/>
<text x="744" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
700.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="744,130 744,135 "/>
<text x="836" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
800.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="836,130 836,135 "/>
<text x="927" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
900.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="927,130 927,135 "/>
<polygon opacity="1" fill="#1F78B4" points="115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,105 116,104 116,104 116,104 116,104 116,104 116,104 116,104 116,104 116,104 116,104 116,104 116,104 116,104 116,103 116,103 116,103 116,103 116,103 116,103 116,103 116,103 116,102 116,102 116,102 116,102 116,102 116,102 116,101 116,101 116,101 116,101 116,101 116,100 116,100 116,100 116,100 116,99 116,99 116,99 116,99 116,98 116,98 116,98 116,98 116,97 116,97 116,97 116,96 116,96 116,96 116,95 116,95 116,95 116,94 116,94 116,94 116,93 116,93 116,93 116,93 116,92 116,92 116,92 116,91 116,91 116,91 116,90 116,90 116,90 116,89 116,89 116,89 116,88 116,88 116,88 116,87 116,87 116,87 117,87 117,86 117,86 117,86 117,86 117,85 117,85 117,85 117,85 117,84 117,84 117,84 117,84 117,84 117,83 117,83 117,83 117,83 117,83 117,83 117,83 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,82 117,83 117,83 117,83 117,83 117,83 117,83 117,83 117,84 117,84 117,84 117,84 117,84 117,85 117,85 117,85 117,85 117,85 117,86 117,86 117,86 117,86 117,87 117,87 117,87 117,88 117,88 117,88 117,88 117,89 117,89 117,89 117,89 117,90 117,90 117,90 117,91 117,91 117,91 117,91 117,92 117,92 117,92 117,92 117,93 117,93 117,93 117,93 117,94 117,94 117,94 117,94 117,94 117,95 117,95 117,95 117,95 117,95 117,96 117,96 117,96 117,96 117,96 117,96 117,97 117,97 117,97 117,97 117,97 117,97 117,98 117,98 117,98 117,98 117,98 117,98 117,98 117,98 117,99 117,99 117,99 117,99 117,99 117,99 117,99 117,99 117,99 117,100 117,100 117,100 117,100 117,100 117,100 117,100 117,100 117,100 117,100 117,100 117,100 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,101 117,102 117,102 117,102 117,102 117,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,102 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,103 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,104 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,105 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 119,106 119,106 119,106 119,106 119,106 119,106 119,106 115,106 "/>
<polygon opacity="1" fill="#1F78B4" points="115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 115,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,106 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,107 116,108 116,108 116,108 116,108 116,108 116,108 116,108 116,108 116,108 116,109 116,109 116,109 116,109 116,109 116,109 116,109 116,110 116,110 116,110 116,110 116,110 116,111 116,111 116,111 116,111 116,111 116,112 116,112 116,112 116,112 116,113 116,113 116,113 116,113 116,114 116,114 116,114 116,115 116,115 116,115 116,115 116,116 116,116 116,116 116,117 116,117 116,117 116,118 116,118 116,118 116,119 116,119 116,119 116,120 116,120 116,120 116,121 116,121 116,121 116,122 116,122 116,122 116,123 116,123 116,123 116,123 116,124 116,124 116,124 116,125 117,125 117,125 117,125 117,126 117,126 117,126 117,126 117,127 117,127 117,127 117,127 117,128 117,128 117,128 117,128 117,128 117,128 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,129 117,128 117,128 117,128 117,128 117,128 117,128 117,127 117,127 117,127 117,127 117,127 117,126 117,126 117,126 117,126 117,125 117,125 117,125 117,125 117,124 117,124 117,124 117,123 117,123 117,123 117,123 117,122 117,122 117,122 117,122 117,121 117,121 117,121 117,120 117,120 117,120 117,120 117,119 117,119 117,119 117,119 117,118 117,118 117,118 117,118 117,118 117,117 117,117 117,117 117,117 117,117 117,116 117,116 117,116 117,116 117,116 117,115 117,115 117,115 117,115 117,115 117,115 117,114 117,114 117,114 117,114 117,114 117,114 117,114 117,113 117,113 117,113 117,113 117,113 117,113 117,113 117,113 117,112 117,112 117,112 117,112 117,112 117,112 117,112 117,112 117,112 117,112 117,112 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,111 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 117,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,110 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,109 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,108 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,107 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 118,106 119,106 119,106 119,106 119,106 119,106 119,106 119,106 115,106 "/>
<polygon opacity="1" fill="#1F78B4" points="775,58 775,58 775,58 776,58 776,58 776,58 777,58 777,58 777,58 778,58 778,58 778,58 779,58 779,58 780,58 780,58 780,58 781,58 781,58 781,58 782,58 782,58 782,58 783,58 783,58 783,58 784,58 784,58 784,58 785,58 785,58 786,58 786,58 786,58 787,58 787,58 787,58 788,58 788,58 788,58 789,58 789,58 789,58 790,57 790,57 790,57 791,57 791,57 791,57 792,57 792,57 793,57 793,57 793,57 794,57 794,57 794,56 795,56 795,56 795,56 796,56 796,56 796,56 797,56 797,55 797,55 798,55 798,55 799,55 799,54 799,54 800,54 800,54 800,54 801,53 801,53 801,53 802,53 802,52 802,52 803,52 803,52 803,51 804,51 804,51 805,51 805,50 805,50 806,50 806,49 806,49 807,49 807,48 807,48 808,48 808,47 808,47 809,47 809,46 809,46 810,46 810,45 811,45 811,44 811,44 812,44 812,43 812,43 813,43 813,42 813,42 814,42 814,41 814,41 815,41 815,40 815,40 816,40 816,39 817,39 817,39 817,38 818,38 818,38 818,38 819,37 819,37 819,37 820,37 820,37 820,36 821,36 821,36 821,36 822,36 822,36 823,35 823,35 823,35 824,35 824,35 824,35 825,35 825,35 825,35 826,35 826,35 826,35 827,35 827,35 827,34 828,35 828,35 829,35 829,35 829,35 830,35 830,35 830,35 831,35 831,35 831,35 832,35 832,35 832,35 833,35 833,35 833,35 834,35 834,35 835,36 835,36 835,36 836,36 836,36 836,36 837,36 837,36 837,36 838,36 838,36 838,37 839,37 839,37 839,37 840,37 840,37 841,37 841,37 841,37 842,37 842,37 842,38 843,38 843,38 843,38 844,38 844,38 844,38 845,38 845,38 845,38 846,38 846,38 846,39 847,39 847,39 848,39 848,39 848,39 849,39 849,39 849,39 850,39 850,39 850,40 851,40 851,40 851,40 852,40 852,40 852,40 853,40 853,40 854,40 854,41 854,41 855,41 855,41 855,41 856,41 856,41 856,42 857,42 857,42 857,42 858,42 858,42 858,42 859,43 859,43 860,43 860,43 860,43 861,43 861,44 861,44 862,44 862,44 862,44 863,44 863,45 863,45 864,45 864,45 864,45 865,46 865,46 866,46 866,46 866,46 867,47 867,47 867,47 868,47 868,48 868,48 869,48 869,48 869,48 870,49 870,49 870,49 871,49 871,49 872,50 872,50 872,50 873,50 873,50 873,50 874,51 874,51 874,51 875,51 875,51 875,51 876,52 876,52 876,52 877,52 877,52 878,52 878,52 878,52 879,53 879,53 879,53 880,53 880,53 880,53 881,53 881,53 881,53 882,53 882,53 882,53 883,54 883,54 884,54 884,54 884,54 885,54 885,54 885,54 886,54 886,54 886,54 887,54 887,54 887,54 888,54 888,54 888,54 889,54 889,54 890,54 890,54 890,54 891,54 891,54 891,54 892,54 892,54 892,54 893,54 893,54 893,54 894,54 894,54 894,54 895,54 895,54 896,54 896,54 896,54 897,54 897,54 897,55 898,55 898,55 898,55 899,55 899,55 899,55 900,55 900,55 900,55 901,55 901,55 901,55 902,55 902,55 903,55 903,55 903,55 904,55 904,55 904,55 905,55 905,55 905,56 906,56 906,56 906,56 907,56 907,56 907,56 908,56 908,56 909,56 909,56 909,56 910,56 910,56 910,56 911,56 911,56 911,56 912,56 912,56 912,56 913,57 913,57 913,57 914,57 914,57 915,57 915,57 915,57 916,57 916,57 916,57 917,57 917,57 917,57 918,57 918,57 918,57 919,57 919,57 919,57 920,57 920,57 921,57 921,57 921,57 922,57 922,57 922,57 923,57 923,57 923,57 924,57 924,57 924,58 925,58 925,58 925,58 926,58 926,58 927,58 927,58 927,58 928,58 928,58 928,58 929,58 929,58 929,58 930,58 930,58 930,58 931,58 931,58 931,58 932,58 932,58 933,58 933,58 933,58 934,58 934,58 934,58 935,58 935,58 935,58 936,58 936,58 936,58 937,58 937,58 937,58 938,58 938,58 939,58 939,58 939,58 940,58 940,58 940,58 941,58 941,58 941,58 942,58 942,58 942,58 943,58 943,58 943,58 944,58 944,58 945,58 945,58 945,58 946,58 946,58 946,58 947,58 947,58 947,58 948,58 948,58 948,58 949,58 949,58 949,58 950,58 950,58 951,58 951,58 775,58 "/>
<polygon opacity="1" fill="#1F78B4" points="775,58 775,58 775,58 776,58 776,58 776,58 777,58 777,58 777,58 778,58 778,58 778,58 779,58 779,58 780,58 780,58 780,58 781,58 781,58 781,58 782,58 782,58 782,58 783,58 783,58 783,58 784,58 784,58 784,58 785,59 785,59 786,59 786,59 786,59 787,59 787,59 787,59 788,59 788,59 788,59 789,59 789,59 789,59 790,59 790,59 790,59 791,59 791,59 791,59 792,59 792,60 793,60 793,60 793,60 794,60 794,60 794,60 795,60 795,60 795,60 796,61 796,61 796,61 797,61 797,61 797,61 798,61 798,62 799,62 799,62 799,62 800,62 800,63 800,63 801,63 801,63 801,64 802,64 802,64 802,64 803,65 803,65 803,65 804,65 804,66 805,66 805,66 805,67 806,67 806,67 806,68 807,68 807,68 807,69 808,69 808,69 808,70 809,70 809,70 809,71 810,71 810,71 811,72 811,72 811,72 812,73 812,73 812,73 813,74 813,74 813,75 814,75 814,75 814,76 815,76 815,76 815,77 816,77 816,77 817,77 817,78 817,78 818,78 818,79 818,79 819,79 819,79 819,80 820,80 820,80 820,80 821,80 821,81 821,81 822,81 822,81 823,81 823,81 823,81 824,81 824,82 824,82 825,82 825,82 825,82 826,82 826,82 826,82 827,82 827,82 827,82 828,82 828,82 829,82 829,82 829,82 830,82 830,82 830,82 831,82 831,82 831,82 832,82 832,81 832,81 833,81 833,81 833,81 834,81 834,81 835,81 835,81 835,81 836,81 836,81 836,81 837,80 837,80 837,80 838,80 838,80 838,80 839,80 839,80 839,80 840,80 840,80 841,79 841,79 841,79 842,79 842,79 842,79 843,79 843,79 843,79 844,79 844,79 844,78 845,78 845,78 845,78 846,78 846,78 846,78 847,78 847,78 848,78 848,78 848,78 849,77 849,77 849,77 850,77 850,77 850,77 851,77 851,77 851,77 852,77 852,76 852,76 853,76 853,76 854,76 854,76 854,76 855,76 855,76 855,75 856,75 856,75 856,75 857,75 857,75 857,75 858,74 858,74 858,74 859,74 859,74 860,74 860,73 860,73 861,73 861,73 861,73 862,73 862,72 862,72 863,72 863,72 863,72 864,71 864,71 864,71 865,71 865,71 866,70 866,70 866,70 867,70 867,70 867,69 868,69 868,69 868,69 869,69 869,68 869,68 870,68 870,68 870,68 871,67 871,67 872,67 872,67 872,67 873,66 873,66 873,66 874,66 874,66 874,66 875,65 875,65 875,65 876,65 876,65 876,65 877,65 877,64 878,64 878,64 878,64 879,64 879,64 879,64 880,64 880,64 880,63 881,63 881,63 881,63 882,63 882,63 882,63 883,63 883,63 884,63 884,63 884,63 885,63 885,63 885,63 886,63 886,63 886,63 887,63 887,63 887,62 888,62 888,62 888,62 889,62 889,62 890,62 890,62 890,62 891,62 891,62 891,62 892,62 892,62 892,62 893,62 893,62 893,62 894,62 894,62 894,62 895,62 895,62 896,62 896,62 896,62 897,62 897,62 897,62 898,62 898,62 898,62 899,62 899,62 899,62 900,62 900,62 900,62 901,62 901,62 901,62 902,61 902,61 903,61 903,61 903,61 904,61 904,61 904,61 905,61 905,61 905,61 906,61 906,61 906,61 907,61 907,61 907,61 908,61 908,61 909,61 909,60 909,60 910,60 910,60 910,60 911,60 911,60 911,60 912,60 912,60 912,60 913,60 913,60 913,60 914,60 914,60 915,60 915,60 915,60 916,60 916,60 916,60 917,60 917,60 917,60 918,60 918,59 918,59 919,59 919,59 919,59 920,59 920,59 921,59 921,59 921,59 922,59 922,59 922,59 923,59 923,59 923,59 924,59 924,59 924,59 925,59 925,59 925,59 926,59 926,59 927,59 927,59 927,59 928,59 928,59 928,59 929,59 929,59 929,59 930,59 930,59 930,59 931,59 931,59 931,59 932,59 932,59 933,59 933,59 933,59 934,59 934,58 934,58 935,58 935,58 935,58 936,58 936,58 936,58 937,58 937,58 937,58 938,58 938,58 939,58 939,58 939,58 940,58 940,58 940,58 941,58 941,58 941,58 942,58 942,58 942,58 943,58 943,58 943,58 944,58 944,58 945,58 945,58 945,58 946,58 946,58 946,58 947,58 947,58 947,58 948,58 948,58 948,58 949,58 949,58 949,58 950,58 950,58 951,58 951,58 775,58 "/>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

@@ -1 +0,0 @@
{"group_id":"below_cache_reuse","function_id":"second_stroke_cache_reuse","value_str":null,"throughput":null,"full_id":"below_cache_reuse/second_stroke_cache_reuse","directory_name":"below_cache_reuse/second_stroke_cache_reuse","title":"below_cache_reuse/second_stroke_cache_reuse"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14011367.892625,"upper_bound":14115720.443625},"point_estimate":14063016.8175,"standard_error":26654.954641667526},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":13967945.25,"upper_bound":14050139.375},"point_estimate":13988508.0,"standard_error":23631.406088061587},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":142833.86678919196,"upper_bound":270162.1470786631},"point_estimate":193013.01887333393,"standard_error":32270.259457605036},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":224947.85966065503,"upper_bound":302207.5182213088},"point_estimate":266302.887150464,"standard_error":19729.233950716913}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0],"times":[53700467.0,54920518.0,55620742.0,55401828.0,56275616.0,56281127.0,55566845.0,57638433.0,55384168.0,56459830.0,55420778.0,55976192.0,55741099.0,58163455.0,58010257.0,57765430.0,55514508.0,56145854.0,57707338.0,56934870.0,56425730.0,55879764.0,56594316.0,55599331.0,56752996.0,56198005.0,55788767.0,56112775.0,55735305.0,55828801.0,54752868.0,55902707.0,54720836.0,56977682.0,55772899.0,55189105.0,55886251.0,55921354.0,56790773.0,55780122.0,55923160.0,55955315.0,56248256.0,54234083.0,56786365.0,54912957.0,56596124.0,54846407.0,56152859.0,55199440.0,57566823.0,55111440.0,57800400.0,55871781.0,59184692.0,57091628.0,55983390.0,55610283.0,56448828.0,56935160.0,55778031.0,55952749.0,55549556.0,55570569.0,55306819.0,57889433.0,57329625.0,58419235.0,55339956.0,57293029.0,56116090.0,55522431.0,57023081.0,55878478.0,55865568.0,54848641.0,58151349.0,58082040.0,58515454.0,56809313.0,56407775.0,58512002.0,55827513.0,56025264.0,55734745.0,55915356.0,57133267.0,56393244.0,55400787.0,54980254.0,55623337.0,58793969.0,55419158.0,55296670.0,55445802.0,56141139.0,55945852.0,58614479.0,56326723.0,56328811.0]}
@@ -1 +0,0 @@
[12973082.0,13432745.75,14658515.75,15118179.5]
@@ -1 +0,0 @@
{"group_id":"below_cache_reuse","function_id":"second_stroke_cache_reuse","value_str":null,"throughput":null,"full_id":"below_cache_reuse/second_stroke_cache_reuse","directory_name":"below_cache_reuse/second_stroke_cache_reuse","title":"below_cache_reuse/second_stroke_cache_reuse"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14488632.766375,"upper_bound":14661973.6175},"point_estimate":14573274.1025,"standard_error":44333.11722230234},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14410274.0,"upper_bound":14557348.625},"point_estimate":14450582.625,"standard_error":39224.00761103059},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":233399.4128063321,"upper_bound":439276.41884190927},"point_estimate":306014.56496715546,"standard_error":53814.48743505519},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":360937.87698428595,"upper_bound":507599.9889355485},"point_estimate":440183.1426105533,"standard_error":37275.52487032545}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0],"times":[57628913.0,58353908.0,56605650.0,57799624.0,58686849.0,55946393.0,56337845.0,55760868.0,56805002.0,57785389.0,56243017.0,58632749.0,57777417.0,57669559.0,56481193.0,57622070.0,57008318.0,56020679.0,56526513.0,57005853.0,56835596.0,57769094.0,56981517.0,56413875.0,56606509.0,58315868.0,57292684.0,57606731.0,59973906.0,63480721.0,62956347.0,61553983.0,62547651.0,59501308.0,62336152.0,57703451.0,57770279.0,57644664.0,58859858.0,62795382.0,62485666.0,58384144.0,59412088.0,59063185.0,58090574.0,58024579.0,57805037.0,60392763.0,58612125.0,56935410.0,58036047.0,58006286.0,57653279.0,57419211.0,58474392.0,60981794.0,57524070.0,61457181.0,57062106.0,57196936.0,58149191.0,57212231.0,57218615.0,57199377.0,59284978.0,57654495.0,56726059.0,59452210.0,59401486.0,58142921.0,60388321.0,56939117.0,61250168.0,56574771.0,57480802.0,58339161.0,59788369.0,58040318.0,57605241.0,58641391.0,56198499.0,59943735.0,58055631.0,59239610.0,58438516.0,58443994.0,60022111.0,57200925.0,56627532.0,57906487.0,57022995.0,57505197.0,59163050.0,54391122.0,58338005.0,61624038.0,56429249.0,58442056.0,57614149.0,60553260.0]}
@@ -1 +0,0 @@
[12847115.0625,13568961.09375,15493883.84375,16215729.875]
@@ -1 +0,0 @@
{"group_id":"below_cache_reuse","function_id":"second_stroke_cache_reuse","value_str":null,"throughput":null,"full_id":"below_cache_reuse/second_stroke_cache_reuse","directory_name":"below_cache_reuse/second_stroke_cache_reuse","title":"below_cache_reuse/second_stroke_cache_reuse"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14488632.766375,"upper_bound":14661973.6175},"point_estimate":14573274.1025,"standard_error":44333.11722230234},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":14410274.0,"upper_bound":14557348.625},"point_estimate":14450582.625,"standard_error":39224.00761103059},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":233399.4128063321,"upper_bound":439276.41884190927},"point_estimate":306014.56496715546,"standard_error":53814.48743505519},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":360937.87698428595,"upper_bound":507599.9889355485},"point_estimate":440183.1426105533,"standard_error":37275.52487032545}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0],"times":[57628913.0,58353908.0,56605650.0,57799624.0,58686849.0,55946393.0,56337845.0,55760868.0,56805002.0,57785389.0,56243017.0,58632749.0,57777417.0,57669559.0,56481193.0,57622070.0,57008318.0,56020679.0,56526513.0,57005853.0,56835596.0,57769094.0,56981517.0,56413875.0,56606509.0,58315868.0,57292684.0,57606731.0,59973906.0,63480721.0,62956347.0,61553983.0,62547651.0,59501308.0,62336152.0,57703451.0,57770279.0,57644664.0,58859858.0,62795382.0,62485666.0,58384144.0,59412088.0,59063185.0,58090574.0,58024579.0,57805037.0,60392763.0,58612125.0,56935410.0,58036047.0,58006286.0,57653279.0,57419211.0,58474392.0,60981794.0,57524070.0,61457181.0,57062106.0,57196936.0,58149191.0,57212231.0,57218615.0,57199377.0,59284978.0,57654495.0,56726059.0,59452210.0,59401486.0,58142921.0,60388321.0,56939117.0,61250168.0,56574771.0,57480802.0,58339161.0,59788369.0,58040318.0,57605241.0,58641391.0,56198499.0,59943735.0,58055631.0,59239610.0,58438516.0,58443994.0,60022111.0,57200925.0,56627532.0,57906487.0,57022995.0,57505197.0,59163050.0,54391122.0,58338005.0,61624038.0,56429249.0,58442056.0,57614149.0,60553260.0]}
@@ -1 +0,0 @@
[12847115.0625,13568961.09375,15493883.84375,16215729.875]
@@ -1,72 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse:MAD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (µs)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="417" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.002
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,417 86,417 "/>
<text x="77" y="348" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.004
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,348 86,348 "/>
<text x="77" y="280" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.006
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,280 86,280 "/>
<text x="77" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.008
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,211 86,211 "/>
<text x="77" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.01
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,142 86,142 "/>
<text x="77" y="74" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.012
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,74 86,74 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="219" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
250
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="219,473 219,478 "/>
<text x="387" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
300
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="387,473 387,478 "/>
<text x="555" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
350
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="555,473 555,478 "/>
<text x="723" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
400
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="723,473 723,478 "/>
<text x="891" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
450
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="891,473 891,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,470 90,469 92,468 93,467 95,466 97,466 98,465 100,464 102,463 103,462 105,461 107,460 109,459 110,458 112,457 114,457 115,456 117,455 119,454 120,453 122,453 124,452 125,451 127,450 129,450 131,449 132,448 134,447 136,447 137,446 139,445 141,444 142,443 144,442 146,441 147,440 149,439 151,438 153,437 154,436 156,434 158,433 159,431 161,430 163,428 164,427 166,425 168,423 169,422 171,420 173,418 175,416 176,415 178,413 180,411 181,409 183,407 185,406 186,404 188,402 190,400 191,399 193,397 195,396 197,394 198,393 200,391 202,390 203,388 205,387 207,385 208,384 210,383 212,381 214,380 215,378 217,377 219,375 220,373 222,372 224,370 225,368 227,366 229,364 230,361 232,359 234,356 236,354 237,351 239,348 241,345 242,342 244,339 246,336 247,333 249,329 251,326 252,324 254,321 256,318 258,316 259,313 261,311 263,309 264,307 266,306 268,304 269,303 271,302 273,301 274,300 276,299 278,299 280,298 281,298 283,297 285,297 286,296 288,295 290,295 291,294 293,293 295,292 296,291 298,290 300,288 302,287 303,285 305,283 307,280 308,278 310,275 312,273 313,270 315,267 317,264 318,261 320,258 322,255 324,252 325,249 327,246 329,243 330,241 332,238 334,236 335,233 337,231 339,229 341,227 342,225 344,223 346,221 347,219 349,218 351,216 352,214 354,213 356,211 357,209 359,208 361,206 363,204 364,202 366,200 368,198 369,195 371,193 373,190 374,187 376,184 378,181 379,177 381,173 383,169 385,165 386,160 388,156 390,151 391,146 393,141 395,136 396,130 398,125 400,120 401,116 403,111 405,107 407,103 408,100 410,97 412,95 413,94 415,93 417,93 418,94 420,95 422,98 423,101 425,106 427,111 429,117 430,123 432,131 434,139 435,147 437,156 439,166 440,175 442,185 444,195 445,205 447,214 449,224 451,233 452,242 454,251 456,259 457,267 459,274 461,281 462,287 464,293 466,298 468,302 469,306 471,310 473,313 474,315 476,317 478,319 479,320 481,321 483,322 484,323 486,323 488,323 490,323 491,323 493,323 495,323 496,323 498,323 500,323 501,323 503,323 505,323 506,324 508,324 510,324 512,325 513,326 515,326 517,327 518,327 520,328 522,329 523,330 525,331 527,332 528,333 530,334 532,335 534,336 535,337 537,338 539,340 540,341 542,342 544,344 545,345 547,347 549,348 550,349 552,351 554,352 556,354 557,355 559,356 561,358 562,359 564,360 566,361 567,362 569,363 571,364 573,365 574,366 576,367 578,368 579,369 581,369 583,370 584,371 586,371 588,372 589,372 591,373 593,373 595,373 596,373 598,373 600,373 601,373 603,372 605,372 606,371 608,370 610,369 611,368 613,366 615,365 617,363 618,361 620,359 622,357 623,355 625,353 627,351 628,348 630,346 632,343 633,341 635,339 637,337 639,335 640,333 642,331 644,329 645,328 647,327 649,327 650,326 652,326 654,326 655,327 657,328 659,329 661,331 662,332 664,334 666,337 667,339 669,341 671,344 672,347 674,349 676,352 677,355 679,358 681,360 683,362 684,365 686,367 688,369 689,371 691,373 693,374 694,376 696,377 698,379 700,380 701,381 703,382 705,384 706,385 708,386 710,387 711,388 713,389 715,390 716,391 718,392 720,393 722,394 723,396 725,397 727,398 728,399 730,399 732,400 733,401 735,402 737,403 738,403 740,404 742,404 744,405 745,405 747,406 749,406 750,406 752,406 754,407 755,407 757,407 759,408 760,408 762,409 764,409 766,410 767,410 769,411 771,412 772,413 774,414 776,415 777,417 779,418 781,419 782,421 784,422 786,424 788,425 789,426 791,428 793,429 794,430 796,432 798,433 799,434 801,435 803,436 804,437 806,437 808,438 810,439 811,440 813,440 815,441 816,441 818,442 820,442 821,443 823,443 825,444 827,444 828,445 830,445 832,446 833,447 835,447 837,448 838,448 840,449 842,449 843,450 845,451 847,451 849,452 850,452 852,453 854,453 855,454 857,454 859,454 860,455 862,455 864,456 865,456 867,456 869,456 871,457 872,457 874,457 876,458 877,458 879,458 881,458 882,459 884,459 886,459 887,460 889,460 891,460 893,461 894,461 896,461 898,462 899,462 901,463 903,463 904,464 906,464 908,465 909,466 911,466 913,467 915,467 916,468 918,468 920,469 921,469 923,470 925,471 926,471 928,472 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,427 166,425 168,423 169,422 171,420 173,418 175,416 176,415 178,413 180,411 181,409 183,407 185,406 186,404 188,402 190,400 191,399 193,397 195,396 197,394 198,393 200,391 202,390 203,388 205,387 207,385 208,384 210,383 212,381 214,380 215,378 217,377 219,375 220,373 222,372 224,370 225,368 227,366 229,364 230,361 232,359 234,356 236,354 237,351 239,348 241,345 242,342 244,339 246,336 247,333 249,329 251,326 252,324 254,321 256,318 258,316 259,313 261,311 263,309 264,307 266,306 268,304 269,303 271,302 273,301 274,300 276,299 278,299 280,298 281,298 283,297 285,297 286,296 288,295 290,295 291,294 293,293 295,292 296,291 298,290 300,288 302,287 303,285 305,283 307,280 308,278 310,275 312,273 313,270 315,267 317,264 318,261 320,258 322,255 324,252 325,249 327,246 329,243 330,241 332,238 334,236 335,233 337,231 339,229 341,227 342,225 344,223 346,221 347,219 349,218 351,216 352,214 354,213 356,211 357,209 359,208 361,206 363,204 364,202 366,200 368,198 369,195 371,193 373,190 374,187 376,184 378,181 379,177 381,173 383,169 385,165 386,160 388,156 390,151 391,146 393,141 395,136 396,130 398,125 400,120 401,116 403,111 405,107 407,103 408,100 410,97 412,95 413,94 415,93 417,93 418,94 420,95 422,98 423,101 425,106 427,111 429,117 430,123 432,131 434,139 435,147 437,156 439,166 440,175 442,185 444,195 445,205 447,214 449,224 451,233 452,242 454,251 456,259 457,267 459,274 461,281 462,287 464,293 466,298 468,302 469,306 471,310 473,313 474,315 476,317 478,319 479,320 481,321 483,322 484,323 486,323 488,323 490,323 491,323 493,323 495,323 496,323 498,323 500,323 501,323 503,323 505,323 506,324 508,324 510,324 512,325 513,326 515,326 517,327 518,327 520,328 522,329 523,330 525,331 527,332 528,333 530,334 532,335 534,336 535,337 537,338 539,340 540,341 542,342 544,344 545,345 547,347 549,348 550,349 552,351 554,352 556,354 557,355 559,356 561,358 562,359 564,360 566,361 567,362 569,363 571,364 573,365 574,366 576,367 578,368 579,369 581,369 583,370 584,371 586,371 588,372 589,372 591,373 593,373 595,373 596,373 598,373 600,373 601,373 603,372 605,372 606,371 608,370 610,369 611,368 613,366 615,365 617,363 618,361 620,359 622,357 623,355 625,353 627,351 628,348 630,346 632,343 633,341 635,339 637,337 639,335 640,333 642,331 644,329 645,328 647,327 649,327 650,326 652,326 654,326 655,327 657,328 659,329 661,331 662,332 664,334 666,337 667,339 669,341 671,344 672,347 674,349 676,352 677,355 679,358 681,360 683,362 684,365 686,367 688,369 689,371 691,373 693,374 694,376 696,377 698,379 700,380 701,381 703,382 705,384 706,385 708,386 710,387 711,388 713,389 715,390 716,391 718,392 720,393 722,394 723,396 725,397 727,398 728,399 730,399 732,400 733,401 735,402 737,403 738,403 740,404 742,404 744,405 745,405 747,406 749,406 750,406 752,406 754,407 755,407 757,407 759,408 760,408 762,409 764,409 766,410 767,410 769,411 771,412 772,413 774,414 776,415 777,417 779,418 781,419 782,421 784,422 786,424 788,425 789,426 791,428 793,429 794,430 796,432 798,433 799,434 801,435 803,436 804,437 806,437 808,438 810,439 811,440 813,440 815,441 816,441 818,442 820,442 821,443 823,443 825,444 827,444 828,445 830,445 832,446 833,447 835,447 837,448 838,448 840,449 842,449 843,450 845,451 847,451 849,452 850,452 852,453 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="407,473 407,102 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,108 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse:SD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (µs)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="458" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.001
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,458 86,458 "/>
<text x="77" y="420" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.002
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,420 86,420 "/>
<text x="77" y="382" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.003
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,382 86,382 "/>
<text x="77" y="344" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.004
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,344 86,344 "/>
<text x="77" y="306" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.005
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,306 86,306 "/>
<text x="77" y="268" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.006
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,268 86,268 "/>
<text x="77" y="230" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.007
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,230 86,230 "/>
<text x="77" y="192" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.008
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,192 86,192 "/>
<text x="77" y="154" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.009
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,154 86,154 "/>
<text x="77" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.01
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,116 86,116 "/>
<text x="77" y="78" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.011
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,78 86,78 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="159" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
360
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="159,473 159,478 "/>
<text x="253" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
380
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="253,473 253,478 "/>
<text x="347" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
400
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="347,473 347,478 "/>
<text x="442" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
420
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="442,473 442,478 "/>
<text x="536" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
440
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="536,473 536,478 "/>
<text x="630" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
460
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="630,473 630,478 "/>
<text x="725" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
480
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="725,473 725,478 "/>
<text x="819" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
500
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="819,473 819,478 "/>
<text x="913" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
520
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="913,473 913,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,472 92,471 93,470 95,470 97,469 98,469 100,468 102,468 103,467 105,466 107,466 109,465 110,464 112,464 114,463 115,463 117,462 119,461 120,460 122,460 124,459 125,458 127,458 129,457 131,456 132,455 134,455 136,454 137,453 139,453 141,452 142,451 144,450 146,449 147,449 149,448 151,447 153,446 154,446 156,445 158,444 159,443 161,442 163,441 164,441 166,440 168,439 169,438 171,437 173,436 175,435 176,434 178,433 180,432 181,430 183,429 185,428 186,427 188,426 190,424 191,423 193,422 195,421 197,420 198,418 200,417 202,416 203,414 205,413 207,412 208,411 210,409 212,408 214,407 215,405 217,404 219,403 220,401 222,400 224,398 225,397 227,395 229,394 230,392 232,391 234,389 236,388 237,386 239,384 241,382 242,381 244,379 246,377 247,375 249,373 251,371 252,369 254,367 256,365 258,363 259,361 261,359 263,357 264,355 266,353 268,352 269,350 271,348 273,346 274,344 276,342 278,340 280,338 281,336 283,334 285,333 286,331 288,329 290,327 291,325 293,323 295,321 296,319 298,317 300,315 302,313 303,311 305,309 307,308 308,306 310,304 312,302 313,300 315,298 317,296 318,294 320,292 322,290 324,288 325,287 327,285 329,283 330,281 332,279 334,277 335,275 337,273 339,271 341,269 342,267 344,265 346,262 347,260 349,258 351,256 352,253 354,251 356,249 357,246 359,244 361,242 363,239 364,237 366,234 368,232 369,229 371,227 373,225 374,222 376,220 378,217 379,215 381,213 383,210 385,208 386,206 388,204 390,201 391,199 393,197 395,195 396,193 398,191 400,189 401,187 403,185 405,183 407,181 408,179 410,177 412,175 413,173 415,171 417,168 418,166 420,164 422,162 423,160 425,158 427,156 429,153 430,151 432,149 434,147 435,145 437,143 439,141 440,139 442,137 444,135 445,133 447,131 449,130 451,128 452,126 454,125 456,123 457,122 459,120 461,119 462,117 464,116 466,115 468,114 469,113 471,111 473,110 474,109 476,108 478,108 479,107 481,106 483,105 484,104 486,104 488,103 490,102 491,102 493,101 495,100 496,100 498,99 500,99 501,98 503,98 505,97 506,97 508,96 510,96 512,96 513,95 515,95 517,95 518,95 520,94 522,94 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,94 537,94 539,94 540,94 542,94 544,94 545,94 547,95 549,95 550,95 552,95 554,95 556,95 557,95 559,95 561,95 562,96 564,96 566,96 567,96 569,96 571,97 573,97 574,97 576,98 578,98 579,99 581,100 583,101 584,102 586,103 588,104 589,105 591,106 593,107 595,109 596,110 598,112 600,114 601,115 603,117 605,119 606,121 608,123 610,125 611,127 613,129 615,131 617,133 618,135 620,138 622,140 623,142 625,144 627,146 628,148 630,151 632,153 633,155 635,157 637,159 639,161 640,164 642,166 644,168 645,170 647,172 649,175 650,177 652,179 654,182 655,184 657,186 659,189 661,191 662,194 664,196 666,198 667,201 669,203 671,206 672,208 674,211 676,213 677,216 679,218 681,220 683,223 684,225 686,228 688,230 689,233 691,235 693,237 694,240 696,242 698,244 700,247 701,249 703,251 705,254 706,256 708,258 710,260 711,262 713,265 715,267 716,269 718,271 720,273 722,276 723,278 725,280 727,282 728,285 730,287 732,289 733,292 735,294 737,296 738,299 740,301 742,304 744,306 745,309 747,311 749,314 750,316 752,319 754,321 755,323 757,326 759,328 760,331 762,333 764,336 766,338 767,341 769,343 771,345 772,348 774,350 776,352 777,355 779,357 781,359 782,361 784,364 786,366 788,368 789,370 791,372 793,374 794,376 796,378 798,380 799,382 801,384 803,386 804,388 806,390 808,392 810,394 811,395 813,397 815,399 816,401 818,402 820,404 821,405 823,407 825,408 827,410 828,411 830,413 832,414 833,415 835,417 837,418 838,419 840,420 842,422 843,423 845,424 847,425 849,427 850,428 852,429 854,430 855,432 857,433 859,434 860,435 862,436 864,438 865,439 867,440 869,441 871,443 872,444 874,445 876,446 877,447 879,449 881,450 882,451 884,452 886,453 887,454 889,455 891,456 893,457 894,458 896,459 898,460 899,461 901,461 903,462 904,463 906,464 908,464 909,465 911,465 913,466 915,467 916,467 918,468 920,468 921,469 923,469 925,470 926,470 928,471 930,471 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,441 166,440 168,439 169,438 171,437 173,436 175,435 176,434 178,433 180,432 181,430 183,429 185,428 186,427 188,426 190,424 191,423 193,422 195,421 197,420 198,418 200,417 202,416 203,414 205,413 207,412 208,411 210,409 212,408 214,407 215,405 217,404 219,403 220,401 222,400 224,398 225,397 227,395 229,394 230,392 232,391 234,389 236,388 237,386 239,384 241,382 242,381 244,379 246,377 247,375 249,373 251,371 252,369 254,367 256,365 258,363 259,361 261,359 263,357 264,355 266,353 268,352 269,350 271,348 273,346 274,344 276,342 278,340 280,338 281,336 283,334 285,333 286,331 288,329 290,327 291,325 293,323 295,321 296,319 298,317 300,315 302,313 303,311 305,309 307,308 308,306 310,304 312,302 313,300 315,298 317,296 318,294 320,292 322,290 324,288 325,287 327,285 329,283 330,281 332,279 334,277 335,275 337,273 339,271 341,269 342,267 344,265 346,262 347,260 349,258 351,256 352,253 354,251 356,249 357,246 359,244 361,242 363,239 364,237 366,234 368,232 369,229 371,227 373,225 374,222 376,220 378,217 379,215 381,213 383,210 385,208 386,206 388,204 390,201 391,199 393,197 395,195 396,193 398,191 400,189 401,187 403,185 405,183 407,181 408,179 410,177 412,175 413,173 415,171 417,168 418,166 420,164 422,162 423,160 425,158 427,156 429,153 430,151 432,149 434,147 435,145 437,143 439,141 440,139 442,137 444,135 445,133 447,131 449,130 451,128 452,126 454,125 456,123 457,122 459,120 461,119 462,117 464,116 466,115 468,114 469,113 471,111 473,110 474,109 476,108 478,108 479,107 481,106 483,105 484,104 486,104 488,103 490,102 491,102 493,101 495,100 496,100 498,99 500,99 501,98 503,98 505,97 506,97 508,96 510,96 512,96 513,95 515,95 517,95 518,95 520,94 522,94 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,94 537,94 539,94 540,94 542,94 544,94 545,94 547,95 549,95 550,95 552,95 554,95 556,95 557,95 559,95 561,95 562,96 564,96 566,96 567,96 569,96 571,97 573,97 574,97 576,98 578,98 579,99 581,100 583,101 584,102 586,103 588,104 589,105 591,106 593,107 595,109 596,110 598,112 600,114 601,115 603,117 605,119 606,121 608,123 610,125 611,127 613,129 615,131 617,133 618,135 620,138 622,140 623,142 625,144 627,146 628,148 630,151 632,153 633,155 635,157 637,159 639,161 640,164 642,166 644,168 645,170 647,172 649,175 650,177 652,179 654,182 655,184 657,186 659,189 661,191 662,194 664,196 666,198 667,201 669,203 671,206 672,208 674,211 676,213 677,216 679,218 681,220 683,223 684,225 686,228 688,230 689,233 691,235 693,237 694,240 696,242 698,244 700,247 701,249 703,251 705,254 706,256 708,258 710,260 711,262 713,265 715,267 716,269 718,271 720,273 722,276 723,278 725,280 727,282 728,285 730,287 732,289 733,292 735,294 737,296 738,299 740,301 742,304 744,306 745,309 747,311 749,314 750,316 752,319 754,321 755,323 757,326 759,328 760,331 762,333 764,336 766,338 767,341 769,343 771,345 772,348 774,350 776,352 777,355 779,357 781,359 782,361 784,364 786,366 788,368 789,370 791,372 793,374 794,376 796,378 798,380 799,382 801,384 803,386 804,388 806,390 808,392 810,394 811,395 813,397 815,399 816,401 818,402 820,404 821,405 823,407 825,408 827,410 828,411 830,413 832,414 833,415 835,417 837,418 838,419 840,420 842,422 843,423 845,424 847,425 849,427 850,428 852,429 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="537,473 537,94 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,193 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>below_cache_reuse/second_stroke_cache_reuse - Criterion.rs</title>
<style type="text/css">
body {
font: 14px Helvetica Neue;
text-rendering: optimizelegibility;
}
.body {
width: 960px;
margin: auto;
}
th {
font-weight: 200
}
th,
td {
padding-right: 3px;
padding-bottom: 3px;
}
a:link {
color: #1F78B4;
text-decoration: none;
}
th.ci-bound {
opacity: 0.6
}
td.ci-bound {
opacity: 0.5
}
.stats {
width: 80%;
margin: auto;
display: flex;
}
.additional_stats {
flex: 0 0 60%
}
.additional_plots {
flex: 1
}
h2 {
font-size: 36px;
font-weight: 300;
}
h3 {
font-size: 24px;
font-weight: 300;
}
#footer {
height: 40px;
background: #888;
color: white;
font-size: larger;
font-weight: 300;
}
#footer a {
color: white;
text-decoration: underline;
}
#footer p {
text-align: center
}
</style>
</head>
<body>
<div class="body">
<h2>below_cache_reuse/second_stroke_cache_reuse</h2>
<div class="absolute">
<section class="plots">
<table width="100%">
<tbody>
<tr>
<td>
<a href="pdf.svg">
<img src="pdf_small.svg" alt="PDF of Slope" width="450" height="300" />
</a>
</td>
<td>
<a href="iteration_times.svg">
<img src="iteration_times_small.svg" alt="Iteration Times" width="450" height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
<section class="stats">
<div class="additional_stats">
<h4>Additional Statistics:</h4>
<table>
<thead>
<tr>
<th></th>
<th title="0.95 confidence level" class="ci-bound">Lower bound</th>
<th>Estimate</th>
<th title="0.95 confidence level" class="ci-bound">Upper bound</th>
</tr>
</thead>
<tbody>
<tr>
<td>R&#xb2;</td>
<td class="ci-bound">0.0157914</td>
<td>0.0163715</td>
<td class="ci-bound">0.0157366</td>
</tr>
<tr>
<td>Mean</td>
<td class="ci-bound">14.489 ms</td>
<td>14.573 ms</td>
<td class="ci-bound">14.662 ms</td>
</tr>
<tr>
<td title="Standard Deviation">Std. Dev.</td>
<td class="ci-bound">360.94 µs</td>
<td>440.18 µs</td>
<td class="ci-bound">507.60 µs</td>
</tr>
<tr>
<td>Median</td>
<td class="ci-bound">14.410 ms</td>
<td>14.451 ms</td>
<td class="ci-bound">14.557 ms</td>
</tr>
<tr>
<td title="Median Absolute Deviation">MAD</td>
<td class="ci-bound">233.40 µs</td>
<td>306.01 µs</td>
<td class="ci-bound">439.28 µs</td>
</tr>
</tbody>
</table>
</div>
<div class="additional_plots">
<h4>Additional Plots:</h4>
<ul>
<li>
<a href="typical.svg">Typical</a>
</li>
<li>
<a href="mean.svg">Mean</a>
</li>
<li>
<a href="SD.svg">Std. Dev.</a>
</li>
<li>
<a href="median.svg">Median</a>
</li>
<li>
<a href="MAD.svg">MAD</a>
</li>
</ul>
</div>
</section>
<section class="explanation">
<h4>Understanding this report:</h4>
<p>The plot on the left displays the average time per iteration for this benchmark. The shaded region
shows the estimated probability of an iteration taking a certain amount of time, while the line
shows the mean. Click on the plot for a larger view showing the outliers.</p>
<p>The plot on the right shows the average time per iteration for the samples. Each point
represents one sample.</p>
<p>See <a href="https://bheisler.github.io/criterion.rs/book/user_guide/command_line_output.html#additional-statistics">the
documentation</a> for more details on the additional statistics.</p>
</section>
</div>
</div>
<div id="footer">
<p>This report was generated by
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
library in Rust.</p>
</div>
</body>
</html>
@@ -1,184 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Average Iteration Time (ms)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="163" y1="472" x2="163" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="247" y1="472" x2="247" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="332" y1="472" x2="332" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="416" y1="472" x2="416" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="501" y1="472" x2="501" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="585" y1="472" x2="585" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="670" y1="472" x2="670" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="754" y1="472" x2="754" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="839" y1="472" x2="839" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="923" y1="472" x2="923" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="398" x2="932" y2="398"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="306" x2="932" y2="306"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="214" x2="932" y2="214"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="122" x2="932" y2="122"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="398" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,398 86,398 "/>
<text x="77" y="306" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,306 86,306 "/>
<text x="77" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,214 86,214 "/>
<text x="77" y="122" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,122 86,122 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="163" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="163,473 163,478 "/>
<text x="247" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="247,473 247,478 "/>
<text x="332" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="332,473 332,478 "/>
<text x="416" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="416,473 416,478 "/>
<text x="501" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="501,473 501,478 "/>
<text x="585" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="585,473 585,478 "/>
<text x="670" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="670,473 670,478 "/>
<text x="754" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="754,473 754,478 "/>
<text x="839" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="839,473 839,478 "/>
<text x="923" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="923,473 923,478 "/>
<circle cx="87" cy="323" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="95" cy="290" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="370" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="112" cy="315" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="120" cy="274" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="129" cy="401" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="137" cy="383" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="409" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="154" cy="361" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="163" cy="316" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="387" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="277" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="188" cy="316" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="196" cy="321" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="205" cy="376" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="213" cy="324" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="352" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="230" cy="397" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="239" cy="374" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="352" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="256" cy="360" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="264" cy="317" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="353" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="281" cy="379" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="289" cy="370" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="298" cy="292" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="306" cy="339" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="324" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="323" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="332" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="78" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="348" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="357" cy="97" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="374" cy="106" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="382" cy="320" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="391" cy="317" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="399" cy="323" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="267" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="85" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="425" cy="99" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="433" cy="288" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="441" cy="241" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="450" cy="257" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="458" cy="302" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="467" cy="305" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="475" cy="315" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="484" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="492" cy="278" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="501" cy="355" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="509" cy="304" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="517" cy="306" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="526" cy="322" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="534" cy="333" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="543" cy="284" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="551" cy="169" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="560" cy="328" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="568" cy="147" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="577" cy="349" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="585" cy="343" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="594" cy="299" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="602" cy="342" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="610" cy="342" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="619" cy="343" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="627" cy="247" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="636" cy="322" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="644" cy="365" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="653" cy="239" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="661" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="670" cy="300" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="678" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="686" cy="355" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="695" cy="156" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="703" cy="372" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="712" cy="330" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="720" cy="291" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="729" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="737" cy="304" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="746" cy="324" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="754" cy="277" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="763" cy="389" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="771" cy="217" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="779" cy="304" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="788" cy="249" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="796" cy="286" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="805" cy="286" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="813" cy="213" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="822" cy="343" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="830" cy="369" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="839" cy="310" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="847" cy="351" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="855" cy="329" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="864" cy="253" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="872" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="881" cy="291" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="889" cy="139" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="898" cy="379" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="906" cy="286" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="915" cy="324" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="923" cy="188" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<text x="132" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Sample
</text>
<circle cx="112" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,177 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Average Iteration Time (ms)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="107" y1="244" x2="107" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="143" y1="244" x2="143" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="179" y1="244" x2="179" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="215" y1="244" x2="215" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="250" y1="244" x2="250" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="286" y1="244" x2="286" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="322" y1="244" x2="322" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="358" y1="244" x2="358" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="394" y1="244" x2="394" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="430" y1="244" x2="430" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="204" x2="434" y2="204"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="154" x2="434" y2="154"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="103" x2="434" y2="103"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="53" x2="434" y2="53"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="204" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,204 74,204 "/>
<text x="65" y="154" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,154 74,154 "/>
<text x="65" y="103" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,103 74,103 "/>
<text x="65" y="53" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,53 74,53 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="107" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="107,245 107,250 "/>
<text x="143" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="143,245 143,250 "/>
<text x="179" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="179,245 179,250 "/>
<text x="215" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="215,245 215,250 "/>
<text x="250" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="250,245 250,250 "/>
<text x="286" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="286,245 286,250 "/>
<text x="322" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="322,245 322,250 "/>
<text x="358" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="358,245 358,250 "/>
<text x="394" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="394,245 394,250 "/>
<text x="430" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="430,245 430,250 "/>
<circle cx="75" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="78" cy="145" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="82" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="85" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="89" cy="136" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="92" cy="205" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="96" cy="195" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="100" cy="210" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="184" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="107" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="110" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="114" cy="138" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="118" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="121" cy="162" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="125" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="128" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="132" cy="179" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="136" cy="203" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="139" cy="191" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="143" cy="179" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="183" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="150" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="153" cy="179" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="157" cy="194" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="161" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="164" cy="146" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="168" cy="171" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="175" cy="104" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="15" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="182" cy="29" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="186" cy="64" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="189" cy="39" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="193" cy="116" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="197" cy="44" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="200" cy="161" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="204" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="207" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="211" cy="132" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="215" cy="33" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="218" cy="41" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="144" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="225" cy="118" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="229" cy="127" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="232" cy="151" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="236" cy="153" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="240" cy="158" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="243" cy="93" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="138" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="250" cy="180" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="254" cy="153" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="258" cy="153" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="261" cy="162" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="265" cy="168" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="268" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="78" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="276" cy="166" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="279" cy="66" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="283" cy="177" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="286" cy="174" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="290" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="293" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="297" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="301" cy="174" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="304" cy="121" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="308" cy="162" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="311" cy="186" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="117" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="319" cy="118" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="322" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="326" cy="93" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="329" cy="180" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="333" cy="72" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="337" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="167" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="344" cy="145" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="347" cy="109" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="351" cy="153" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="355" cy="164" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="358" cy="137" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="362" cy="199" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="105" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="369" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="372" cy="122" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="376" cy="143" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="380" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="383" cy="103" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="387" cy="174" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="390" cy="188" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="394" cy="156" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="398" cy="178" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="401" cy="166" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="405" cy="124" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="412" cy="145" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="62" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="419" cy="193" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="423" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="426" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="430" cy="89" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,108 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse:mean
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="450" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,450 86,450 "/>
<text x="77" y="405" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,405 86,405 "/>
<text x="77" y="360" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,360 86,360 "/>
<text x="77" y="315" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,315 86,315 "/>
<text x="77" y="270" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,270 86,270 "/>
<text x="77" y="225" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,225 86,225 "/>
<text x="77" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
7
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,180 86,180 "/>
<text x="77" y="135" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,135 86,135 "/>
<text x="77" y="90" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,90 86,90 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="129" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.48
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="129,473 129,478 "/>
<text x="209" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="209,473 209,478 "/>
<text x="288" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.52
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="288,473 288,478 "/>
<text x="368" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.54
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="368,473 368,478 "/>
<text x="448" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.56
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="448,473 448,478 "/>
<text x="528" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.58
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="528,473 528,478 "/>
<text x="608" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="608,473 608,478 "/>
<text x="687" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.62
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="687,473 687,478 "/>
<text x="767" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.64
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="767,473 767,478 "/>
<text x="847" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.66
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="847,473 847,478 "/>
<text x="927" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.68
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="927,473 927,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,470 92,470 93,469 95,468 97,468 98,467 100,466 102,465 103,465 105,464 107,463 109,463 110,462 112,461 114,460 115,460 117,459 119,458 120,457 122,456 124,456 125,455 127,454 129,453 131,452 132,451 134,450 136,449 137,448 139,447 141,446 142,445 144,444 146,443 147,442 149,441 151,440 153,439 154,437 156,436 158,435 159,434 161,433 163,431 164,430 166,429 168,427 169,426 171,424 173,423 175,421 176,420 178,418 180,417 181,415 183,414 185,412 186,410 188,409 190,407 191,405 193,404 195,402 197,400 198,398 200,397 202,395 203,393 205,391 207,390 208,388 210,386 212,384 214,383 215,381 217,379 219,377 220,376 222,374 224,372 225,370 227,368 229,367 230,365 232,363 234,361 236,359 237,358 239,356 241,354 242,352 244,350 246,348 247,346 249,344 251,342 252,340 254,338 256,336 258,334 259,332 261,330 263,328 264,326 266,324 268,322 269,320 271,317 273,315 274,313 276,311 278,309 280,306 281,304 283,302 285,299 286,297 288,295 290,292 291,290 293,287 295,285 296,282 298,279 300,277 302,274 303,271 305,269 307,266 308,263 310,261 312,258 313,255 315,253 317,250 318,248 320,245 322,243 324,240 325,238 327,236 329,233 330,231 332,229 334,226 335,224 337,222 339,220 341,218 342,216 344,213 346,211 347,209 349,207 351,205 352,203 354,201 356,199 357,198 359,196 361,194 363,192 364,190 366,189 368,187 369,185 371,183 373,182 374,180 376,178 378,176 379,174 381,172 383,170 385,168 386,166 388,164 390,162 391,160 393,157 395,155 396,153 398,150 400,148 401,145 403,143 405,140 407,138 408,135 410,133 412,130 413,128 415,125 417,123 418,121 420,119 422,117 423,115 425,113 427,111 429,109 430,108 432,106 434,105 435,104 437,103 439,102 440,101 442,101 444,100 445,100 447,99 449,99 451,99 452,99 454,99 456,98 457,98 459,98 461,98 462,98 464,98 466,98 468,98 469,98 471,98 473,98 474,97 476,97 478,97 479,97 481,96 483,96 484,96 486,95 488,95 490,95 491,94 493,94 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,94 510,95 512,95 513,95 515,96 517,96 518,97 520,98 522,98 523,99 525,100 527,101 528,101 530,102 532,103 534,104 535,105 537,106 539,106 540,107 542,108 544,109 545,110 547,111 549,112 550,113 552,114 554,115 556,116 557,117 559,118 561,119 562,120 564,121 566,123 567,124 569,125 571,127 573,128 574,129 576,131 578,132 579,134 581,136 583,137 584,139 586,141 588,143 589,145 591,147 593,149 595,151 596,153 598,155 600,157 601,159 603,162 605,164 606,166 608,168 610,170 611,173 613,175 615,177 617,179 618,181 620,184 622,186 623,188 625,190 627,192 628,194 630,196 632,198 633,200 635,202 637,204 639,206 640,207 642,209 644,211 645,213 647,215 649,217 650,219 652,222 654,224 655,226 657,228 659,230 661,232 662,235 664,237 666,239 667,242 669,244 671,246 672,249 674,251 676,253 677,256 679,258 681,260 683,263 684,265 686,267 688,270 689,272 691,274 693,277 694,279 696,281 698,284 700,286 701,288 703,290 705,293 706,295 708,297 710,299 711,301 713,304 715,306 716,308 718,310 720,312 722,314 723,316 725,318 727,320 728,322 730,324 732,326 733,328 735,330 737,332 738,334 740,336 742,337 744,339 745,341 747,343 749,345 750,347 752,349 754,351 755,352 757,354 759,356 760,358 762,360 764,362 766,363 767,365 769,367 771,369 772,370 774,372 776,373 777,375 779,376 781,378 782,379 784,381 786,382 788,384 789,385 791,387 793,388 794,390 796,391 798,393 799,395 801,396 803,398 804,399 806,401 808,402 810,404 811,406 813,407 815,409 816,410 818,412 820,413 821,415 823,416 825,418 827,419 828,420 830,422 832,423 833,424 835,426 837,427 838,428 840,429 842,430 843,432 845,433 847,434 849,435 850,436 852,437 854,438 855,439 857,440 859,441 860,442 862,442 864,443 865,444 867,445 869,446 871,447 872,448 874,449 876,450 877,450 879,451 881,452 882,453 884,454 886,455 887,456 889,456 891,457 893,458 894,459 896,459 898,460 899,461 901,462 903,462 904,463 906,464 908,464 909,465 911,466 913,466 915,467 916,468 918,468 920,469 921,469 923,470 925,470 926,471 928,471 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,430 166,429 168,427 169,426 171,424 173,423 175,421 176,420 178,418 180,417 181,415 183,414 185,412 186,410 188,409 190,407 191,405 193,404 195,402 197,400 198,398 200,397 202,395 203,393 205,391 207,390 208,388 210,386 212,384 214,383 215,381 217,379 219,377 220,376 222,374 224,372 225,370 227,368 229,367 230,365 232,363 234,361 236,359 237,358 239,356 241,354 242,352 244,350 246,348 247,346 249,344 251,342 252,340 254,338 256,336 258,334 259,332 261,330 263,328 264,326 266,324 268,322 269,320 271,317 273,315 274,313 276,311 278,309 280,306 281,304 283,302 285,299 286,297 288,295 290,292 291,290 293,287 295,285 296,282 298,279 300,277 302,274 303,271 305,269 307,266 308,263 310,261 312,258 313,255 315,253 317,250 318,248 320,245 322,243 324,240 325,238 327,236 329,233 330,231 332,229 334,226 335,224 337,222 339,220 341,218 342,216 344,213 346,211 347,209 349,207 351,205 352,203 354,201 356,199 357,198 359,196 361,194 363,192 364,190 366,189 368,187 369,185 371,183 373,182 374,180 376,178 378,176 379,174 381,172 383,170 385,168 386,166 388,164 390,162 391,160 393,157 395,155 396,153 398,150 400,148 401,145 403,143 405,140 407,138 408,135 410,133 412,130 413,128 415,125 417,123 418,121 420,119 422,117 423,115 425,113 427,111 429,109 430,108 432,106 434,105 435,104 437,103 439,102 440,101 442,101 444,100 445,100 447,99 449,99 451,99 452,99 454,99 456,98 457,98 459,98 461,98 462,98 464,98 466,98 468,98 469,98 471,98 473,98 474,97 476,97 478,97 479,97 481,96 483,96 484,96 486,95 488,95 490,95 491,94 493,94 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,94 510,95 512,95 513,95 515,96 517,96 518,97 520,98 522,98 523,99 525,100 527,101 528,101 530,102 532,103 534,104 535,105 537,106 539,106 540,107 542,108 544,109 545,110 547,111 549,112 550,113 552,114 554,115 556,116 557,117 559,118 561,119 562,120 564,121 566,123 567,124 569,125 571,127 573,128 574,129 576,131 578,132 579,134 581,136 583,137 584,139 586,141 588,143 589,145 591,147 593,149 595,151 596,153 598,155 600,157 601,159 603,162 605,164 606,166 608,168 610,170 611,173 613,175 615,177 617,179 618,181 620,184 622,186 623,188 625,190 627,192 628,194 630,196 632,198 633,200 635,202 637,204 639,206 640,207 642,209 644,211 645,213 647,215 649,217 650,219 652,222 654,224 655,226 657,228 659,230 661,232 662,235 664,237 666,239 667,242 669,244 671,246 672,249 674,251 676,253 677,256 679,258 681,260 683,263 684,265 686,267 688,270 689,272 691,274 693,277 694,279 696,281 698,284 700,286 701,288 703,290 705,293 706,295 708,297 710,299 711,301 713,304 715,306 716,308 718,310 720,312 722,314 723,316 725,318 727,320 728,322 730,324 732,326 733,328 735,330 737,332 738,334 740,336 742,337 744,339 745,341 747,343 749,345 750,347 752,349 754,351 755,352 757,354 759,356 760,358 762,360 764,362 766,363 767,365 769,367 771,369 772,370 774,372 776,373 777,375 779,376 781,378 782,379 784,381 786,382 788,384 789,385 791,387 793,388 794,390 796,391 798,393 799,395 801,396 803,398 804,399 806,401 808,402 810,404 811,406 813,407 815,409 816,410 818,412 820,413 821,415 823,416 825,418 827,419 828,420 830,422 832,423 833,424 835,426 837,427 838,428 840,429 842,430 843,432 845,433 847,434 849,435 850,436 852,437 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="501,473 501,94 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,84 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse:median
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="402" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,402 86,402 "/>
<text x="77" y="330" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,330 86,330 "/>
<text x="77" y="259" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,259 86,259 "/>
<text x="77" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,187 86,187 "/>
<text x="77" y="116" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
25
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,116 86,116 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="115" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="115,473 115,478 "/>
<text x="209" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.42
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="209,473 209,478 "/>
<text x="303" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.44
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="303,473 303,478 "/>
<text x="397" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.46
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="397,473 397,478 "/>
<text x="491" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.48
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="491,473 491,478 "/>
<text x="585" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="585,473 585,478 "/>
<text x="679" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.52
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="679,473 679,478 "/>
<text x="773" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.54
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="773,473 773,478 "/>
<text x="867" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.56
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="867,473 867,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,471 92,471 93,471 95,470 97,470 98,469 100,469 102,468 103,468 105,467 107,466 109,465 110,464 112,463 114,462 115,461 117,459 119,458 120,456 122,455 124,453 125,451 127,450 129,448 131,446 132,444 134,441 136,439 137,437 139,434 141,432 142,429 144,426 146,423 147,420 149,417 151,414 153,411 154,408 156,404 158,401 159,398 161,394 163,391 164,388 166,385 168,382 169,380 171,377 173,375 175,373 176,372 178,370 180,370 181,369 183,369 185,369 186,369 188,370 190,371 191,373 193,374 195,376 197,378 198,380 200,382 202,384 203,386 205,388 207,390 208,392 210,394 212,396 214,398 215,400 217,401 219,403 220,404 222,405 224,407 225,407 227,408 229,409 230,410 232,410 234,411 236,411 237,411 239,411 241,411 242,411 244,411 246,411 247,411 249,411 251,410 252,410 254,409 256,409 258,408 259,407 261,407 263,406 264,405 266,404 268,402 269,401 271,399 273,398 274,395 276,393 278,390 280,387 281,383 283,378 285,373 286,366 288,359 290,352 291,343 293,333 295,323 296,312 298,299 300,287 302,273 303,259 305,245 307,230 308,216 310,201 312,187 313,173 315,160 317,147 318,136 320,126 322,117 324,109 325,102 327,97 329,94 330,92 332,92 334,93 335,95 337,100 339,105 341,112 342,120 344,129 346,140 347,151 349,163 351,176 352,190 354,204 356,218 357,233 359,248 361,263 363,278 364,292 366,306 368,319 369,332 371,344 373,355 374,365 376,374 378,383 379,390 381,396 383,402 385,406 386,409 388,412 390,413 391,414 393,415 395,415 396,414 398,413 400,412 401,411 403,409 405,408 407,407 408,406 410,405 412,405 413,405 415,405 417,406 418,407 420,408 422,410 423,412 425,414 427,416 429,419 430,421 432,423 434,425 435,427 437,429 439,430 440,431 442,431 444,431 445,431 447,430 449,429 451,428 452,426 454,424 456,421 457,419 459,416 461,413 462,411 464,408 466,406 468,404 469,402 471,401 473,400 474,399 476,399 478,399 479,400 481,401 483,403 484,405 486,407 488,409 490,412 491,415 493,417 495,420 496,422 498,425 500,427 501,429 503,430 505,431 506,432 508,433 510,433 512,432 513,432 515,431 517,429 518,428 520,426 522,425 523,423 525,421 527,419 528,418 530,416 532,415 534,414 535,413 537,413 539,413 540,413 542,413 544,414 545,415 547,416 549,418 550,419 552,420 554,422 556,423 557,424 559,425 561,425 562,426 564,425 566,425 567,423 569,422 571,419 573,417 574,413 576,409 578,404 579,399 581,394 583,387 584,381 586,374 588,366 589,359 591,351 593,343 595,335 596,327 598,318 600,310 601,303 603,295 605,288 606,281 608,275 610,269 611,264 613,260 615,256 617,253 618,251 620,249 622,249 623,249 625,250 627,252 628,255 630,258 632,262 633,267 635,273 637,279 639,285 640,292 642,299 644,307 645,314 647,322 649,329 650,337 652,344 654,351 655,358 657,364 659,371 661,377 662,382 664,387 666,392 667,397 669,401 671,404 672,408 674,411 676,414 677,416 679,419 681,421 683,423 684,425 686,426 688,428 689,429 691,430 693,431 694,432 696,433 698,434 700,435 701,436 703,436 705,437 706,438 708,438 710,439 711,440 713,440 715,441 716,441 718,441 720,442 722,442 723,442 725,443 727,443 728,443 730,443 732,443 733,443 735,443 737,443 738,443 740,443 742,443 744,443 745,443 747,443 749,443 750,444 752,444 754,444 755,445 757,445 759,446 760,447 762,448 764,449 766,450 767,451 769,452 771,454 772,455 774,456 776,458 777,459 779,460 781,461 782,462 784,464 786,465 788,465 789,466 791,467 793,468 794,468 796,469 798,469 799,470 801,470 803,470 804,470 806,470 808,470 810,470 811,470 813,470 815,470 816,470 818,470 820,470 821,470 823,469 825,469 827,469 828,468 830,468 832,468 833,467 835,467 837,466 838,466 840,465 842,465 843,464 845,464 847,464 849,463 850,463 852,462 854,462 855,462 857,462 859,462 860,462 862,462 864,462 865,462 867,462 869,463 871,463 872,464 874,464 876,464 877,465 879,466 881,466 882,467 884,467 886,468 887,468 889,469 891,469 893,470 894,470 896,471 898,471 899,471 901,472 903,472 904,472 906,472 908,472 909,472 911,472 913,472 915,472 916,472 918,472 920,472 921,472 923,472 925,472 926,472 928,471 930,471 932,471 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,388 166,385 168,382 169,380 171,377 173,375 175,373 176,372 178,370 180,370 181,369 183,369 185,369 186,369 188,370 190,371 191,373 193,374 195,376 197,378 198,380 200,382 202,384 203,386 205,388 207,390 208,392 210,394 212,396 214,398 215,400 217,401 219,403 220,404 222,405 224,407 225,407 227,408 229,409 230,410 232,410 234,411 236,411 237,411 239,411 241,411 242,411 244,411 246,411 247,411 249,411 251,410 252,410 254,409 256,409 258,408 259,407 261,407 263,406 264,405 266,404 268,402 269,401 271,399 273,398 274,395 276,393 278,390 280,387 281,383 283,378 285,373 286,366 288,359 290,352 291,343 293,333 295,323 296,312 298,299 300,287 302,273 303,259 305,245 307,230 308,216 310,201 312,187 313,173 315,160 317,147 318,136 320,126 322,117 324,109 325,102 327,97 329,94 330,92 332,92 334,93 335,95 337,100 339,105 341,112 342,120 344,129 346,140 347,151 349,163 351,176 352,190 354,204 356,218 357,233 359,248 361,263 363,278 364,292 366,306 368,319 369,332 371,344 373,355 374,365 376,374 378,383 379,390 381,396 383,402 385,406 386,409 388,412 390,413 391,414 393,415 395,415 396,414 398,413 400,412 401,411 403,409 405,408 407,407 408,406 410,405 412,405 413,405 415,405 417,406 418,407 420,408 422,410 423,412 425,414 427,416 429,419 430,421 432,423 434,425 435,427 437,429 439,430 440,431 442,431 444,431 445,431 447,430 449,429 451,428 452,426 454,424 456,421 457,419 459,416 461,413 462,411 464,408 466,406 468,404 469,402 471,401 473,400 474,399 476,399 478,399 479,400 481,401 483,403 484,405 486,407 488,409 490,412 491,415 493,417 495,420 496,422 498,425 500,427 501,429 503,430 505,431 506,432 508,433 510,433 512,432 513,432 515,431 517,429 518,428 520,426 522,425 523,423 525,421 527,419 528,418 530,416 532,415 534,414 535,413 537,413 539,413 540,413 542,413 544,414 545,415 547,416 549,418 550,419 552,420 554,422 556,423 557,424 559,425 561,425 562,426 564,425 566,425 567,423 569,422 571,419 573,417 574,413 576,409 578,404 579,399 581,394 583,387 584,381 586,374 588,366 589,359 591,351 593,343 595,335 596,327 598,318 600,310 601,303 603,295 605,288 606,281 608,275 610,269 611,264 613,260 615,256 617,253 618,251 620,249 622,249 623,249 625,250 627,252 628,255 630,258 632,262 633,267 635,273 637,279 639,285 640,292 642,299 644,307 645,314 647,322 649,329 650,337 652,344 654,351 655,358 657,364 659,371 661,377 662,382 664,387 666,392 667,397 669,401 671,404 672,408 674,411 676,414 677,416 679,419 681,421 683,423 684,425 686,426 688,428 689,429 691,430 693,431 694,432 696,433 698,434 700,435 701,436 703,436 705,437 706,438 708,438 710,439 711,440 713,440 715,441 716,441 718,441 720,442 722,442 723,442 725,443 727,443 728,443 730,443 732,443 733,443 735,443 737,443 738,443 740,443 742,443 744,443 745,443 747,443 749,443 750,444 752,444 754,444 755,445 757,445 759,446 760,447 762,448 764,449 766,450 767,451 769,452 771,454 772,455 774,456 776,458 777,459 779,460 781,461 782,462 784,464 786,465 788,465 789,466 791,467 793,468 794,468 796,469 798,469 799,470 801,470 803,470 804,470 806,470 808,470 810,470 811,470 813,470 815,470 816,470 818,470 820,470 821,470 823,469 825,469 827,469 828,468 830,468 832,468 833,467 835,467 837,466 838,466 840,465 842,465 843,464 845,464 847,464 849,463 850,463 852,462 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="353,473 353,193 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,159 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Iterations
</text>
<text x="480" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="472" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,472 86,472 "/>
<text x="77" y="420" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,420 86,420 "/>
<text x="77" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,368 86,368 "/>
<text x="77" y="315" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,315 86,315 "/>
<text x="77" y="263" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,263 86,263 "/>
<text x="77" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,211 86,211 "/>
<text x="77" y="158" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,158 86,158 "/>
<text x="77" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,106 86,106 "/>
<text x="77" y="53" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,53 86,53 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 872,473 "/>
<text x="193" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
13.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="193,473 193,478 "/>
<text x="309" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="309,473 309,478 "/>
<text x="425" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="425,473 425,478 "/>
<text x="541" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="541,473 541,478 "/>
<text x="657" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="657,473 657,478 "/>
<text x="773" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="773,473 773,478 "/>
<text x="933" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(90, 933, 263)">
Density (a.u.)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,53 873,473 "/>
<text x="883" y="473" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,473 878,473 "/>
<text x="883" y="435" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,435 878,435 "/>
<text x="883" y="396" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,396 878,396 "/>
<text x="883" y="357" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,357 878,357 "/>
<text x="883" y="318" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,318 878,318 "/>
<text x="883" y="279" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,279 878,279 "/>
<text x="883" y="240" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,240 878,240 "/>
<text x="883" y="202" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.7
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,202 878,202 "/>
<text x="883" y="163" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,163 878,163 "/>
<text x="883" y="124" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,124 878,124 "/>
<text x="883" y="85" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,85 878,85 "/>
<polygon opacity="0.5" fill="#1F78B4" points="87,473 88,473 90,473 91,473 93,473 94,473 96,473 98,473 99,473 101,473 102,473 104,473 105,473 107,473 109,473 110,473 112,473 113,473 115,473 116,473 118,473 120,473 121,473 123,473 124,473 126,473 127,472 129,472 131,472 132,472 134,472 135,472 137,472 138,472 140,472 142,472 143,471 145,471 146,471 148,471 150,471 151,471 153,471 154,470 156,470 157,470 159,470 161,470 162,469 164,469 165,469 167,469 168,469 170,468 172,468 173,468 175,468 176,468 178,467 179,467 181,467 183,467 184,466 186,466 187,466 189,465 190,465 192,465 194,465 195,464 197,464 198,464 200,463 201,463 203,463 205,462 206,462 208,462 209,461 211,461 213,460 214,460 216,460 217,459 219,458 220,458 222,457 224,457 225,456 227,455 228,455 230,454 231,453 233,452 235,451 236,450 238,449 239,448 241,447 242,446 244,444 246,443 247,442 249,440 250,439 252,437 253,435 255,433 257,431 258,429 260,427 261,425 263,422 264,420 266,417 268,415 269,412 271,409 272,406 274,403 276,399 277,396 279,393 280,389 282,385 283,382 285,378 287,374 288,369 290,365 291,361 293,356 294,352 296,347 298,342 299,338 301,333 302,328 304,323 305,317 307,312 309,307 310,302 312,296 313,291 315,285 316,280 318,274 320,268 321,263 323,257 324,251 326,245 327,240 329,234 331,228 332,222 334,217 335,211 337,205 339,199 340,194 342,188 343,182 345,177 346,171 348,166 350,161 351,155 353,150 354,145 356,140 357,135 359,130 361,125 362,121 364,116 365,112 367,108 368,103 370,99 372,95 373,92 375,88 376,85 378,81 379,78 381,75 383,73 384,70 386,67 387,65 389,63 391,61 392,60 394,58 395,57 397,56 398,55 400,54 402,54 403,54 405,53 406,54 408,54 409,55 411,55 413,56 414,58 416,59 417,61 419,62 420,64 422,67 424,69 425,72 427,74 428,77 430,80 431,84 433,87 435,90 436,94 438,98 439,102 441,106 442,110 444,114 446,119 447,123 449,128 450,132 452,137 454,142 455,146 457,151 458,156 460,161 461,166 463,170 465,175 466,180 468,185 469,190 471,195 472,199 474,204 476,209 477,214 479,218 480,223 482,227 483,232 485,236 487,240 488,245 490,249 491,253 493,257 494,261 496,265 498,269 499,273 501,276 502,280 504,283 505,287 507,290 509,293 510,297 512,300 513,303 515,306 517,309 518,312 520,315 521,317 523,320 524,323 526,325 528,328 529,330 531,333 532,335 534,337 535,340 537,342 539,344 540,346 542,348 543,350 545,352 546,354 548,356 550,358 551,360 553,362 554,363 556,365 557,367 559,368 561,370 562,371 564,373 565,374 567,376 568,377 570,378 572,380 573,381 575,382 576,383 578,384 580,386 581,387 583,388 584,389 586,390 587,391 589,392 591,392 592,393 594,394 595,395 597,396 598,396 600,397 602,398 603,398 605,399 606,400 608,400 609,401 611,401 613,402 614,402 616,403 617,403 619,404 620,404 622,405 624,405 625,405 627,406 628,406 630,406 632,407 633,407 635,407 636,408 638,408 639,408 641,408 643,409 644,409 646,409 647,409 649,410 650,410 652,410 654,410 655,410 657,411 658,411 660,411 661,411 663,411 665,412 666,412 668,412 669,412 671,413 672,413 674,413 676,414 677,414 679,414 680,414 682,415 683,415 685,416 687,416 688,416 690,417 691,417 693,418 695,418 696,419 698,419 699,420 701,420 702,421 704,422 706,422 707,423 709,424 710,424 712,425 713,426 715,427 717,427 718,428 720,429 721,430 723,431 724,432 726,432 728,433 729,434 731,435 732,436 734,437 735,438 737,439 739,440 740,441 742,442 743,443 745,443 746,444 748,445 750,446 751,447 753,448 754,449 756,450 758,451 759,452 761,452 762,453 764,454 765,455 767,456 769,456 770,457 772,458 773,458 775,459 776,460 778,460 780,461 781,462 783,462 784,463 786,463 787,464 789,464 791,465 792,465 794,466 795,466 797,467 798,467 800,468 802,468 803,468 805,469 806,469 808,469 809,469 811,470 813,470 814,470 816,470 817,471 819,471 821,471 822,471 824,471 825,472 827,472 828,472 830,472 832,472 833,472 835,472 836,472 838,473 839,473 841,473 843,473 844,473 846,473 847,473 849,473 850,473 852,473 854,473 855,473 857,473 858,473 860,473 861,473 863,473 865,473 866,473 868,473 869,473 871,473 873,473 873,473 87,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="442,472 442,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="209,472 209,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="655,472 655,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="87,472 87,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="823,472 823,53 "/>
<circle cx="742" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="712" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="688" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="676" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="703" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="685" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="742" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="712" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="688" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="676" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="703" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="685" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<text x="776" y="228" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
PDF
</text>
<text x="776" y="243" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mean
</text>
<text x="776" y="258" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
&quot;Clean&quot; sample
</text>
<text x="776" y="273" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mild outliers
</text>
<text x="776" y="288" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Severe outliers
</text>
<rect x="746" y="228" width="20" height="10" opacity="0.5" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="746,248 766,248 "/>
<circle cx="756" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="756" cy="278" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="756" cy="293" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,48 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Density (a.u.)
</text>
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,244 74,244 "/>
<text x="65" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,206 74,206 "/>
<text x="65" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,167 74,167 "/>
<text x="65" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,129 74,129 "/>
<text x="65" y="90" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,90 74,90 "/>
<text x="65" y="52" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,52 74,52 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="176" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="176,245 176,250 "/>
<text x="282" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="282,245 282,250 "/>
<text x="388" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="388,245 388,250 "/>
<polygon opacity="0.25" fill="#1F78B4" points="75,244 75,244 76,244 77,244 77,244 78,244 79,244 80,244 80,244 81,244 82,244 82,244 83,244 84,244 85,244 85,244 86,244 87,244 87,244 88,244 89,244 90,244 90,244 91,244 92,244 92,244 93,244 94,244 95,244 95,244 96,244 97,244 98,244 98,244 99,244 100,244 100,243 101,243 102,243 103,243 103,243 104,243 105,243 105,243 106,243 107,243 108,243 108,243 109,243 110,242 110,242 111,242 112,242 113,242 113,242 114,242 115,242 116,242 116,241 117,241 118,241 118,241 119,241 120,241 121,241 121,241 122,240 123,240 123,240 124,240 125,240 126,240 126,240 127,239 128,239 128,239 129,239 130,239 131,238 131,238 132,238 133,238 133,238 134,237 135,237 136,237 136,236 137,236 138,236 139,236 139,235 140,235 141,234 141,234 142,233 143,233 144,232 144,232 145,231 146,231 146,230 147,229 148,229 149,228 149,227 150,226 151,225 151,225 152,224 153,223 154,221 154,220 155,219 156,218 157,217 157,215 158,214 159,212 159,211 160,209 161,208 162,206 162,204 163,203 164,201 164,199 165,197 166,195 167,193 167,191 168,189 169,186 169,184 170,182 171,180 172,177 172,175 173,172 174,170 175,167 175,165 176,162 177,159 177,157 178,154 179,151 180,148 180,146 181,143 182,140 182,137 183,134 184,131 185,129 185,126 186,123 187,120 187,117 188,114 189,111 190,109 190,106 191,103 192,100 192,98 193,95 194,92 195,89 195,87 196,84 197,82 198,79 198,77 199,74 200,72 200,70 201,67 202,65 203,63 203,61 204,59 205,57 205,55 206,53 207,52 208,50 208,49 209,47 210,46 210,44 211,43 212,42 213,41 213,40 214,39 215,39 216,38 216,37 217,37 218,37 218,36 219,36 220,36 221,36 221,37 222,37 223,37 223,38 224,38 225,39 226,40 226,41 227,42 228,43 228,44 229,45 230,47 231,48 231,50 232,51 233,53 233,55 234,56 235,58 236,60 236,62 237,64 238,66 239,69 239,71 240,73 241,75 241,78 242,80 243,82 244,85 244,87 245,89 246,92 246,94 247,97 248,99 249,102 249,104 250,106 251,109 251,111 252,113 253,116 254,118 254,120 255,122 256,125 257,127 257,129 258,131 259,133 259,135 260,137 261,139 262,141 262,143 263,145 264,147 264,148 265,150 266,152 267,154 267,155 268,157 269,158 269,160 270,161 271,163 272,164 272,166 273,167 274,168 275,170 275,171 276,172 277,174 277,175 278,176 279,177 280,178 280,179 281,180 282,181 282,182 283,183 284,184 285,185 285,186 286,187 287,188 287,189 288,190 289,191 290,192 290,192 291,193 292,194 292,195 293,195 294,196 295,197 295,197 296,198 297,199 298,199 298,200 299,200 300,201 300,201 301,202 302,202 303,203 303,203 304,204 305,204 305,205 306,205 307,206 308,206 308,206 309,207 310,207 310,207 311,208 312,208 313,208 313,208 314,209 315,209 316,209 316,209 317,210 318,210 318,210 319,210 320,211 321,211 321,211 322,211 323,211 323,211 324,212 325,212 326,212 326,212 327,212 328,212 328,212 329,212 330,213 331,213 331,213 332,213 333,213 333,213 334,213 335,213 336,213 336,214 337,214 338,214 339,214 339,214 340,214 341,214 341,214 342,214 343,215 344,215 344,215 345,215 346,215 346,215 347,216 348,216 349,216 349,216 350,216 351,217 351,217 352,217 353,217 354,218 354,218 355,218 356,218 357,219 357,219 358,219 359,220 359,220 360,220 361,221 362,221 362,222 363,222 364,222 364,223 365,223 366,224 367,224 367,225 368,225 369,225 369,226 370,226 371,227 372,227 372,228 373,228 374,229 375,229 375,230 376,230 377,231 377,231 378,231 379,232 380,232 380,233 381,233 382,234 382,234 383,234 384,235 385,235 385,236 386,236 387,236 387,237 388,237 389,237 390,238 390,238 391,238 392,239 392,239 393,239 394,240 395,240 395,240 396,240 397,241 398,241 398,241 399,241 400,241 400,242 401,242 402,242 403,242 403,242 404,242 405,243 405,243 406,243 407,243 408,243 408,243 409,243 410,243 410,243 411,243 412,244 413,244 413,244 414,244 415,244 416,244 416,244 417,244 418,244 418,244 419,244 420,244 421,244 421,244 422,244 423,244 423,244 424,244 425,244 426,244 426,244 427,244 428,244 428,244 429,244 430,244 431,244 431,244 432,244 433,244 434,244 434,244 75,244 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="237,244 237,64 "/>
</svg>

Before

Width:  |  Height:  |  Size: 6.7 KiB

@@ -1,108 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
below_cache_reuse/second_stroke_cache_reuse:typical
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="450" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,450 86,450 "/>
<text x="77" y="405" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,405 86,405 "/>
<text x="77" y="360" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,360 86,360 "/>
<text x="77" y="315" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,315 86,315 "/>
<text x="77" y="270" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,270 86,270 "/>
<text x="77" y="225" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,225 86,225 "/>
<text x="77" y="180" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
7
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,180 86,180 "/>
<text x="77" y="135" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,135 86,135 "/>
<text x="77" y="90" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,90 86,90 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="129" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.48
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="129,473 129,478 "/>
<text x="209" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="209,473 209,478 "/>
<text x="288" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.52
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="288,473 288,478 "/>
<text x="368" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.54
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="368,473 368,478 "/>
<text x="448" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.56
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="448,473 448,478 "/>
<text x="528" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.58
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="528,473 528,478 "/>
<text x="608" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="608,473 608,478 "/>
<text x="687" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.62
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="687,473 687,478 "/>
<text x="767" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.64
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="767,473 767,478 "/>
<text x="847" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.66
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="847,473 847,478 "/>
<text x="927" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.68
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="927,473 927,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,470 92,470 93,469 95,468 97,468 98,467 100,466 102,465 103,465 105,464 107,463 109,463 110,462 112,461 114,460 115,460 117,459 119,458 120,457 122,456 124,456 125,455 127,454 129,453 131,452 132,451 134,450 136,449 137,448 139,447 141,446 142,445 144,444 146,443 147,442 149,441 151,440 153,439 154,437 156,436 158,435 159,434 161,433 163,431 164,430 166,429 168,427 169,426 171,424 173,423 175,421 176,420 178,418 180,417 181,415 183,414 185,412 186,410 188,409 190,407 191,405 193,404 195,402 197,400 198,398 200,397 202,395 203,393 205,391 207,390 208,388 210,386 212,384 214,383 215,381 217,379 219,377 220,376 222,374 224,372 225,370 227,368 229,367 230,365 232,363 234,361 236,359 237,358 239,356 241,354 242,352 244,350 246,348 247,346 249,344 251,342 252,340 254,338 256,336 258,334 259,332 261,330 263,328 264,326 266,324 268,322 269,320 271,317 273,315 274,313 276,311 278,309 280,306 281,304 283,302 285,299 286,297 288,295 290,292 291,290 293,287 295,285 296,282 298,279 300,277 302,274 303,271 305,269 307,266 308,263 310,261 312,258 313,255 315,253 317,250 318,248 320,245 322,243 324,240 325,238 327,236 329,233 330,231 332,229 334,226 335,224 337,222 339,220 341,218 342,216 344,213 346,211 347,209 349,207 351,205 352,203 354,201 356,199 357,198 359,196 361,194 363,192 364,190 366,189 368,187 369,185 371,183 373,182 374,180 376,178 378,176 379,174 381,172 383,170 385,168 386,166 388,164 390,162 391,160 393,157 395,155 396,153 398,150 400,148 401,145 403,143 405,140 407,138 408,135 410,133 412,130 413,128 415,125 417,123 418,121 420,119 422,117 423,115 425,113 427,111 429,109 430,108 432,106 434,105 435,104 437,103 439,102 440,101 442,101 444,100 445,100 447,99 449,99 451,99 452,99 454,99 456,98 457,98 459,98 461,98 462,98 464,98 466,98 468,98 469,98 471,98 473,98 474,97 476,97 478,97 479,97 481,96 483,96 484,96 486,95 488,95 490,95 491,94 493,94 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,94 510,95 512,95 513,95 515,96 517,96 518,97 520,98 522,98 523,99 525,100 527,101 528,101 530,102 532,103 534,104 535,105 537,106 539,106 540,107 542,108 544,109 545,110 547,111 549,112 550,113 552,114 554,115 556,116 557,117 559,118 561,119 562,120 564,121 566,123 567,124 569,125 571,127 573,128 574,129 576,131 578,132 579,134 581,136 583,137 584,139 586,141 588,143 589,145 591,147 593,149 595,151 596,153 598,155 600,157 601,159 603,162 605,164 606,166 608,168 610,170 611,173 613,175 615,177 617,179 618,181 620,184 622,186 623,188 625,190 627,192 628,194 630,196 632,198 633,200 635,202 637,204 639,206 640,207 642,209 644,211 645,213 647,215 649,217 650,219 652,222 654,224 655,226 657,228 659,230 661,232 662,235 664,237 666,239 667,242 669,244 671,246 672,249 674,251 676,253 677,256 679,258 681,260 683,263 684,265 686,267 688,270 689,272 691,274 693,277 694,279 696,281 698,284 700,286 701,288 703,290 705,293 706,295 708,297 710,299 711,301 713,304 715,306 716,308 718,310 720,312 722,314 723,316 725,318 727,320 728,322 730,324 732,326 733,328 735,330 737,332 738,334 740,336 742,337 744,339 745,341 747,343 749,345 750,347 752,349 754,351 755,352 757,354 759,356 760,358 762,360 764,362 766,363 767,365 769,367 771,369 772,370 774,372 776,373 777,375 779,376 781,378 782,379 784,381 786,382 788,384 789,385 791,387 793,388 794,390 796,391 798,393 799,395 801,396 803,398 804,399 806,401 808,402 810,404 811,406 813,407 815,409 816,410 818,412 820,413 821,415 823,416 825,418 827,419 828,420 830,422 832,423 833,424 835,426 837,427 838,428 840,429 842,430 843,432 845,433 847,434 849,435 850,436 852,437 854,438 855,439 857,440 859,441 860,442 862,442 864,443 865,444 867,445 869,446 871,447 872,448 874,449 876,450 877,450 879,451 881,452 882,453 884,454 886,455 887,456 889,456 891,457 893,458 894,459 896,459 898,460 899,461 901,462 903,462 904,463 906,464 908,464 909,465 911,466 913,466 915,467 916,468 918,468 920,469 921,469 923,470 925,470 926,471 928,471 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,430 166,429 168,427 169,426 171,424 173,423 175,421 176,420 178,418 180,417 181,415 183,414 185,412 186,410 188,409 190,407 191,405 193,404 195,402 197,400 198,398 200,397 202,395 203,393 205,391 207,390 208,388 210,386 212,384 214,383 215,381 217,379 219,377 220,376 222,374 224,372 225,370 227,368 229,367 230,365 232,363 234,361 236,359 237,358 239,356 241,354 242,352 244,350 246,348 247,346 249,344 251,342 252,340 254,338 256,336 258,334 259,332 261,330 263,328 264,326 266,324 268,322 269,320 271,317 273,315 274,313 276,311 278,309 280,306 281,304 283,302 285,299 286,297 288,295 290,292 291,290 293,287 295,285 296,282 298,279 300,277 302,274 303,271 305,269 307,266 308,263 310,261 312,258 313,255 315,253 317,250 318,248 320,245 322,243 324,240 325,238 327,236 329,233 330,231 332,229 334,226 335,224 337,222 339,220 341,218 342,216 344,213 346,211 347,209 349,207 351,205 352,203 354,201 356,199 357,198 359,196 361,194 363,192 364,190 366,189 368,187 369,185 371,183 373,182 374,180 376,178 378,176 379,174 381,172 383,170 385,168 386,166 388,164 390,162 391,160 393,157 395,155 396,153 398,150 400,148 401,145 403,143 405,140 407,138 408,135 410,133 412,130 413,128 415,125 417,123 418,121 420,119 422,117 423,115 425,113 427,111 429,109 430,108 432,106 434,105 435,104 437,103 439,102 440,101 442,101 444,100 445,100 447,99 449,99 451,99 452,99 454,99 456,98 457,98 459,98 461,98 462,98 464,98 466,98 468,98 469,98 471,98 473,98 474,97 476,97 478,97 479,97 481,96 483,96 484,96 486,95 488,95 490,95 491,94 493,94 495,94 496,94 498,94 500,94 501,94 503,94 505,94 506,94 508,94 510,95 512,95 513,95 515,96 517,96 518,97 520,98 522,98 523,99 525,100 527,101 528,101 530,102 532,103 534,104 535,105 537,106 539,106 540,107 542,108 544,109 545,110 547,111 549,112 550,113 552,114 554,115 556,116 557,117 559,118 561,119 562,120 564,121 566,123 567,124 569,125 571,127 573,128 574,129 576,131 578,132 579,134 581,136 583,137 584,139 586,141 588,143 589,145 591,147 593,149 595,151 596,153 598,155 600,157 601,159 603,162 605,164 606,166 608,168 610,170 611,173 613,175 615,177 617,179 618,181 620,184 622,186 623,188 625,190 627,192 628,194 630,196 632,198 633,200 635,202 637,204 639,206 640,207 642,209 644,211 645,213 647,215 649,217 650,219 652,222 654,224 655,226 657,228 659,230 661,232 662,235 664,237 666,239 667,242 669,244 671,246 672,249 674,251 676,253 677,256 679,258 681,260 683,263 684,265 686,267 688,270 689,272 691,274 693,277 694,279 696,281 698,284 700,286 701,288 703,290 705,293 706,295 708,297 710,299 711,301 713,304 715,306 716,308 718,310 720,312 722,314 723,316 725,318 727,320 728,322 730,324 732,326 733,328 735,330 737,332 738,334 740,336 742,337 744,339 745,341 747,343 749,345 750,347 752,349 754,351 755,352 757,354 759,356 760,358 762,360 764,362 766,363 767,365 769,367 771,369 772,370 774,372 776,373 777,375 779,376 781,378 782,379 784,381 786,382 788,384 789,385 791,387 793,388 794,390 796,391 798,393 799,395 801,396 803,398 804,399 806,401 808,402 810,404 811,406 813,407 815,409 816,410 818,412 820,413 821,415 823,416 825,418 827,419 828,420 830,422 832,423 833,424 835,426 837,427 838,428 840,429 842,430 843,432 845,433 847,434 849,435 850,436 852,437 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="501,473 501,94 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1 +0,0 @@
{"group_id":"composite_scratch_pooling","function_id":"cold_composite","value_str":null,"throughput":null,"full_id":"composite_scratch_pooling/cold_composite","directory_name":"composite_scratch_pooling/cold_composite","title":"composite_scratch_pooling/cold_composite"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":812177406.29,"upper_bound":857389685.4535},"point_estimate":834486944.68,"standard_error":11495404.381205494},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":753737109.0,"upper_bound":766506110.0},"point_estimate":757074595.5,"standard_error":15857807.187801858},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20968429.218935966,"upper_bound":54785502.7289629},"point_estimate":32723406.211343408,"standard_error":18347991.659907967},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":104116565.37937303,"upper_bound":124723900.34334047},"point_estimate":115441877.44917327,"standard_error":5215149.056436004}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"times":[968619715.0,953627923.0,964541687.0,955168900.0,955717832.0,1022348923.0,965839588.0,1103478488.0,1034080999.0,950165158.0,956012404.0,959175353.0,966222089.0,977180444.0,975095845.0,959138267.0,1008696789.0,966282801.0,988549043.0,1010425104.0,969764812.0,950358931.0,993443001.0,950066156.0,944360183.0,960607173.0,942361182.0,955887554.0,952734176.0,954999194.0,997052828.0,953346204.0,945162531.0,1035485307.0,960848791.0,939055851.0,1125195702.0,963198525.0,731905787.0,764458461.0,729645027.0,731857131.0,739375996.0,733584526.0,738509146.0,746495790.0,764568053.0,751104982.0,747061408.0,742230172.0,745251281.0,754238195.0,740852823.0,754514600.0,753935651.0,746124575.0,729945665.0,756597494.0,738575150.0,717947736.0,739262456.0,728031313.0,735004616.0,749512342.0,761773639.0,734374504.0,738230335.0,754265206.0,751643954.0,736740556.0,756568457.0,759677820.0,754479818.0,742781581.0,753575353.0,754518077.0,749052781.0,763961053.0,758188943.0,761411664.0,769138847.0,732105094.0,750336235.0,745880463.0,747703486.0,757551697.0,752513334.0,760286523.0,746586523.0,768553759.0,745035539.0,741347243.0,735001304.0,730954649.0,736594714.0,729271515.0,764146545.0,753737109.0,751759311.0,754061008.0]}
@@ -1 +0,0 @@
[113508594.5,429352970.0,1271604638.0,1587449013.5]
@@ -1 +0,0 @@
{"group_id":"composite_scratch_pooling","function_id":"cold_composite","value_str":null,"throughput":null,"full_id":"composite_scratch_pooling/cold_composite","directory_name":"composite_scratch_pooling/cold_composite","title":"composite_scratch_pooling/cold_composite"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1000498161.29825,"upper_bound":1099690001.8669999},"point_estimate":1048196884.82,"standard_error":25367730.011527233},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":934936845.0,"upper_bound":1051233781.0},"point_estimate":980892716.0,"standard_error":27134022.995351616},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":177003031.31002563,"upper_bound":306999435.59566045},"point_estimate":245161550.01531243,"standard_error":33985506.10896858},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":205921067.23108926,"upper_bound":304826695.59609365},"point_estimate":256849149.27776495,"standard_error":25157881.125520337}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"times":[923099625.0,921320537.0,824843569.0,885032478.0,900895392.0,1051233781.0,932208762.0,999381095.0,1052806204.0,1061894488.0,1088684665.0,1026156997.0,970041150.0,992728410.0,963334427.0,929496136.0,954705004.0,980612121.0,1011294246.0,1025284776.0,1057955115.0,950281769.0,983741477.0,1071953346.0,980491406.0,1067916469.0,1091671773.0,978887356.0,895437785.0,1025254703.0,934936845.0,944945338.0,981173311.0,909527857.0,839438515.0,850175785.0,909100614.0,896100351.0,798482215.0,788656880.0,786020039.0,783359749.0,790777260.0,806176031.0,809801070.0,818637745.0,875872393.0,941171790.0,826336772.0,821704791.0,785506329.0,792634355.0,801609253.0,787851280.0,793554572.0,799326910.0,823212033.0,792434451.0,794048259.0,804704164.0,805769800.0,809575864.0,788111106.0,802348229.0,782335356.0,794429035.0,1100516034.0,1149356151.0,1222619982.0,1185127595.0,1116905632.0,1241729911.0,1084361421.0,1053125618.0,1039174046.0,1128701069.0,1812978546.0,1181270028.0,1567076674.0,1536448943.0,1482078366.0,1599984505.0,2066423557.0,1366392465.0,1620498514.0,1543410483.0,1493344394.0,1231773106.0,1298556091.0,1514426126.0,1300489121.0,1211398841.0,1237395477.0,1278418182.0,1248865975.0,1243973433.0,1240671138.0,1297129039.0,1400353439.0,1256223171.0]}
@@ -1 +0,0 @@
[-277343479.5,273546102.75,1742584988.75,2293474571.0]
@@ -1 +0,0 @@
{"group_id":"composite_scratch_pooling","function_id":"cold_composite","value_str":null,"throughput":null,"full_id":"composite_scratch_pooling/cold_composite","directory_name":"composite_scratch_pooling/cold_composite","title":"composite_scratch_pooling/cold_composite"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1000498161.29825,"upper_bound":1099690001.8669999},"point_estimate":1048196884.82,"standard_error":25367730.011527233},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":934936845.0,"upper_bound":1051233781.0},"point_estimate":980892716.0,"standard_error":27134022.995351616},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":177003031.31002563,"upper_bound":306999435.59566045},"point_estimate":245161550.01531243,"standard_error":33985506.10896858},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":205921067.23108926,"upper_bound":304826695.59609365},"point_estimate":256849149.27776495,"standard_error":25157881.125520337}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0],"times":[923099625.0,921320537.0,824843569.0,885032478.0,900895392.0,1051233781.0,932208762.0,999381095.0,1052806204.0,1061894488.0,1088684665.0,1026156997.0,970041150.0,992728410.0,963334427.0,929496136.0,954705004.0,980612121.0,1011294246.0,1025284776.0,1057955115.0,950281769.0,983741477.0,1071953346.0,980491406.0,1067916469.0,1091671773.0,978887356.0,895437785.0,1025254703.0,934936845.0,944945338.0,981173311.0,909527857.0,839438515.0,850175785.0,909100614.0,896100351.0,798482215.0,788656880.0,786020039.0,783359749.0,790777260.0,806176031.0,809801070.0,818637745.0,875872393.0,941171790.0,826336772.0,821704791.0,785506329.0,792634355.0,801609253.0,787851280.0,793554572.0,799326910.0,823212033.0,792434451.0,794048259.0,804704164.0,805769800.0,809575864.0,788111106.0,802348229.0,782335356.0,794429035.0,1100516034.0,1149356151.0,1222619982.0,1185127595.0,1116905632.0,1241729911.0,1084361421.0,1053125618.0,1039174046.0,1128701069.0,1812978546.0,1181270028.0,1567076674.0,1536448943.0,1482078366.0,1599984505.0,2066423557.0,1366392465.0,1620498514.0,1543410483.0,1493344394.0,1231773106.0,1298556091.0,1514426126.0,1300489121.0,1211398841.0,1237395477.0,1278418182.0,1248865975.0,1243973433.0,1240671138.0,1297129039.0,1400353439.0,1256223171.0]}
@@ -1 +0,0 @@
[-277343479.5,273546102.75,1742584988.75,2293474571.0]
@@ -1,88 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite:MAD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="434" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.002
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,434 86,434 "/>
<text x="77" y="371" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.004
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,371 86,371 "/>
<text x="77" y="308" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.006
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,308 86,308 "/>
<text x="77" y="245" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.008
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,245 86,245 "/>
<text x="77" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.01
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,182 86,182 "/>
<text x="77" y="119" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.012
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,119 86,119 "/>
<text x="77" y="56" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.014
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,56 86,56 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="179" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
180
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="179,473 179,478 "/>
<text x="286" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
200
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="286,473 286,478 "/>
<text x="392" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
220
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="392,473 392,478 "/>
<text x="498" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
240
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="498,473 498,478 "/>
<text x="605" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
260
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="605,473 605,478 "/>
<text x="711" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
280
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="711,473 711,478 "/>
<text x="817" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
300
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="817,473 817,478 "/>
<text x="924" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
320
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="924,473 924,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,470 88,470 90,470 92,470 93,470 95,470 97,470 98,470 100,470 102,470 103,469 105,469 107,469 109,469 110,469 112,469 114,468 115,468 117,468 119,467 120,467 122,467 124,466 125,466 127,465 129,464 131,464 132,463 134,463 136,462 137,461 139,460 141,460 142,459 144,458 146,457 147,456 149,455 151,454 153,453 154,452 156,451 158,449 159,448 161,447 163,445 164,444 166,442 168,441 169,439 171,438 173,436 175,435 176,433 178,432 180,430 181,428 183,427 185,425 186,423 188,422 190,420 191,418 193,416 195,415 197,413 198,411 200,409 202,407 203,406 205,404 207,402 208,400 210,399 212,397 214,395 215,393 217,392 219,390 220,388 222,387 224,385 225,383 227,382 229,380 230,378 232,376 234,374 236,372 237,370 239,368 241,366 242,364 244,362 246,359 247,357 249,355 251,353 252,350 254,348 256,345 258,343 259,341 261,338 263,336 264,334 266,331 268,329 269,327 271,324 273,322 274,320 276,318 278,315 280,313 281,310 283,308 285,306 286,303 288,301 290,298 291,295 293,293 295,290 296,287 298,285 300,282 302,279 303,277 305,274 307,271 308,269 310,267 312,264 313,262 315,260 317,258 318,257 320,255 322,254 324,253 325,252 327,251 329,250 330,250 332,249 334,249 335,248 337,248 339,248 341,247 342,247 344,246 346,246 347,245 349,244 351,244 352,243 354,242 356,241 357,240 359,239 361,238 363,237 364,235 366,234 368,233 369,232 371,231 373,230 374,230 376,229 378,228 379,227 381,227 383,226 385,226 386,225 388,224 390,224 391,223 393,223 395,222 396,221 398,220 400,219 401,218 403,217 405,216 407,214 408,212 410,210 412,207 413,205 415,202 417,198 418,195 420,191 422,186 423,182 425,177 427,172 429,167 430,162 432,157 434,151 435,146 437,140 439,135 440,130 442,125 444,120 445,116 447,112 449,108 451,105 452,102 454,99 456,97 457,96 459,95 461,94 462,94 464,94 466,95 468,96 469,97 471,99 473,101 474,103 476,106 478,109 479,112 481,115 483,118 484,122 486,125 488,129 490,132 491,136 493,140 495,143 496,146 498,150 500,153 501,156 503,159 505,162 506,165 508,167 510,169 512,171 513,173 515,175 517,176 518,178 520,179 522,179 523,180 525,180 527,180 528,180 530,180 532,179 534,178 535,176 537,175 539,173 540,171 542,168 544,165 545,162 547,159 549,156 550,153 552,149 554,146 556,142 557,139 559,136 561,133 562,131 564,128 566,126 567,125 569,123 571,122 573,122 574,121 576,122 578,122 579,123 581,124 583,126 584,127 586,129 588,132 589,134 591,137 593,140 595,143 596,147 598,150 600,153 601,157 603,161 605,164 606,168 608,172 610,175 611,179 613,182 615,185 617,188 618,192 620,195 622,198 623,200 625,203 627,206 628,209 630,211 632,214 633,217 635,220 637,223 639,226 640,229 642,232 644,236 645,239 647,242 649,246 650,250 652,253 654,257 655,260 657,264 659,267 661,270 662,273 664,276 666,278 667,280 669,282 671,284 672,286 674,287 676,289 677,290 679,291 681,292 683,293 684,293 686,294 688,295 689,297 691,298 693,299 694,301 696,302 698,304 700,306 701,308 703,310 705,313 706,315 708,317 710,320 711,322 713,325 715,327 716,330 718,332 720,334 722,336 723,338 725,340 727,342 728,344 730,345 732,347 733,349 735,350 737,352 738,353 740,355 742,356 744,357 745,359 747,360 749,361 750,362 752,363 754,364 755,365 757,366 759,367 760,367 762,368 764,368 766,368 767,369 769,369 771,369 772,368 774,368 776,368 777,367 779,367 781,366 782,366 784,365 786,365 788,364 789,364 791,364 793,363 794,363 796,363 798,363 799,363 801,364 803,364 804,365 806,366 808,366 810,367 811,369 813,370 815,371 816,373 818,374 820,376 821,377 823,379 825,381 827,383 828,385 830,386 832,388 833,390 835,392 837,394 838,396 840,398 842,400 843,402 845,404 847,406 849,408 850,410 852,412 854,414 855,416 857,418 859,420 860,422 862,424 864,426 865,428 867,430 869,432 871,434 872,436 874,438 876,440 877,442 879,443 881,445 882,446 884,448 886,449 887,450 889,451 891,452 893,453 894,454 896,455 898,456 899,457 901,458 903,458 904,459 906,459 908,460 909,461 911,461 913,462 915,463 916,464 918,464 920,465 921,466 923,467 925,468 926,469 928,470 930,471 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,444 166,442 168,441 169,439 171,438 173,436 175,435 176,433 178,432 180,430 181,428 183,427 185,425 186,423 188,422 190,420 191,418 193,416 195,415 197,413 198,411 200,409 202,407 203,406 205,404 207,402 208,400 210,399 212,397 214,395 215,393 217,392 219,390 220,388 222,387 224,385 225,383 227,382 229,380 230,378 232,376 234,374 236,372 237,370 239,368 241,366 242,364 244,362 246,359 247,357 249,355 251,353 252,350 254,348 256,345 258,343 259,341 261,338 263,336 264,334 266,331 268,329 269,327 271,324 273,322 274,320 276,318 278,315 280,313 281,310 283,308 285,306 286,303 288,301 290,298 291,295 293,293 295,290 296,287 298,285 300,282 302,279 303,277 305,274 307,271 308,269 310,267 312,264 313,262 315,260 317,258 318,257 320,255 322,254 324,253 325,252 327,251 329,250 330,250 332,249 334,249 335,248 337,248 339,248 341,247 342,247 344,246 346,246 347,245 349,244 351,244 352,243 354,242 356,241 357,240 359,239 361,238 363,237 364,235 366,234 368,233 369,232 371,231 373,230 374,230 376,229 378,228 379,227 381,227 383,226 385,226 386,225 388,224 390,224 391,223 393,223 395,222 396,221 398,220 400,219 401,218 403,217 405,216 407,214 408,212 410,210 412,207 413,205 415,202 417,198 418,195 420,191 422,186 423,182 425,177 427,172 429,167 430,162 432,157 434,151 435,146 437,140 439,135 440,130 442,125 444,120 445,116 447,112 449,108 451,105 452,102 454,99 456,97 457,96 459,95 461,94 462,94 464,94 466,95 468,96 469,97 471,99 473,101 474,103 476,106 478,109 479,112 481,115 483,118 484,122 486,125 488,129 490,132 491,136 493,140 495,143 496,146 498,150 500,153 501,156 503,159 505,162 506,165 508,167 510,169 512,171 513,173 515,175 517,176 518,178 520,179 522,179 523,180 525,180 527,180 528,180 530,180 532,179 534,178 535,176 537,175 539,173 540,171 542,168 544,165 545,162 547,159 549,156 550,153 552,149 554,146 556,142 557,139 559,136 561,133 562,131 564,128 566,126 567,125 569,123 571,122 573,122 574,121 576,122 578,122 579,123 581,124 583,126 584,127 586,129 588,132 589,134 591,137 593,140 595,143 596,147 598,150 600,153 601,157 603,161 605,164 606,168 608,172 610,175 611,179 613,182 615,185 617,188 618,192 620,195 622,198 623,200 625,203 627,206 628,209 630,211 632,214 633,217 635,220 637,223 639,226 640,229 642,232 644,236 645,239 647,242 649,246 650,250 652,253 654,257 655,260 657,264 659,267 661,270 662,273 664,276 666,278 667,280 669,282 671,284 672,286 674,287 676,289 677,290 679,291 681,292 683,293 684,293 686,294 688,295 689,297 691,298 693,299 694,301 696,302 698,304 700,306 701,308 703,310 705,313 706,315 708,317 710,320 711,322 713,325 715,327 716,330 718,332 720,334 722,336 723,338 725,340 727,342 728,344 730,345 732,347 733,349 735,350 737,352 738,353 740,355 742,356 744,357 745,359 747,360 749,361 750,362 752,363 754,364 755,365 757,366 759,367 760,367 762,368 764,368 766,368 767,369 769,369 771,369 772,368 774,368 776,368 777,367 779,367 781,366 782,366 784,365 786,365 788,364 789,364 791,364 793,363 794,363 796,363 798,363 799,363 801,364 803,364 804,365 806,366 808,366 810,367 811,369 813,370 815,371 816,373 818,374 820,376 821,377 823,379 825,381 827,383 828,385 830,386 832,388 833,390 835,392 837,394 838,396 840,398 842,400 843,402 845,404 847,406 849,408 850,410 852,412 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="526,473 526,180 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,84 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite:SD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="444" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.002
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,444 86,444 "/>
<text x="77" y="392" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.004
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,392 86,392 "/>
<text x="77" y="341" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.006
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,341 86,341 "/>
<text x="77" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.008
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,289 86,289 "/>
<text x="77" y="238" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.01
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,238 86,238 "/>
<text x="77" y="186" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.012
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,186 86,186 "/>
<text x="77" y="135" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.014
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,135 86,135 "/>
<text x="77" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.016
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,83 86,83 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="122" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
200
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="122,473 122,478 "/>
<text x="262" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
220
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="262,473 262,478 "/>
<text x="402" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
240
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="402,473 402,478 "/>
<text x="541" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
260
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="541,473 541,478 "/>
<text x="681" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
280
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="681,473 681,478 "/>
<text x="821" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
300
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="821,473 821,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,470 90,470 92,469 93,468 95,468 97,467 98,466 100,465 102,464 103,463 105,463 107,462 109,461 110,460 112,459 114,458 115,457 117,456 119,455 120,454 122,454 124,453 125,452 127,451 129,450 131,449 132,448 134,447 136,446 137,445 139,443 141,442 142,441 144,440 146,439 147,438 149,437 151,436 153,435 154,434 156,433 158,432 159,431 161,430 163,429 164,428 166,427 168,426 169,425 171,424 173,423 175,422 176,420 178,419 180,418 181,417 183,416 185,415 186,413 188,412 190,411 191,410 193,409 195,407 197,406 198,405 200,403 202,402 203,401 205,399 207,398 208,397 210,395 212,394 214,392 215,391 217,389 219,387 220,386 222,384 224,382 225,380 227,378 229,376 230,374 232,371 234,369 236,367 237,365 239,362 241,360 242,357 244,354 246,352 247,349 249,346 251,344 252,341 254,338 256,335 258,332 259,330 261,327 263,324 264,321 266,318 268,316 269,313 271,310 273,308 274,305 276,302 278,300 280,297 281,295 283,292 285,290 286,287 288,285 290,282 291,280 293,278 295,275 296,273 298,270 300,268 302,266 303,264 305,261 307,259 308,257 310,254 312,252 313,250 315,248 317,245 318,243 320,241 322,239 324,236 325,234 327,232 329,230 330,227 332,225 334,223 335,221 337,219 339,217 341,214 342,212 344,210 346,208 347,206 349,204 351,202 352,200 354,198 356,196 357,195 359,193 361,191 363,189 364,187 366,185 368,184 369,182 371,180 373,179 374,177 376,175 378,174 379,172 381,170 383,169 385,167 386,166 388,164 390,163 391,161 393,160 395,158 396,156 398,155 400,153 401,151 403,149 405,147 407,145 408,143 410,141 412,139 413,137 415,135 417,133 418,130 420,128 422,126 423,124 425,122 427,119 429,117 430,115 432,113 434,112 435,110 437,108 439,107 440,105 442,104 444,103 445,101 447,100 449,99 451,98 452,98 454,97 456,96 457,96 459,95 461,95 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,95 483,95 484,95 486,96 488,96 490,97 491,97 493,97 495,97 496,98 498,98 500,98 501,98 503,98 505,98 506,98 508,98 510,98 512,98 513,98 515,98 517,98 518,98 520,98 522,98 523,99 525,99 527,99 528,100 530,101 532,102 534,103 535,104 537,105 539,106 540,108 542,109 544,111 545,112 547,114 549,115 550,116 552,118 554,119 556,121 557,122 559,123 561,125 562,126 564,127 566,128 567,129 569,130 571,131 573,133 574,134 576,135 578,136 579,137 581,139 583,140 584,142 586,143 588,145 589,147 591,148 593,150 595,152 596,154 598,156 600,158 601,161 603,163 605,165 606,167 608,169 610,172 611,174 613,176 615,178 617,180 618,183 620,185 622,187 623,189 625,191 627,194 628,196 630,198 632,200 633,202 635,204 637,206 639,208 640,210 642,212 644,213 645,215 647,217 649,218 650,220 652,222 654,223 655,225 657,226 659,228 661,230 662,231 664,233 666,235 667,237 669,239 671,241 672,243 674,245 676,247 677,249 679,252 681,254 683,257 684,259 686,262 688,264 689,267 691,269 693,272 694,274 696,277 698,279 700,282 701,284 703,286 705,289 706,291 708,293 710,295 711,297 713,299 715,301 716,303 718,305 720,307 722,308 723,310 725,312 727,314 728,316 730,318 732,320 733,322 735,323 737,325 738,327 740,330 742,332 744,334 745,336 747,338 749,340 750,342 752,345 754,347 755,349 757,351 759,353 760,355 762,357 764,359 766,361 767,363 769,364 771,366 772,368 774,369 776,371 777,372 779,374 781,375 782,376 784,378 786,379 788,380 789,382 791,383 793,384 794,386 796,387 798,389 799,390 801,392 803,393 804,395 806,397 808,398 810,400 811,402 813,404 815,406 816,407 818,409 820,411 821,413 823,415 825,416 827,418 828,420 830,421 832,423 833,424 835,425 837,427 838,428 840,429 842,430 843,431 845,432 847,433 849,434 850,435 852,435 854,436 855,437 857,438 859,438 860,439 862,440 864,441 865,442 867,442 869,443 871,444 872,445 874,446 876,447 877,448 879,449 881,450 882,451 884,452 886,453 887,454 889,455 891,456 893,457 894,458 896,459 898,459 899,460 901,461 903,462 904,463 906,463 908,464 909,465 911,466 913,466 915,467 916,467 918,468 920,469 921,469 923,470 925,470 926,471 928,471 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,428 166,427 168,426 169,425 171,424 173,423 175,422 176,420 178,419 180,418 181,417 183,416 185,415 186,413 188,412 190,411 191,410 193,409 195,407 197,406 198,405 200,403 202,402 203,401 205,399 207,398 208,397 210,395 212,394 214,392 215,391 217,389 219,387 220,386 222,384 224,382 225,380 227,378 229,376 230,374 232,371 234,369 236,367 237,365 239,362 241,360 242,357 244,354 246,352 247,349 249,346 251,344 252,341 254,338 256,335 258,332 259,330 261,327 263,324 264,321 266,318 268,316 269,313 271,310 273,308 274,305 276,302 278,300 280,297 281,295 283,292 285,290 286,287 288,285 290,282 291,280 293,278 295,275 296,273 298,270 300,268 302,266 303,264 305,261 307,259 308,257 310,254 312,252 313,250 315,248 317,245 318,243 320,241 322,239 324,236 325,234 327,232 329,230 330,227 332,225 334,223 335,221 337,219 339,217 341,214 342,212 344,210 346,208 347,206 349,204 351,202 352,200 354,198 356,196 357,195 359,193 361,191 363,189 364,187 366,185 368,184 369,182 371,180 373,179 374,177 376,175 378,174 379,172 381,170 383,169 385,167 386,166 388,164 390,163 391,161 393,160 395,158 396,156 398,155 400,153 401,151 403,149 405,147 407,145 408,143 410,141 412,139 413,137 415,135 417,133 418,130 420,128 422,126 423,124 425,122 427,119 429,117 430,115 432,113 434,112 435,110 437,108 439,107 440,105 442,104 444,103 445,101 447,100 449,99 451,98 452,98 454,97 456,96 457,96 459,95 461,95 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,95 483,95 484,95 486,96 488,96 490,97 491,97 493,97 495,97 496,98 498,98 500,98 501,98 503,98 505,98 506,98 508,98 510,98 512,98 513,98 515,98 517,98 518,98 520,98 522,98 523,99 525,99 527,99 528,100 530,101 532,102 534,103 535,104 537,105 539,106 540,108 542,109 544,111 545,112 547,114 549,115 550,116 552,118 554,119 556,121 557,122 559,123 561,125 562,126 564,127 566,128 567,129 569,130 571,131 573,133 574,134 576,135 578,136 579,137 581,139 583,140 584,142 586,143 588,145 589,147 591,148 593,150 595,152 596,154 598,156 600,158 601,161 603,163 605,165 606,167 608,169 610,172 611,174 613,176 615,178 617,180 618,183 620,185 622,187 623,189 625,191 627,194 628,196 630,198 632,200 633,202 635,204 637,206 639,208 640,210 642,212 644,213 645,215 647,217 649,218 650,220 652,222 654,223 655,225 657,226 659,228 661,230 662,231 664,233 666,235 667,237 669,239 671,241 672,243 674,245 676,247 677,249 679,252 681,254 683,257 684,259 686,262 688,264 689,267 691,269 693,272 694,274 696,277 698,279 700,282 701,284 703,286 705,289 706,291 708,293 710,295 711,297 713,299 715,301 716,303 718,305 720,307 722,308 723,310 725,312 727,314 728,316 730,318 732,320 733,322 735,323 737,325 738,327 740,330 742,332 744,334 745,336 747,338 749,340 750,342 752,345 754,347 755,349 757,351 759,353 760,355 762,357 764,359 766,361 767,363 769,364 771,366 772,368 774,369 776,371 777,372 779,374 781,375 782,376 784,378 786,379 788,380 789,382 791,383 793,384 794,386 796,387 798,389 799,390 801,392 803,393 804,395 806,397 808,398 810,400 811,402 813,404 815,406 816,407 818,409 820,411 821,413 823,415 825,416 827,418 828,420 830,421 832,423 833,424 835,425 837,427 838,428 840,429 842,430 843,431 845,432 847,433 849,434 850,435 852,435 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="519,473 519,98 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,193 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>composite_scratch_pooling/cold_composite - Criterion.rs</title>
<style type="text/css">
body {
font: 14px Helvetica Neue;
text-rendering: optimizelegibility;
}
.body {
width: 960px;
margin: auto;
}
th {
font-weight: 200
}
th,
td {
padding-right: 3px;
padding-bottom: 3px;
}
a:link {
color: #1F78B4;
text-decoration: none;
}
th.ci-bound {
opacity: 0.6
}
td.ci-bound {
opacity: 0.5
}
.stats {
width: 80%;
margin: auto;
display: flex;
}
.additional_stats {
flex: 0 0 60%
}
.additional_plots {
flex: 1
}
h2 {
font-size: 36px;
font-weight: 300;
}
h3 {
font-size: 24px;
font-weight: 300;
}
#footer {
height: 40px;
background: #888;
color: white;
font-size: larger;
font-weight: 300;
}
#footer a {
color: white;
text-decoration: underline;
}
#footer p {
text-align: center
}
</style>
</head>
<body>
<div class="body">
<h2>composite_scratch_pooling/cold_composite</h2>
<div class="absolute">
<section class="plots">
<table width="100%">
<tbody>
<tr>
<td>
<a href="pdf.svg">
<img src="pdf_small.svg" alt="PDF of Slope" width="450" height="300" />
</a>
</td>
<td>
<a href="iteration_times.svg">
<img src="iteration_times_small.svg" alt="Iteration Times" width="450" height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
<section class="stats">
<div class="additional_stats">
<h4>Additional Statistics:</h4>
<table>
<thead>
<tr>
<th></th>
<th title="0.95 confidence level" class="ci-bound">Lower bound</th>
<th>Estimate</th>
<th title="0.95 confidence level" class="ci-bound">Upper bound</th>
</tr>
</thead>
<tbody>
<tr>
<td>R&#xb2;</td>
<td class="ci-bound">0.0063621</td>
<td>0.0065823</td>
<td class="ci-bound">0.0063271</td>
</tr>
<tr>
<td>Mean</td>
<td class="ci-bound">1.0005 s</td>
<td>1.0482 s</td>
<td class="ci-bound">1.0997 s</td>
</tr>
<tr>
<td title="Standard Deviation">Std. Dev.</td>
<td class="ci-bound">205.92 ms</td>
<td>256.85 ms</td>
<td class="ci-bound">304.83 ms</td>
</tr>
<tr>
<td>Median</td>
<td class="ci-bound">934.94 ms</td>
<td>980.89 ms</td>
<td class="ci-bound">1.0512 s</td>
</tr>
<tr>
<td title="Median Absolute Deviation">MAD</td>
<td class="ci-bound">177.00 ms</td>
<td>245.16 ms</td>
<td class="ci-bound">307.00 ms</td>
</tr>
</tbody>
</table>
</div>
<div class="additional_plots">
<h4>Additional Plots:</h4>
<ul>
<li>
<a href="typical.svg">Typical</a>
</li>
<li>
<a href="mean.svg">Mean</a>
</li>
<li>
<a href="SD.svg">Std. Dev.</a>
</li>
<li>
<a href="median.svg">Median</a>
</li>
<li>
<a href="MAD.svg">MAD</a>
</li>
</ul>
</div>
</section>
<section class="explanation">
<h4>Understanding this report:</h4>
<p>The plot on the left displays the average time per iteration for this benchmark. The shaded region
shows the estimated probability of an iteration taking a certain amount of time, while the line
shows the mean. Click on the plot for a larger view showing the outliers.</p>
<p>The plot on the right shows the average time per iteration for the samples. Each point
represents one sample.</p>
<p>See <a href="https://bheisler.github.io/criterion.rs/book/user_guide/command_line_output.html#additional-statistics">the
documentation</a> for more details on the additional statistics.</p>
</section>
</div>
</div>
<div id="footer">
<p>This report was generated by
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
library in Rust.</p>
</div>
</body>
</html>
@@ -1,199 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Average Iteration Time (s)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="163" y1="472" x2="163" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="247" y1="472" x2="247" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="332" y1="472" x2="332" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="416" y1="472" x2="416" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="501" y1="472" x2="501" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="585" y1="472" x2="585" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="670" y1="472" x2="670" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="754" y1="472" x2="754" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="839" y1="472" x2="839" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="923" y1="472" x2="923" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="467" x2="932" y2="467"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="401" x2="932" y2="401"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="336" x2="932" y2="336"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="271" x2="932" y2="271"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="206" x2="932" y2="206"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="140" x2="932" y2="140"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="75" x2="932" y2="75"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="467" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,467 86,467 "/>
<text x="77" y="401" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,401 86,401 "/>
<text x="77" y="336" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,336 86,336 "/>
<text x="77" y="271" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,271 86,271 "/>
<text x="77" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,206 86,206 "/>
<text x="77" y="140" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,140 86,140 "/>
<text x="77" y="75" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,75 86,75 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="163" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="163,473 163,478 "/>
<text x="247" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="247,473 247,478 "/>
<text x="332" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="332,473 332,478 "/>
<text x="416" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="416,473 416,478 "/>
<text x="501" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="501,473 501,478 "/>
<text x="585" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="585,473 585,478 "/>
<text x="670" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="670,473 670,478 "/>
<text x="754" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="754,473 754,478 "/>
<text x="839" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="839,473 839,478 "/>
<text x="923" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="923,473 923,478 "/>
<circle cx="87" cy="427" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="95" cy="427" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="459" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="112" cy="439" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="120" cy="434" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="129" cy="385" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="137" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="402" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="154" cy="384" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="163" cy="381" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="373" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="393" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="188" cy="411" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="196" cy="404" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="205" cy="413" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="213" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="416" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="230" cy="408" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="239" cy="398" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="393" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="256" cy="383" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="264" cy="418" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="407" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="281" cy="378" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="289" cy="408" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="298" cy="379" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="306" cy="372" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="408" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="323" cy="436" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="332" cy="393" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="423" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="348" cy="419" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="357" cy="408" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="431" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="374" cy="454" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="382" cy="450" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="391" cy="431" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="399" cy="435" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="467" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="470" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="425" cy="471" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="433" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="441" cy="470" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="450" cy="465" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="458" cy="464" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="467" cy="461" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="475" cy="442" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="484" cy="421" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="492" cy="458" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="501" cy="460" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="509" cy="471" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="517" cy="469" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="526" cy="466" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="534" cy="471" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="543" cy="469" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="551" cy="467" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="560" cy="459" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="568" cy="469" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="577" cy="469" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="585" cy="465" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="594" cy="465" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="602" cy="464" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="610" cy="471" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="619" cy="466" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="627" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="636" cy="469" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="644" cy="369" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="653" cy="353" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="661" cy="329" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="670" cy="341" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="678" cy="363" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="686" cy="323" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="695" cy="374" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="703" cy="384" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="712" cy="389" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="720" cy="359" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="729" cy="136" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="737" cy="342" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="746" cy="216" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="754" cy="226" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="763" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="771" cy="206" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="779" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="788" cy="282" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="796" cy="199" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="805" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="813" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="822" cy="326" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="830" cy="304" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="839" cy="234" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="847" cy="303" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="855" cy="332" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="864" cy="324" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="872" cy="311" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="881" cy="320" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="889" cy="322" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="898" cy="323" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="906" cy="305" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="915" cy="271" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="923" cy="318" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<text x="132" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Sample
</text>
<circle cx="112" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

@@ -1,192 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Average Iteration Time (s)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="107" y1="244" x2="107" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="143" y1="244" x2="143" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="179" y1="244" x2="179" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="215" y1="244" x2="215" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="250" y1="244" x2="250" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="286" y1="244" x2="286" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="322" y1="244" x2="322" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="358" y1="244" x2="358" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="394" y1="244" x2="394" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="430" y1="244" x2="430" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="241" x2="434" y2="241"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="206" x2="434" y2="206"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="170" x2="434" y2="170"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="134" x2="434" y2="134"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="99" x2="434" y2="99"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="63" x2="434" y2="63"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="27" x2="434" y2="27"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,241 74,241 "/>
<text x="65" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,206 74,206 "/>
<text x="65" y="170" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,170 74,170 "/>
<text x="65" y="134" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,134 74,134 "/>
<text x="65" y="99" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,99 74,99 "/>
<text x="65" y="63" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,63 74,63 "/>
<text x="65" y="27" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,27 74,27 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="107" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="107,245 107,250 "/>
<text x="143" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="143,245 143,250 "/>
<text x="179" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="179,245 179,250 "/>
<text x="215" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="215,245 215,250 "/>
<text x="250" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="250,245 250,250 "/>
<text x="286" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="286,245 286,250 "/>
<text x="322" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="322,245 322,250 "/>
<text x="358" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="358,245 358,250 "/>
<text x="394" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="394,245 394,250 "/>
<text x="430" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="430,245 430,250 "/>
<circle cx="75" cy="219" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="78" cy="220" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="82" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="85" cy="226" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="89" cy="223" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="92" cy="197" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="96" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="100" cy="206" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="107" cy="195" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="110" cy="190" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="114" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="118" cy="211" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="121" cy="207" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="125" cy="212" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="128" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="132" cy="214" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="136" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="139" cy="204" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="143" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="195" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="150" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="153" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="157" cy="193" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="161" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="164" cy="194" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="168" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="175" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="182" cy="217" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="186" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="189" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="193" cy="222" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="197" cy="234" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="200" cy="232" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="204" cy="222" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="207" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="211" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="215" cy="243" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="218" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="225" cy="243" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="229" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="232" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="236" cy="238" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="240" cy="228" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="243" cy="216" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="250" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="254" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="258" cy="243" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="261" cy="241" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="265" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="268" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="241" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="276" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="279" cy="243" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="283" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="286" cy="241" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="290" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="293" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="297" cy="243" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="301" cy="241" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="304" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="308" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="311" cy="188" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="179" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="319" cy="166" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="322" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="326" cy="185" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="329" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="333" cy="191" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="337" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="199" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="344" cy="183" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="347" cy="61" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="351" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="355" cy="105" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="358" cy="110" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="362" cy="120" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="99" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="369" cy="15" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="372" cy="140" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="376" cy="95" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="380" cy="109" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="383" cy="118" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="387" cy="164" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="390" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="394" cy="114" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="398" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="401" cy="168" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="405" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="156" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="412" cy="161" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="162" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="419" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="423" cy="153" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="426" cy="134" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="430" cy="160" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

@@ -1,84 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite:mean
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (s)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="443" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,443 86,443 "/>
<text x="77" y="392" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,392 86,392 "/>
<text x="77" y="341" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,341 86,341 "/>
<text x="77" y="290" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,290 86,290 "/>
<text x="77" y="238" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,238 86,238 "/>
<text x="77" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,187 86,187 "/>
<text x="77" y="136" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,136 86,136 "/>
<text x="77" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,85 86,85 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="160" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="160,473 160,478 "/>
<text x="299" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="299,473 299,478 "/>
<text x="439" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="439,473 439,478 "/>
<text x="578" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="578,473 578,478 "/>
<text x="717" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.08
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="717,473 717,478 "/>
<text x="857" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="857,473 857,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,470 97,469 98,468 100,467 102,467 103,466 105,465 107,464 109,464 110,463 112,462 114,461 115,460 117,459 119,458 120,457 122,456 124,456 125,455 127,454 129,452 131,451 132,450 134,449 136,448 137,447 139,446 141,445 142,443 144,442 146,441 147,440 149,438 151,437 153,436 154,434 156,433 158,432 159,430 161,429 163,427 164,426 166,425 168,423 169,422 171,420 173,419 175,417 176,416 178,414 180,413 181,412 183,410 185,409 186,407 188,406 190,404 191,403 193,401 195,400 197,398 198,396 200,395 202,393 203,391 205,390 207,388 208,386 210,384 212,383 214,381 215,379 217,377 219,375 220,373 222,372 224,370 225,368 227,366 229,364 230,362 232,360 234,358 236,356 237,354 239,352 241,350 242,348 244,346 246,343 247,341 249,339 251,337 252,335 254,332 256,330 258,328 259,326 261,323 263,321 264,319 266,316 268,314 269,312 271,310 273,307 274,305 276,303 278,300 280,298 281,296 283,293 285,291 286,289 288,286 290,284 291,281 293,279 295,277 296,274 298,272 300,269 302,267 303,264 305,262 307,259 308,256 310,254 312,251 313,249 315,246 317,243 318,241 320,238 322,235 324,233 325,230 327,228 329,225 330,222 332,220 334,217 335,215 337,212 339,210 341,207 342,205 344,202 346,200 347,198 349,195 351,193 352,191 354,189 356,186 357,184 359,182 361,180 363,178 364,176 366,174 368,172 369,170 371,169 373,167 374,165 376,163 378,161 379,159 381,157 383,156 385,154 386,152 388,150 390,148 391,146 393,144 395,142 396,140 398,138 400,136 401,133 403,131 405,129 407,127 408,126 410,124 412,122 413,120 415,118 417,117 418,115 420,114 422,112 423,111 425,110 427,109 429,108 430,107 432,106 434,105 435,104 437,104 439,103 440,102 442,102 444,101 445,100 447,100 449,99 451,99 452,98 454,98 456,97 457,96 459,96 461,95 462,95 464,95 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,95 486,95 488,95 490,96 491,96 493,96 495,97 496,97 498,97 500,98 501,98 503,99 505,99 506,99 508,100 510,100 512,100 513,101 515,101 517,101 518,102 520,103 522,103 523,104 525,105 527,105 528,106 530,107 532,108 534,110 535,111 537,112 539,113 540,115 542,116 544,118 545,119 547,121 549,122 550,124 552,125 554,127 556,128 557,130 559,131 561,133 562,134 564,136 566,137 567,139 569,140 571,142 573,143 574,145 576,146 578,148 579,149 581,151 583,152 584,154 586,155 588,157 589,159 591,160 593,162 595,164 596,165 598,167 600,169 601,171 603,173 605,175 606,177 608,179 610,181 611,183 613,185 615,188 617,190 618,192 620,194 622,197 623,199 625,201 627,203 628,205 630,208 632,210 633,212 635,214 637,216 639,218 640,220 642,222 644,224 645,227 647,229 649,231 650,233 652,235 654,237 655,239 657,241 659,243 661,245 662,247 664,249 666,251 667,253 669,255 671,257 672,259 674,261 676,263 677,265 679,267 681,268 683,270 684,272 686,274 688,276 689,278 691,280 693,282 694,284 696,286 698,287 700,289 701,291 703,293 705,295 706,297 708,299 710,301 711,303 713,305 715,308 716,310 718,312 720,314 722,316 723,318 725,320 727,323 728,325 730,327 732,329 733,331 735,333 737,336 738,338 740,340 742,342 744,344 745,346 747,348 749,350 750,352 752,354 754,356 755,358 757,359 759,361 760,363 762,365 764,366 766,368 767,370 769,372 771,373 772,375 774,377 776,378 777,380 779,382 781,383 782,385 784,387 786,388 788,390 789,392 791,393 793,395 794,396 796,398 798,400 799,401 801,403 803,404 804,406 806,407 808,408 810,410 811,411 813,412 815,414 816,415 818,416 820,417 821,419 823,420 825,421 827,422 828,423 830,424 832,425 833,426 835,427 837,428 838,429 840,430 842,431 843,432 845,433 847,434 849,435 850,436 852,437 854,438 855,439 857,440 859,441 860,442 862,443 864,444 865,445 867,446 869,447 871,448 872,448 874,449 876,450 877,451 879,451 881,452 882,453 884,453 886,454 887,455 889,455 891,456 893,457 894,457 896,458 898,459 899,459 901,460 903,460 904,461 906,462 908,462 909,463 911,464 913,464 915,465 916,466 918,466 920,467 921,467 923,468 925,469 926,469 928,470 930,471 932,471 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,426 166,425 168,423 169,422 171,420 173,419 175,417 176,416 178,414 180,413 181,412 183,410 185,409 186,407 188,406 190,404 191,403 193,401 195,400 197,398 198,396 200,395 202,393 203,391 205,390 207,388 208,386 210,384 212,383 214,381 215,379 217,377 219,375 220,373 222,372 224,370 225,368 227,366 229,364 230,362 232,360 234,358 236,356 237,354 239,352 241,350 242,348 244,346 246,343 247,341 249,339 251,337 252,335 254,332 256,330 258,328 259,326 261,323 263,321 264,319 266,316 268,314 269,312 271,310 273,307 274,305 276,303 278,300 280,298 281,296 283,293 285,291 286,289 288,286 290,284 291,281 293,279 295,277 296,274 298,272 300,269 302,267 303,264 305,262 307,259 308,256 310,254 312,251 313,249 315,246 317,243 318,241 320,238 322,235 324,233 325,230 327,228 329,225 330,222 332,220 334,217 335,215 337,212 339,210 341,207 342,205 344,202 346,200 347,198 349,195 351,193 352,191 354,189 356,186 357,184 359,182 361,180 363,178 364,176 366,174 368,172 369,170 371,169 373,167 374,165 376,163 378,161 379,159 381,157 383,156 385,154 386,152 388,150 390,148 391,146 393,144 395,142 396,140 398,138 400,136 401,133 403,131 405,129 407,127 408,126 410,124 412,122 413,120 415,118 417,117 418,115 420,114 422,112 423,111 425,110 427,109 429,108 430,107 432,106 434,105 435,104 437,104 439,103 440,102 442,102 444,101 445,100 447,100 449,99 451,99 452,98 454,98 456,97 457,96 459,96 461,95 462,95 464,95 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,95 486,95 488,95 490,96 491,96 493,96 495,97 496,97 498,97 500,98 501,98 503,99 505,99 506,99 508,100 510,100 512,100 513,101 515,101 517,101 518,102 520,103 522,103 523,104 525,105 527,105 528,106 530,107 532,108 534,110 535,111 537,112 539,113 540,115 542,116 544,118 545,119 547,121 549,122 550,124 552,125 554,127 556,128 557,130 559,131 561,133 562,134 564,136 566,137 567,139 569,140 571,142 573,143 574,145 576,146 578,148 579,149 581,151 583,152 584,154 586,155 588,157 589,159 591,160 593,162 595,164 596,165 598,167 600,169 601,171 603,173 605,175 606,177 608,179 610,181 611,183 613,185 615,188 617,190 618,192 620,194 622,197 623,199 625,201 627,203 628,205 630,208 632,210 633,212 635,214 637,216 639,218 640,220 642,222 644,224 645,227 647,229 649,231 650,233 652,235 654,237 655,239 657,241 659,243 661,245 662,247 664,249 666,251 667,253 669,255 671,257 672,259 674,261 676,263 677,265 679,267 681,268 683,270 684,272 686,274 688,276 689,278 691,280 693,282 694,284 696,286 698,287 700,289 701,291 703,293 705,295 706,297 708,299 710,301 711,303 713,305 715,308 716,310 718,312 720,314 722,316 723,318 725,320 727,323 728,325 730,327 732,329 733,331 735,333 737,336 738,338 740,340 742,342 744,344 745,346 747,348 749,350 750,352 752,354 754,356 755,358 757,359 759,361 760,363 762,365 764,366 766,368 767,370 769,372 771,373 772,375 774,377 776,378 777,380 779,382 781,383 782,385 784,387 786,388 788,390 789,392 791,393 793,395 794,396 796,398 798,400 799,401 801,403 803,404 804,406 806,407 808,408 810,410 811,411 813,412 815,414 816,415 818,416 820,417 821,419 823,420 825,421 827,422 828,423 830,424 832,425 833,426 835,427 837,428 838,429 840,430 842,431 843,432 845,433 847,434 849,435 850,436 852,437 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="496,473 496,97 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,88 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite:median
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (s)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="428" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,428 86,428 "/>
<text x="77" y="381" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,381 86,381 "/>
<text x="77" y="334" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,334 86,334 "/>
<text x="77" y="287" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,287 86,287 "/>
<text x="77" y="240" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
25
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,240 86,240 "/>
<text x="77" y="193" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,193 86,193 "/>
<text x="77" y="145" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
35
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,145 86,145 "/>
<text x="77" y="98" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,98 86,98 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="193" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.94
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="193,473 193,478 "/>
<text x="312" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.96
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="312,473 312,478 "/>
<text x="431" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.98
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="431,473 431,478 "/>
<text x="550" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="550,473 550,478 "/>
<text x="669" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="669,473 669,478 "/>
<text x="788" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="788,473 788,478 "/>
<text x="907" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="907,473 907,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,470 88,470 90,470 92,470 93,469 95,469 97,469 98,469 100,469 102,468 103,468 105,468 107,468 109,467 110,467 112,467 114,466 115,466 117,465 119,465 120,464 122,464 124,463 125,463 127,462 129,461 131,460 132,460 134,459 136,458 137,457 139,456 141,456 142,455 144,454 146,454 147,453 149,452 151,452 153,451 154,451 156,451 158,450 159,450 161,450 163,450 164,449 166,449 168,449 169,449 171,448 173,448 175,448 176,448 178,447 180,447 181,446 183,446 185,445 186,444 188,444 190,443 191,442 193,441 195,440 197,440 198,439 200,438 202,437 203,436 205,435 207,434 208,433 210,432 212,431 214,430 215,429 217,429 219,428 220,427 222,426 224,425 225,425 227,424 229,423 230,423 232,422 234,421 236,420 237,420 239,419 241,418 242,417 244,417 246,416 247,415 249,415 251,414 252,413 254,413 256,412 258,412 259,411 261,411 263,411 264,411 266,410 268,410 269,410 271,411 273,411 274,411 276,411 278,412 280,412 281,413 283,413 285,413 286,414 288,414 290,414 291,415 293,415 295,415 296,415 298,415 300,415 302,415 303,415 305,414 307,414 308,413 310,413 312,412 313,412 315,411 317,410 318,409 320,409 322,408 324,407 325,406 327,405 329,404 330,403 332,402 334,401 335,400 337,399 339,398 341,398 342,397 344,396 346,395 347,395 349,394 351,393 352,393 354,392 356,392 357,391 359,391 361,390 363,390 364,390 366,389 368,389 369,389 371,388 373,388 374,387 376,387 378,386 379,386 381,385 383,384 385,382 386,381 388,379 390,377 391,374 393,371 395,367 396,362 398,357 400,351 401,343 403,335 405,325 407,314 408,302 410,289 412,275 413,260 415,244 417,227 418,210 420,193 422,176 423,160 425,144 427,131 429,118 430,108 432,100 434,95 435,92 437,92 439,94 440,100 442,107 444,117 445,129 447,142 449,157 451,173 452,189 454,206 456,222 457,238 459,254 461,269 462,282 464,295 466,307 468,317 469,327 471,335 473,342 474,348 476,353 478,358 479,362 481,365 483,368 484,370 486,373 488,374 490,376 491,377 493,379 495,380 496,381 498,381 500,382 501,383 503,384 505,384 506,385 508,386 510,386 512,387 513,387 515,388 517,388 518,389 520,389 522,390 523,390 525,391 527,392 528,393 530,393 532,394 534,395 535,396 537,398 539,399 540,400 542,401 544,403 545,404 547,406 549,407 550,409 552,410 554,412 556,413 557,414 559,416 561,417 562,418 564,419 566,419 567,420 569,421 571,421 573,422 574,423 576,423 578,424 579,424 581,425 583,425 584,426 586,426 588,427 589,427 591,428 593,428 595,428 596,428 598,428 600,428 601,427 603,427 605,427 606,426 608,425 610,425 611,425 613,424 615,424 617,424 618,424 620,425 622,425 623,426 625,427 627,428 628,429 630,430 632,431 633,432 635,433 637,434 639,434 640,435 642,435 644,435 645,435 647,435 649,435 650,434 652,434 654,434 655,433 657,433 659,433 661,432 662,432 664,431 666,431 667,430 669,430 671,428 672,427 674,425 676,423 677,421 679,418 681,415 683,412 684,408 686,404 688,400 689,396 691,393 693,389 694,386 696,384 698,382 700,381 701,380 703,380 705,382 706,383 708,386 710,389 711,393 713,397 715,401 716,406 718,410 720,415 722,419 723,424 725,428 727,431 728,435 730,438 732,440 733,443 735,445 737,446 738,448 740,449 742,450 744,451 745,452 747,452 749,453 750,454 752,454 754,455 755,455 757,455 759,456 760,456 762,456 764,456 766,456 767,456 769,456 771,456 772,456 774,455 776,455 777,455 779,455 781,455 782,455 784,455 786,456 788,456 789,456 791,457 793,457 794,458 796,458 798,459 799,459 801,459 803,460 804,460 806,460 808,460 810,460 811,461 813,461 815,461 816,461 818,461 820,461 821,461 823,460 825,460 827,460 828,460 830,460 832,460 833,460 835,459 837,459 838,458 840,458 842,457 843,456 845,455 847,455 849,454 850,453 852,452 854,451 855,451 857,450 859,450 860,450 862,450 864,450 865,450 867,450 869,451 871,451 872,452 874,453 876,454 877,455 879,456 881,457 882,458 884,459 886,460 887,461 889,462 891,463 893,464 894,465 896,465 898,466 899,467 901,467 903,468 904,468 906,469 908,469 909,469 911,470 913,470 915,470 916,471 918,471 920,471 921,471 923,472 925,472 926,472 928,472 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,449 166,449 168,449 169,449 171,448 173,448 175,448 176,448 178,447 180,447 181,446 183,446 185,445 186,444 188,444 190,443 191,442 193,441 195,440 197,440 198,439 200,438 202,437 203,436 205,435 207,434 208,433 210,432 212,431 214,430 215,429 217,429 219,428 220,427 222,426 224,425 225,425 227,424 229,423 230,423 232,422 234,421 236,420 237,420 239,419 241,418 242,417 244,417 246,416 247,415 249,415 251,414 252,413 254,413 256,412 258,412 259,411 261,411 263,411 264,411 266,410 268,410 269,410 271,411 273,411 274,411 276,411 278,412 280,412 281,413 283,413 285,413 286,414 288,414 290,414 291,415 293,415 295,415 296,415 298,415 300,415 302,415 303,415 305,414 307,414 308,413 310,413 312,412 313,412 315,411 317,410 318,409 320,409 322,408 324,407 325,406 327,405 329,404 330,403 332,402 334,401 335,400 337,399 339,398 341,398 342,397 344,396 346,395 347,395 349,394 351,393 352,393 354,392 356,392 357,391 359,391 361,390 363,390 364,390 366,389 368,389 369,389 371,388 373,388 374,387 376,387 378,386 379,386 381,385 383,384 385,382 386,381 388,379 390,377 391,374 393,371 395,367 396,362 398,357 400,351 401,343 403,335 405,325 407,314 408,302 410,289 412,275 413,260 415,244 417,227 418,210 420,193 422,176 423,160 425,144 427,131 429,118 430,108 432,100 434,95 435,92 437,92 439,94 440,100 442,107 444,117 445,129 447,142 449,157 451,173 452,189 454,206 456,222 457,238 459,254 461,269 462,282 464,295 466,307 468,317 469,327 471,335 473,342 474,348 476,353 478,358 479,362 481,365 483,368 484,370 486,373 488,374 490,376 491,377 493,379 495,380 496,381 498,381 500,382 501,383 503,384 505,384 506,385 508,386 510,386 512,387 513,387 515,388 517,388 518,389 520,389 522,390 523,390 525,391 527,392 528,393 530,393 532,394 534,395 535,396 537,398 539,399 540,400 542,401 544,403 545,404 547,406 549,407 550,409 552,410 554,412 556,413 557,414 559,416 561,417 562,418 564,419 566,419 567,420 569,421 571,421 573,422 574,423 576,423 578,424 579,424 581,425 583,425 584,426 586,426 588,427 589,427 591,428 593,428 595,428 596,428 598,428 600,428 601,427 603,427 605,427 606,426 608,425 610,425 611,425 613,424 615,424 617,424 618,424 620,425 622,425 623,426 625,427 627,428 628,429 630,430 632,431 633,432 635,433 637,434 639,434 640,435 642,435 644,435 645,435 647,435 649,435 650,434 652,434 654,434 655,433 657,433 659,433 661,432 662,432 664,431 666,431 667,430 669,430 671,428 672,427 674,425 676,423 677,421 679,418 681,415 683,412 684,408 686,404 688,400 689,396 691,393 693,389 694,386 696,384 698,382 700,381 701,380 703,380 705,382 706,383 708,386 710,389 711,393 713,397 715,401 716,406 718,410 720,415 722,419 723,424 725,428 727,431 728,435 730,438 732,440 733,443 735,445 737,446 738,448 740,449 742,450 744,451 745,452 747,452 749,453 750,454 752,454 754,455 755,455 757,455 759,456 760,456 762,456 764,456 766,456 767,456 769,456 771,456 772,456 774,455 776,455 777,455 779,455 781,455 782,455 784,455 786,456 788,456 789,456 791,457 793,457 794,458 796,458 798,459 799,459 801,459 803,460 804,460 806,460 808,460 810,460 811,461 813,461 815,461 816,461 818,461 820,461 821,461 823,460 825,460 827,460 828,460 830,460 832,460 833,460 835,459 837,459 838,458 840,458 842,457 843,456 845,455 847,455 849,454 850,453 852,452 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="437,473 437,92 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,163 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Iterations
</text>
<text x="480" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (s)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="472" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,472 86,472 "/>
<text x="77" y="431" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,431 86,431 "/>
<text x="77" y="389" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,389 86,389 "/>
<text x="77" y="347" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,347 86,347 "/>
<text x="77" y="305" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,305 86,305 "/>
<text x="77" y="263" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,263 86,263 "/>
<text x="77" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,221 86,221 "/>
<text x="77" y="179" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.7
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,179 86,179 "/>
<text x="77" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,137 86,137 "/>
<text x="77" y="95" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,95 86,95 "/>
<text x="77" y="53" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,53 86,53 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 872,473 "/>
<text x="144" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="144,473 144,478 "/>
<text x="226" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="226,473 226,478 "/>
<text x="307" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="307,473 307,478 "/>
<text x="388" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="388,473 388,478 "/>
<text x="469" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="469,473 469,478 "/>
<text x="550" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="550,473 550,478 "/>
<text x="631" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="631,473 631,478 "/>
<text x="713" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="713,473 713,478 "/>
<text x="794" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="794,473 794,478 "/>
<text x="933" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(90, 933, 263)">
Density (a.u.)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,53 873,473 "/>
<text x="883" y="473" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,473 878,473 "/>
<text x="883" y="426" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,426 878,426 "/>
<text x="883" y="378" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,378 878,378 "/>
<text x="883" y="331" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,331 878,331 "/>
<text x="883" y="283" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,283 878,283 "/>
<text x="883" y="235" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,235 878,235 "/>
<text x="883" y="188" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,188 878,188 "/>
<text x="883" y="140" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,140 878,140 "/>
<text x="883" y="92" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,92 878,92 "/>
<polygon opacity="0.5" fill="#1F78B4" points="87,472 88,472 90,471 91,471 93,471 94,471 96,470 98,470 99,469 101,469 102,468 104,468 105,467 107,467 109,466 110,465 112,465 113,464 115,463 116,462 118,461 120,460 121,458 123,457 124,455 126,454 127,452 129,450 131,449 132,447 134,444 135,442 137,440 138,437 140,435 142,432 143,429 145,426 146,422 148,419 150,415 151,411 153,407 154,403 156,399 157,394 159,390 161,385 162,380 164,375 165,369 167,364 168,358 170,352 172,346 173,340 175,334 176,327 178,321 179,314 181,307 183,300 184,293 186,286 187,279 189,272 190,265 192,258 194,250 195,243 197,236 198,228 200,221 201,214 203,207 205,199 206,192 208,185 209,179 211,172 213,165 214,159 216,152 217,146 219,140 220,134 222,128 224,123 225,118 227,113 228,108 230,103 231,98 233,94 235,90 236,86 238,83 239,79 241,76 242,73 244,70 246,68 247,66 249,64 250,62 252,60 253,59 255,57 257,56 258,55 260,55 261,54 263,54 264,54 266,53 268,54 269,54 271,54 272,55 274,56 276,56 277,57 279,59 280,60 282,61 283,63 285,64 287,66 288,68 290,69 291,71 293,73 294,75 296,78 298,80 299,82 301,85 302,87 304,90 305,93 307,95 309,98 310,101 312,104 313,107 315,110 316,113 318,116 320,119 321,123 323,126 324,129 326,132 327,136 329,139 331,143 332,146 334,149 335,153 337,156 339,160 340,163 342,166 343,170 345,173 346,177 348,180 350,183 351,187 353,190 354,193 356,196 357,200 359,203 361,206 362,209 364,212 365,215 367,218 368,221 370,224 372,227 373,230 375,233 376,235 378,238 379,241 381,243 383,246 384,249 386,251 387,254 389,256 391,259 392,261 394,264 395,267 397,269 398,271 400,274 402,276 403,279 405,281 406,284 408,286 409,289 411,291 413,294 414,296 416,299 417,301 419,304 420,306 422,309 424,311 425,314 427,316 428,319 430,321 431,324 433,326 435,329 436,331 438,334 439,336 441,338 442,341 444,343 446,345 447,348 449,350 450,352 452,354 454,356 455,358 457,360 458,362 460,364 461,365 463,367 465,369 466,370 468,372 469,373 471,374 472,376 474,377 476,378 477,379 479,380 480,381 482,382 483,383 485,384 487,385 488,386 490,386 491,387 493,388 494,388 496,389 498,389 499,390 501,390 502,391 504,391 505,392 507,392 509,392 510,393 512,393 513,394 515,394 517,395 518,395 520,396 521,396 523,397 524,397 526,398 528,398 529,399 531,400 532,401 534,401 535,402 537,403 539,404 540,405 542,405 543,406 545,407 546,408 548,409 550,410 551,411 553,413 554,414 556,415 557,416 559,417 561,418 562,420 564,421 565,422 567,423 568,424 570,426 572,427 573,428 575,429 576,430 578,432 580,433 581,434 583,435 584,436 586,437 587,438 589,439 591,440 592,441 594,442 595,443 597,444 598,445 600,446 602,447 603,448 605,448 606,449 608,450 609,451 611,451 613,452 614,453 616,453 617,454 619,454 620,455 622,455 624,456 625,456 627,457 628,457 630,458 632,458 633,458 635,459 636,459 638,459 639,460 641,460 643,460 644,461 646,461 647,461 649,461 650,461 652,462 654,462 655,462 657,462 658,462 660,463 661,463 663,463 665,463 666,463 668,463 669,464 671,464 672,464 674,464 676,464 677,464 679,464 680,464 682,464 683,464 685,464 687,464 688,464 690,464 691,464 693,464 695,464 696,464 698,464 699,464 701,464 702,464 704,464 706,464 707,464 709,464 710,464 712,464 713,464 715,464 717,464 718,464 720,464 721,464 723,464 724,464 726,464 728,464 729,464 731,464 732,464 734,464 735,464 737,464 739,464 740,464 742,464 743,464 745,464 746,464 748,464 750,465 751,465 753,465 754,465 756,465 758,465 759,465 761,465 762,466 764,466 765,466 767,466 769,466 770,466 772,467 773,467 775,467 776,467 778,467 780,468 781,468 783,468 784,468 786,468 787,469 789,469 791,469 792,469 794,469 795,469 797,470 798,470 800,470 802,470 803,470 805,470 806,471 808,471 809,471 811,471 813,471 814,471 816,471 817,472 819,472 821,472 822,472 824,472 825,472 827,472 828,472 830,472 832,472 833,473 835,473 836,473 838,473 839,473 841,473 843,473 844,473 846,473 847,473 849,473 850,473 852,473 854,473 855,473 857,473 858,473 860,473 861,473 863,473 865,473 866,473 868,473 869,473 871,473 873,473 873,473 87,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="326,472 326,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="87,472 87,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="608,472 608,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="87,472 87,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="832,472 832,53 "/>
<circle cx="637" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="740" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="637" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="740" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<text x="776" y="228" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
PDF
</text>
<text x="776" y="243" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mean
</text>
<text x="776" y="258" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
&quot;Clean&quot; sample
</text>
<text x="776" y="273" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mild outliers
</text>
<text x="776" y="288" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Severe outliers
</text>
<rect x="746" y="228" width="20" height="10" opacity="0.5" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="746,248 766,248 "/>
<circle cx="756" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="756" cy="278" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="756" cy="293" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,68 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Density (a.u.)
</text>
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (s)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,244 74,244 "/>
<text x="65" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,221 74,221 "/>
<text x="65" y="197" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,197 74,197 "/>
<text x="65" y="174" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,174 74,174 "/>
<text x="65" y="150" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,150 74,150 "/>
<text x="65" y="126" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,126 74,126 "/>
<text x="65" y="103" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,103 74,103 "/>
<text x="65" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,79 74,79 "/>
<text x="65" y="56" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,56 74,56 "/>
<text x="65" y="32" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,32 74,32 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="82" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="82,245 82,250 "/>
<text x="175" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="175,245 175,250 "/>
<text x="268" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="268,245 268,250 "/>
<text x="361" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="361,245 361,250 "/>
<polygon opacity="0.25" fill="#1F78B4" points="75,244 75,244 76,243 77,243 77,243 78,243 79,243 80,243 80,242 81,242 82,242 82,242 83,241 84,241 85,241 85,240 86,240 87,240 87,239 88,239 89,238 90,238 90,237 91,236 92,236 92,235 93,234 94,233 95,232 95,231 96,230 97,229 98,228 98,227 99,225 100,224 100,222 101,221 102,219 103,217 103,216 104,214 105,212 105,210 106,208 107,205 108,203 108,201 109,198 110,195 110,193 111,190 112,187 113,184 113,181 114,178 115,175 116,172 116,169 117,165 118,162 118,159 119,155 120,152 121,148 121,145 122,141 123,137 123,134 124,130 125,127 126,123 126,119 127,116 128,112 128,109 129,105 130,102 131,98 131,95 132,92 133,88 133,85 134,82 135,79 136,76 136,73 137,71 138,68 139,66 139,63 140,61 141,59 141,56 142,54 143,53 144,51 144,49 145,48 146,46 146,45 147,43 148,42 149,41 149,40 150,40 151,39 151,38 152,38 153,37 154,37 154,37 155,36 156,36 157,36 157,36 158,37 159,37 159,37 160,37 161,38 162,38 162,39 163,39 164,40 164,41 165,42 166,42 167,43 167,44 168,45 169,46 169,47 170,48 171,49 172,51 172,52 173,53 174,54 175,56 175,57 176,58 177,60 177,61 178,63 179,64 180,66 180,67 181,69 182,71 182,72 183,74 184,75 185,77 185,79 186,80 187,82 187,84 188,86 189,87 190,89 190,91 191,92 192,94 192,96 193,97 194,99 195,101 195,102 196,104 197,106 198,107 198,109 199,110 200,112 200,113 201,115 202,116 203,118 203,119 204,121 205,122 205,124 206,125 207,126 208,128 208,129 209,130 210,132 210,133 211,134 212,136 213,137 213,138 214,139 215,141 216,142 216,143 217,144 218,146 218,147 219,148 220,149 221,151 221,152 222,153 223,154 223,155 224,157 225,158 226,159 226,160 227,162 228,163 228,164 229,165 230,167 231,168 231,169 232,170 233,172 233,173 234,174 235,175 236,176 236,178 237,179 238,180 239,181 239,182 240,183 241,184 241,185 242,186 243,187 244,188 244,189 245,190 246,191 246,192 247,193 248,193 249,194 249,195 250,195 251,196 251,197 252,197 253,198 254,198 254,199 255,199 256,200 257,200 257,201 258,201 259,201 259,202 260,202 261,202 262,202 262,203 263,203 264,203 264,203 265,204 266,204 267,204 267,204 268,205 269,205 269,205 270,205 271,205 272,206 272,206 273,206 274,206 275,207 275,207 276,207 277,208 277,208 278,208 279,209 280,209 280,209 281,210 282,210 282,211 283,211 284,212 285,212 285,213 286,213 287,214 287,214 288,215 289,215 290,216 290,217 291,217 292,218 292,218 293,219 294,220 295,220 295,221 296,221 297,222 298,223 298,223 299,224 300,224 300,225 301,225 302,226 303,227 303,227 304,228 305,228 305,229 306,229 307,230 308,230 308,230 309,231 310,231 310,232 311,232 312,232 313,233 313,233 314,234 315,234 316,234 316,234 317,235 318,235 318,235 319,236 320,236 321,236 321,236 322,236 323,237 323,237 324,237 325,237 326,237 326,237 327,238 328,238 328,238 329,238 330,238 331,238 331,238 332,239 333,239 333,239 334,239 335,239 336,239 336,239 337,239 338,239 339,239 339,239 340,239 341,240 341,240 342,240 343,240 344,240 344,240 345,240 346,240 346,240 347,240 348,240 349,240 349,240 350,240 351,240 351,240 352,240 353,240 354,240 354,240 355,240 356,240 357,240 357,240 358,240 359,240 359,240 360,240 361,240 362,240 362,240 363,240 364,240 364,240 365,240 366,240 367,240 367,240 368,240 369,240 369,240 370,240 371,240 372,240 372,240 373,240 374,240 375,240 375,240 376,240 377,240 377,240 378,240 379,240 380,240 380,240 381,240 382,240 382,240 383,241 384,241 385,241 385,241 386,241 387,241 387,241 388,241 389,241 390,241 390,241 391,242 392,242 392,242 393,242 394,242 395,242 395,242 396,242 397,242 398,242 398,242 399,243 400,243 400,243 401,243 402,243 403,243 403,243 404,243 405,243 405,243 406,243 407,243 408,243 408,244 409,244 410,244 410,244 411,244 412,244 413,244 413,244 414,244 415,244 416,244 416,244 417,244 418,244 418,244 419,244 420,244 421,244 421,244 422,244 423,244 423,244 424,244 425,244 426,244 426,244 427,244 428,244 428,244 429,244 430,244 431,244 431,244 432,244 433,244 434,244 434,244 75,244 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="184,244 184,76 "/>
</svg>

Before

Width:  |  Height:  |  Size: 7.8 KiB

@@ -1,84 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite:typical
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (s)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="443" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,443 86,443 "/>
<text x="77" y="392" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,392 86,392 "/>
<text x="77" y="341" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,341 86,341 "/>
<text x="77" y="290" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,290 86,290 "/>
<text x="77" y="238" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,238 86,238 "/>
<text x="77" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,187 86,187 "/>
<text x="77" y="136" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,136 86,136 "/>
<text x="77" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,85 86,85 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="160" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="160,473 160,478 "/>
<text x="299" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.02
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="299,473 299,478 "/>
<text x="439" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.04
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="439,473 439,478 "/>
<text x="578" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.06
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="578,473 578,478 "/>
<text x="717" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.08
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="717,473 717,478 "/>
<text x="857" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="857,473 857,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,470 97,469 98,468 100,467 102,467 103,466 105,465 107,464 109,464 110,463 112,462 114,461 115,460 117,459 119,458 120,457 122,456 124,456 125,455 127,454 129,452 131,451 132,450 134,449 136,448 137,447 139,446 141,445 142,443 144,442 146,441 147,440 149,438 151,437 153,436 154,434 156,433 158,432 159,430 161,429 163,427 164,426 166,425 168,423 169,422 171,420 173,419 175,417 176,416 178,414 180,413 181,412 183,410 185,409 186,407 188,406 190,404 191,403 193,401 195,400 197,398 198,396 200,395 202,393 203,391 205,390 207,388 208,386 210,384 212,383 214,381 215,379 217,377 219,375 220,373 222,372 224,370 225,368 227,366 229,364 230,362 232,360 234,358 236,356 237,354 239,352 241,350 242,348 244,346 246,343 247,341 249,339 251,337 252,335 254,332 256,330 258,328 259,326 261,323 263,321 264,319 266,316 268,314 269,312 271,310 273,307 274,305 276,303 278,300 280,298 281,296 283,293 285,291 286,289 288,286 290,284 291,281 293,279 295,277 296,274 298,272 300,269 302,267 303,264 305,262 307,259 308,256 310,254 312,251 313,249 315,246 317,243 318,241 320,238 322,235 324,233 325,230 327,228 329,225 330,222 332,220 334,217 335,215 337,212 339,210 341,207 342,205 344,202 346,200 347,198 349,195 351,193 352,191 354,189 356,186 357,184 359,182 361,180 363,178 364,176 366,174 368,172 369,170 371,169 373,167 374,165 376,163 378,161 379,159 381,157 383,156 385,154 386,152 388,150 390,148 391,146 393,144 395,142 396,140 398,138 400,136 401,133 403,131 405,129 407,127 408,126 410,124 412,122 413,120 415,118 417,117 418,115 420,114 422,112 423,111 425,110 427,109 429,108 430,107 432,106 434,105 435,104 437,104 439,103 440,102 442,102 444,101 445,100 447,100 449,99 451,99 452,98 454,98 456,97 457,96 459,96 461,95 462,95 464,95 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,95 486,95 488,95 490,96 491,96 493,96 495,97 496,97 498,97 500,98 501,98 503,99 505,99 506,99 508,100 510,100 512,100 513,101 515,101 517,101 518,102 520,103 522,103 523,104 525,105 527,105 528,106 530,107 532,108 534,110 535,111 537,112 539,113 540,115 542,116 544,118 545,119 547,121 549,122 550,124 552,125 554,127 556,128 557,130 559,131 561,133 562,134 564,136 566,137 567,139 569,140 571,142 573,143 574,145 576,146 578,148 579,149 581,151 583,152 584,154 586,155 588,157 589,159 591,160 593,162 595,164 596,165 598,167 600,169 601,171 603,173 605,175 606,177 608,179 610,181 611,183 613,185 615,188 617,190 618,192 620,194 622,197 623,199 625,201 627,203 628,205 630,208 632,210 633,212 635,214 637,216 639,218 640,220 642,222 644,224 645,227 647,229 649,231 650,233 652,235 654,237 655,239 657,241 659,243 661,245 662,247 664,249 666,251 667,253 669,255 671,257 672,259 674,261 676,263 677,265 679,267 681,268 683,270 684,272 686,274 688,276 689,278 691,280 693,282 694,284 696,286 698,287 700,289 701,291 703,293 705,295 706,297 708,299 710,301 711,303 713,305 715,308 716,310 718,312 720,314 722,316 723,318 725,320 727,323 728,325 730,327 732,329 733,331 735,333 737,336 738,338 740,340 742,342 744,344 745,346 747,348 749,350 750,352 752,354 754,356 755,358 757,359 759,361 760,363 762,365 764,366 766,368 767,370 769,372 771,373 772,375 774,377 776,378 777,380 779,382 781,383 782,385 784,387 786,388 788,390 789,392 791,393 793,395 794,396 796,398 798,400 799,401 801,403 803,404 804,406 806,407 808,408 810,410 811,411 813,412 815,414 816,415 818,416 820,417 821,419 823,420 825,421 827,422 828,423 830,424 832,425 833,426 835,427 837,428 838,429 840,430 842,431 843,432 845,433 847,434 849,435 850,436 852,437 854,438 855,439 857,440 859,441 860,442 862,443 864,444 865,445 867,446 869,447 871,448 872,448 874,449 876,450 877,451 879,451 881,452 882,453 884,453 886,454 887,455 889,455 891,456 893,457 894,457 896,458 898,459 899,459 901,460 903,460 904,461 906,462 908,462 909,463 911,464 913,464 915,465 916,466 918,466 920,467 921,467 923,468 925,469 926,469 928,470 930,471 932,471 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,426 166,425 168,423 169,422 171,420 173,419 175,417 176,416 178,414 180,413 181,412 183,410 185,409 186,407 188,406 190,404 191,403 193,401 195,400 197,398 198,396 200,395 202,393 203,391 205,390 207,388 208,386 210,384 212,383 214,381 215,379 217,377 219,375 220,373 222,372 224,370 225,368 227,366 229,364 230,362 232,360 234,358 236,356 237,354 239,352 241,350 242,348 244,346 246,343 247,341 249,339 251,337 252,335 254,332 256,330 258,328 259,326 261,323 263,321 264,319 266,316 268,314 269,312 271,310 273,307 274,305 276,303 278,300 280,298 281,296 283,293 285,291 286,289 288,286 290,284 291,281 293,279 295,277 296,274 298,272 300,269 302,267 303,264 305,262 307,259 308,256 310,254 312,251 313,249 315,246 317,243 318,241 320,238 322,235 324,233 325,230 327,228 329,225 330,222 332,220 334,217 335,215 337,212 339,210 341,207 342,205 344,202 346,200 347,198 349,195 351,193 352,191 354,189 356,186 357,184 359,182 361,180 363,178 364,176 366,174 368,172 369,170 371,169 373,167 374,165 376,163 378,161 379,159 381,157 383,156 385,154 386,152 388,150 390,148 391,146 393,144 395,142 396,140 398,138 400,136 401,133 403,131 405,129 407,127 408,126 410,124 412,122 413,120 415,118 417,117 418,115 420,114 422,112 423,111 425,110 427,109 429,108 430,107 432,106 434,105 435,104 437,104 439,103 440,102 442,102 444,101 445,100 447,100 449,99 451,99 452,98 454,98 456,97 457,96 459,96 461,95 462,95 464,95 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,95 486,95 488,95 490,96 491,96 493,96 495,97 496,97 498,97 500,98 501,98 503,99 505,99 506,99 508,100 510,100 512,100 513,101 515,101 517,101 518,102 520,103 522,103 523,104 525,105 527,105 528,106 530,107 532,108 534,110 535,111 537,112 539,113 540,115 542,116 544,118 545,119 547,121 549,122 550,124 552,125 554,127 556,128 557,130 559,131 561,133 562,134 564,136 566,137 567,139 569,140 571,142 573,143 574,145 576,146 578,148 579,149 581,151 583,152 584,154 586,155 588,157 589,159 591,160 593,162 595,164 596,165 598,167 600,169 601,171 603,173 605,175 606,177 608,179 610,181 611,183 613,185 615,188 617,190 618,192 620,194 622,197 623,199 625,201 627,203 628,205 630,208 632,210 633,212 635,214 637,216 639,218 640,220 642,222 644,224 645,227 647,229 649,231 650,233 652,235 654,237 655,239 657,241 659,243 661,245 662,247 664,249 666,251 667,253 669,255 671,257 672,259 674,261 676,263 677,265 679,267 681,268 683,270 684,272 686,274 688,276 689,278 691,280 693,282 694,284 696,286 698,287 700,289 701,291 703,293 705,295 706,297 708,299 710,301 711,303 713,305 715,308 716,310 718,312 720,314 722,316 723,318 725,320 727,323 728,325 730,327 732,329 733,331 735,333 737,336 738,338 740,340 742,342 744,344 745,346 747,348 749,350 750,352 752,354 754,356 755,358 757,359 759,361 760,363 762,365 764,366 766,368 767,370 769,372 771,373 772,375 774,377 776,378 777,380 779,382 781,383 782,385 784,387 786,388 788,390 789,392 791,393 793,395 794,396 796,398 798,400 799,401 801,403 803,404 804,406 806,407 808,408 810,410 811,411 813,412 815,414 816,415 818,416 820,417 821,419 823,420 825,421 827,422 828,423 830,424 832,425 833,426 835,427 837,428 838,429 840,430 842,431 843,432 845,433 847,434 849,435 850,436 852,437 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="496,473 496,97 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,116 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>composite_scratch_pooling Summary - Criterion.rs</title>
<style type="text/css">
body {
font: 14px Helvetica Neue;
text-rendering: optimizelegibility;
}
.body {
width: 960px;
margin: auto;
}
a:link {
color: #1F78B4;
text-decoration: none;
}
h2 {
font-size: 36px;
font-weight: 300;
}
h3 {
font-size: 24px;
font-weight: 300;
}
#footer {
height: 40px;
background: #888;
color: white;
font-size: larger;
font-weight: 300;
}
#footer a {
color: white;
text-decoration: underline;
}
#footer p {
text-align: center
}
</style>
</head>
<body>
<div class="body">
<h2>composite_scratch_pooling</h2>
<h3>Violin Plot</h3>
<a href="violin.svg">
<img src="violin.svg" alt="Violin Plot" />
</a>
<p>This chart shows the relationship between function/parameter and iteration time. The thickness of the shaded
region indicates the probability that a measurement of the given function/parameter would take a particular
length of time.</p>
<section class="plots">
<a href="../../composite_scratch_pooling/cold_composite/report/index.html">
<h4>composite_scratch_pooling/cold_composite</h4>
</a>
<table width="100%">
<tbody>
<tr>
<td>
<a href="../../composite_scratch_pooling/cold_composite/report/pdf.svg">
<img src="../../composite_scratch_pooling/cold_composite/report/pdf_small.svg" alt="PDF of Slope" width="450"
height="300" />
</a>
</td>
<td>
<a href="../../composite_scratch_pooling/cold_composite/report/iteration_times.svg">
<img src="../../composite_scratch_pooling/cold_composite/report/iteration_times_small.svg" alt="Iteration Times" width="450"
height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
<section class="plots">
<a href="../../composite_scratch_pooling/warm_composite/report/index.html">
<h4>composite_scratch_pooling/warm_composite</h4>
</a>
<table width="100%">
<tbody>
<tr>
<td>
<a href="../../composite_scratch_pooling/warm_composite/report/pdf.svg">
<img src="../../composite_scratch_pooling/warm_composite/report/pdf_small.svg" alt="PDF of Slope" width="450"
height="300" />
</a>
</td>
<td>
<a href="../../composite_scratch_pooling/warm_composite/report/iteration_times.svg">
<img src="../../composite_scratch_pooling/warm_composite/report/iteration_times_small.svg" alt="Iteration Times" width="450"
height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
</div>
<div id="footer">
<p>This report was generated by
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
library in Rust.</p>
</div>
</body>
</html>
@@ -1,45 +0,0 @@
<svg width="960" height="186" viewBox="0 0 960 186" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="5" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling: Violin plot
</text>
<text x="8" y="82" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 8, 82)">
Input
</text>
<text x="528" y="178" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (s)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="103,34 103,129 "/>
<text x="94" y="106" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="8.064516129032258" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="98,106 103,106 "/>
<text x="94" y="58" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="8.064516129032258" opacity="1" fill="#000000">
composite_scratch_pooling/cold_composite
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="98,58 103,58 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="104,130 951,130 "/>
<text x="104" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="104,130 104,135 "/>
<text x="281" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="281,130 281,135 "/>
<text x="458" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="458,130 458,135 "/>
<text x="635" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="635,130 635,135 "/>
<text x="812" y="140" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="812,130 812,135 "/>
<polygon opacity="1" fill="#1F78B4" points="106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,105 106,104 106,104 106,104 106,104 106,104 106,104 106,104 106,103 106,103 106,103 106,103 106,103 106,102 106,102 106,102 106,102 106,101 106,101 106,101 106,100 106,100 106,99 106,99 106,99 106,98 106,98 106,97 106,97 106,97 106,96 106,96 107,95 107,95 107,94 107,94 107,93 107,93 107,92 107,92 107,91 107,91 107,90 107,90 107,89 107,89 107,88 107,88 107,88 107,87 107,87 107,86 107,86 107,86 107,85 107,85 107,85 107,84 107,84 107,84 107,84 107,83 107,83 107,83 107,83 107,83 107,83 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,82 107,83 107,83 107,83 107,83 107,83 107,83 107,83 107,83 107,83 107,83 107,83 107,83 107,83 107,84 107,84 107,84 107,84 107,84 107,85 107,85 107,85 107,85 107,85 107,86 107,86 107,86 107,86 107,87 107,87 107,87 107,88 107,88 107,88 107,89 107,89 107,89 107,89 107,90 107,90 107,90 107,91 107,91 107,91 107,92 107,92 107,92 107,92 107,93 107,93 107,93 107,94 107,94 107,94 107,94 107,95 107,95 107,95 107,95 107,95 107,96 107,96 107,96 107,96 107,96 107,97 108,97 108,97 108,97 108,97 108,97 108,98 108,98 108,98 108,98 108,98 108,98 108,98 108,98 108,99 108,99 108,99 108,99 108,99 108,99 108,99 108,99 108,100 108,100 108,100 108,100 108,100 108,100 108,100 108,100 108,101 108,101 108,101 108,101 108,101 108,101 108,101 108,101 108,102 108,102 108,102 108,102 108,102 108,102 108,102 108,102 108,102 108,103 108,103 108,103 108,103 108,103 108,103 108,103 108,103 108,103 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,104 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 108,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,105 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 106,106 "/>
<polygon opacity="1" fill="#1F78B4" points="106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,106 106,107 106,107 106,107 106,107 106,107 106,107 106,107 106,107 106,107 106,108 106,108 106,108 106,108 106,108 106,108 106,109 106,109 106,109 106,109 106,110 106,110 106,110 106,111 106,111 106,111 106,112 106,112 106,112 106,113 106,113 106,114 106,114 106,114 106,115 106,115 106,116 107,116 107,117 107,117 107,118 107,118 107,119 107,119 107,120 107,120 107,121 107,121 107,122 107,122 107,123 107,123 107,124 107,124 107,124 107,125 107,125 107,126 107,126 107,126 107,127 107,127 107,127 107,127 107,128 107,128 107,128 107,128 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,129 107,128 107,128 107,128 107,128 107,128 107,128 107,128 107,128 107,127 107,127 107,127 107,127 107,127 107,126 107,126 107,126 107,126 107,125 107,125 107,125 107,124 107,124 107,124 107,124 107,123 107,123 107,123 107,122 107,122 107,122 107,121 107,121 107,121 107,121 107,120 107,120 107,120 107,119 107,119 107,119 107,119 107,118 107,118 107,118 107,117 107,117 107,117 107,117 107,117 107,116 107,116 107,116 107,116 107,115 107,115 107,115 107,115 108,115 108,115 108,114 108,114 108,114 108,114 108,114 108,114 108,114 108,113 108,113 108,113 108,113 108,113 108,113 108,113 108,113 108,112 108,112 108,112 108,112 108,112 108,112 108,112 108,112 108,111 108,111 108,111 108,111 108,111 108,111 108,111 108,111 108,110 108,110 108,110 108,110 108,110 108,110 108,110 108,110 108,109 108,109 108,109 108,109 108,109 108,109 108,109 108,109 108,109 108,108 108,108 108,108 108,108 108,108 108,108 108,108 108,108 108,108 108,108 108,108 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,107 108,106 108,106 108,106 108,106 108,106 108,106 108,106 108,106 108,106 108,106 108,106 108,106 108,106 108,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 109,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 110,106 106,106 "/>
<polygon opacity="1" fill="#1F78B4" points="266,58 267,58 268,58 270,58 271,58 272,58 274,58 275,58 276,58 278,58 279,58 281,58 282,58 283,58 285,58 286,58 287,58 289,58 290,58 292,58 293,58 294,57 296,57 297,57 298,57 300,57 301,57 303,57 304,57 305,57 307,57 308,56 309,56 311,56 312,56 314,56 315,56 316,56 318,55 319,55 320,55 322,55 323,55 325,54 326,54 327,54 329,54 330,53 331,53 333,53 334,52 336,52 337,52 338,51 340,51 341,51 342,50 344,50 345,50 347,49 348,49 349,48 351,48 352,48 353,47 355,47 356,46 357,46 359,46 360,45 362,45 363,44 364,44 366,44 367,43 368,43 370,42 371,42 373,42 374,41 375,41 377,40 378,40 379,40 381,39 382,39 384,39 385,38 386,38 388,38 389,38 390,37 392,37 393,37 395,37 396,36 397,36 399,36 400,36 401,36 403,35 404,35 406,35 407,35 408,35 410,35 411,35 412,35 414,35 415,35 417,35 418,35 419,35 421,35 422,34 423,35 425,35 426,35 427,35 429,35 430,35 432,35 433,35 434,35 436,35 437,35 438,35 440,35 441,35 443,35 444,36 445,36 447,36 448,36 449,36 451,36 452,36 454,36 455,37 456,37 458,37 459,37 460,37 462,37 463,38 465,38 466,38 467,38 469,38 470,38 471,39 473,39 474,39 476,39 477,39 478,40 480,40 481,40 482,40 484,40 485,40 487,41 488,41 489,41 491,41 492,41 493,42 495,42 496,42 498,42 499,42 500,43 502,43 503,43 504,43 506,43 507,43 508,44 510,44 511,44 513,44 514,44 515,44 517,45 518,45 519,45 521,45 522,45 524,45 525,46 526,46 528,46 529,46 530,46 532,46 533,46 535,47 536,47 537,47 539,47 540,47 541,47 543,47 544,48 546,48 547,48 548,48 550,48 551,48 552,48 554,49 555,49 557,49 558,49 559,49 561,49 562,49 563,50 565,50 566,50 568,50 569,50 570,50 572,50 573,50 574,51 576,51 577,51 578,51 580,51 581,51 583,51 584,51 585,52 587,52 588,52 589,52 591,52 592,52 594,52 595,52 596,52 598,52 599,53 600,53 602,53 603,53 605,53 606,53 607,53 609,53 610,53 611,53 613,53 614,53 616,53 617,53 618,53 620,53 621,53 622,53 624,53 625,54 627,54 628,54 629,54 631,54 632,54 633,54 635,54 636,54 638,54 639,54 640,54 642,54 643,54 644,54 646,54 647,54 649,54 650,54 651,54 653,54 654,54 655,54 657,54 658,54 659,54 661,54 662,54 664,54 665,55 666,55 668,55 669,55 670,55 672,55 673,55 675,55 676,55 677,55 679,55 680,55 681,55 683,55 684,55 686,55 687,56 688,56 690,56 691,56 692,56 694,56 695,56 697,56 698,56 699,56 701,56 702,56 703,56 705,56 706,56 708,56 709,57 710,57 712,57 713,57 714,57 716,57 717,57 719,57 720,57 721,57 723,57 724,57 725,57 727,57 728,57 729,57 731,57 732,57 734,57 735,57 736,57 738,57 739,57 740,57 742,57 743,57 745,57 746,57 747,57 749,57 750,57 751,58 753,58 754,58 756,58 757,58 758,58 760,58 761,58 762,58 764,58 765,58 767,58 768,58 769,58 771,58 772,58 773,58 775,58 776,58 778,58 779,58 780,58 782,58 783,58 784,58 786,58 787,58 789,58 790,58 791,58 793,58 794,58 795,58 797,58 798,58 800,58 801,58 802,58 804,58 805,58 806,58 808,58 809,58 810,58 812,58 813,58 815,58 816,58 817,58 819,58 820,58 821,58 823,58 824,58 826,58 827,58 828,58 830,58 831,58 832,58 834,58 835,58 837,58 838,58 839,58 841,58 842,58 843,58 845,58 846,58 848,58 849,58 850,58 852,58 853,58 854,58 856,58 857,58 859,58 860,58 861,58 863,58 864,58 865,58 867,58 868,58 870,58 871,58 872,58 874,58 875,58 876,58 878,58 879,58 880,58 882,58 883,58 885,58 886,58 887,58 889,58 890,58 891,58 893,58 894,58 896,58 897,58 898,58 900,58 901,58 902,58 904,58 905,58 907,58 908,58 909,58 911,58 912,58 913,58 915,58 916,58 918,58 919,58 920,58 922,58 923,58 924,58 926,58 927,58 929,58 930,58 931,58 933,58 934,58 935,58 937,58 938,58 940,58 941,58 942,58 944,58 945,58 946,58 948,58 949,58 951,58 951,58 266,58 "/>
<polygon opacity="1" fill="#1F78B4" points="266,58 267,58 268,58 270,58 271,58 272,58 274,58 275,58 276,58 278,59 279,59 281,59 282,59 283,59 285,59 286,59 287,59 289,59 290,59 292,59 293,59 294,59 296,59 297,59 298,59 300,59 301,59 303,60 304,60 305,60 307,60 308,60 309,60 311,60 312,60 314,61 315,61 316,61 318,61 319,61 320,62 322,62 323,62 325,62 326,62 327,63 329,63 330,63 331,64 333,64 334,64 336,64 337,65 338,65 340,65 341,66 342,66 344,67 345,67 347,67 348,68 349,68 351,68 352,69 353,69 355,70 356,70 357,70 359,71 360,71 362,72 363,72 364,73 366,73 367,73 368,74 370,74 371,75 373,75 374,75 375,76 377,76 378,76 379,77 381,77 382,77 384,78 385,78 386,78 388,79 389,79 390,79 392,79 393,80 395,80 396,80 397,80 399,81 400,81 401,81 403,81 404,81 406,81 407,81 408,82 410,82 411,82 412,82 414,82 415,82 417,82 418,82 419,82 421,82 422,82 423,82 425,82 426,82 427,82 429,82 430,82 432,82 433,82 434,82 436,82 437,81 438,81 440,81 441,81 443,81 444,81 445,81 447,81 448,81 449,81 451,80 452,80 454,80 455,80 456,80 458,80 459,79 460,79 462,79 463,79 465,79 466,79 467,78 469,78 470,78 471,78 473,78 474,78 476,77 477,77 478,77 480,77 481,77 482,76 484,76 485,76 487,76 488,76 489,75 491,75 492,75 493,75 495,75 496,74 498,74 499,74 500,74 502,74 503,74 504,73 506,73 507,73 508,73 510,73 511,73 513,72 514,72 515,72 517,72 518,72 519,72 521,71 522,71 524,71 525,71 526,71 528,71 529,71 530,70 532,70 533,70 535,70 536,70 537,70 539,70 540,69 541,69 543,69 544,69 546,69 547,69 548,69 550,68 551,68 552,68 554,68 555,68 557,68 558,68 559,67 561,67 562,67 563,67 565,67 566,67 568,67 569,66 570,66 572,66 573,66 574,66 576,66 577,66 578,65 580,65 581,65 583,65 584,65 585,65 587,65 588,65 589,65 591,64 592,64 594,64 595,64 596,64 598,64 599,64 600,64 602,64 603,64 605,64 606,64 607,64 609,63 610,63 611,63 613,63 614,63 616,63 617,63 618,63 620,63 621,63 622,63 624,63 625,63 627,63 628,63 629,63 631,63 632,63 633,63 635,63 636,63 638,63 639,63 640,63 642,63 643,63 644,63 646,63 647,63 649,63 650,62 651,62 653,62 654,62 655,62 657,62 658,62 659,62 661,62 662,62 664,62 665,62 666,62 668,62 669,62 670,62 672,62 673,62 675,62 676,62 677,61 679,61 680,61 681,61 683,61 684,61 686,61 687,61 688,61 690,61 691,61 692,61 694,61 695,61 697,60 698,60 699,60 701,60 702,60 703,60 705,60 706,60 708,60 709,60 710,60 712,60 713,60 714,60 716,60 717,60 719,60 720,60 721,60 723,60 724,59 725,59 727,59 728,59 729,59 731,59 732,59 734,59 735,59 736,59 738,59 739,59 740,59 742,59 743,59 745,59 746,59 747,59 749,59 750,59 751,59 753,59 754,59 756,59 757,59 758,59 760,59 761,59 762,59 764,59 765,59 767,59 768,59 769,59 771,59 772,59 773,59 775,59 776,59 778,59 779,59 780,59 782,59 783,59 784,59 786,59 787,59 789,59 790,59 791,59 793,59 794,59 795,59 797,59 798,59 800,59 801,59 802,59 804,59 805,59 806,59 808,59 809,59 810,59 812,59 813,59 815,59 816,59 817,59 819,59 820,59 821,59 823,59 824,59 826,59 827,59 828,59 830,59 831,59 832,59 834,59 835,59 837,59 838,59 839,59 841,59 842,59 843,59 845,59 846,59 848,59 849,59 850,59 852,59 853,59 854,59 856,59 857,59 859,59 860,59 861,59 863,59 864,59 865,59 867,59 868,59 870,59 871,59 872,59 874,59 875,59 876,59 878,59 879,59 880,58 882,58 883,58 885,58 886,58 887,58 889,58 890,58 891,58 893,58 894,58 896,58 897,58 898,58 900,58 901,58 902,58 904,58 905,58 907,58 908,58 909,58 911,58 912,58 913,58 915,58 916,58 918,58 919,58 920,58 922,58 923,58 924,58 926,58 927,58 929,58 930,58 931,58 933,58 934,58 935,58 937,58 938,58 940,58 941,58 942,58 944,58 945,58 946,58 948,58 949,58 951,58 951,58 266,58 "/>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

@@ -1 +0,0 @@
{"group_id":"composite_scratch_pooling","function_id":"warm_composite","value_str":null,"throughput":null,"full_id":"composite_scratch_pooling/warm_composite","directory_name":"composite_scratch_pooling/warm_composite","title":"composite_scratch_pooling/warm_composite"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8739193.281499999,"upper_bound":8836999.776666665},"point_estimate":8787918.621666668,"standard_error":24888.125751088177},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":8756321.833333334,"upper_bound":8835374.5},"point_estimate":8806424.166666668,"standard_error":18904.674435233715},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":127140.23719281005,"upper_bound":209397.84893244688},"point_estimate":167337.84672915752,"standard_error":20429.30194321241},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":201722.05613826346,"upper_bound":292081.34446231544},"point_estimate":249681.81711921998,"standard_error":23106.85080816357}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0],"times":[52882929.0,53468728.0,52656724.0,53263492.0,52984505.0,52974711.0,56264771.0,52641259.0,49729776.0,53588174.0,51841154.0,52012132.0,51690040.0,52240427.0,53558919.0,51787042.0,53059874.0,51744531.0,53897190.0,52537931.0,49548842.0,54476644.0,52219559.0,49668271.0,52495085.0,48807304.0,51486745.0,53542993.0,52183912.0,52445831.0,53069092.0,53582390.0,51013066.0,52829187.0,52847903.0,53252697.0,53511569.0,49078654.0,53353652.0,55582574.0,54164346.0,52031027.0,53519935.0,52245576.0,53449062.0,52977883.0,53610707.0,53623281.0,52878556.0,53049861.0,53161864.0,52917005.0,52253516.0,52733970.0,53039989.0,52366121.0,53238695.0,53449694.0,52122389.0,52800394.0,49211876.0,49969006.0,50581626.0,51356789.0,54580074.0,53363258.0,54342266.0,52418907.0,52797502.0,52536760.0,53550118.0,51567283.0,53375795.0,51736790.0,57073306.0,52462191.0,53600660.0,51757935.0,52981154.0,52482062.0,52810296.0,55966728.0,54667966.0,57154805.0,53311372.0,54154166.0,52564123.0,51129498.0,51124569.0,53537973.0,55569309.0,50729027.0,53005836.0,51301345.0,52536992.0,52115090.0,52897508.0,53296875.0,50948370.0,52729817.0]}
@@ -1 +0,0 @@
[8002156.583333332,8342251.145833333,9249169.979166668,9589264.54166667]
@@ -1 +0,0 @@
{"group_id":"composite_scratch_pooling","function_id":"warm_composite","value_str":null,"throughput":null,"full_id":"composite_scratch_pooling/warm_composite","directory_name":"composite_scratch_pooling/warm_composite","title":"composite_scratch_pooling/warm_composite"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9856354.285599995,"upper_bound":10313847.4549},"point_estimate":10073839.414,"standard_error":116822.82503531317},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9617188.2,"upper_bound":10150054.0},"point_estimate":10046595.5,"standard_error":147110.25133902175},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":823473.6834204189,"upper_bound":1353835.8694446085},"point_estimate":1137647.1443027258,"standard_error":139161.58345660588},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":859365.4333941842,"upper_bound":1493746.2934818633},"point_estimate":1171626.458718749,"standard_error":165429.36906611145}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0],"times":[50336589.0,53354761.0,51253906.0,49338741.0,50323503.0,47437821.0,46203519.0,44796445.0,55620215.0,50514621.0,51657166.0,56317244.0,49115604.0,51061997.0,69947041.0,53166399.0,52243392.0,59365245.0,51775493.0,46453165.0,52307704.0,49617644.0,50727358.0,58850267.0,51168051.0,49357790.0,49138579.0,80022820.0,53954191.0,57312953.0,66078343.0,50675823.0,51585101.0,54446245.0,46339465.0,50581767.0,50142452.0,51723386.0,55221068.0,57689671.0,55854265.0,50827237.0,59355714.0,53500261.0,60513571.0,50773182.0,50488601.0,52116493.0,50658409.0,50699630.0,52174132.0,53294452.0,60080716.0,46558473.0,53915112.0,48509395.0,50669398.0,49528596.0,51212643.0,50958553.0,51502517.0,47210258.0,44916418.0,57754937.0,44496587.0,57007120.0,45073442.0,54324639.0,46755224.0,45377291.0,45232917.0,46089570.0,44929255.0,48085941.0,48798996.0,44753544.0,45355453.0,46240577.0,47742328.0,47165723.0,45213902.0,44517799.0,44704576.0,44574466.0,46319662.0,45262175.0,44128317.0,45617695.0,45693291.0,46721210.0,45513412.0,44329366.0,44829958.0,45150797.0,44171853.0,43907689.0,44321852.0,44596232.0,44624972.0,44995368.0]}
@@ -1 +0,0 @@
[5117617.3999999985,7117971.124999999,12452247.725000001,14452601.450000001]
@@ -1 +0,0 @@
{"group_id":"composite_scratch_pooling","function_id":"warm_composite","value_str":null,"throughput":null,"full_id":"composite_scratch_pooling/warm_composite","directory_name":"composite_scratch_pooling/warm_composite","title":"composite_scratch_pooling/warm_composite"}
@@ -1 +0,0 @@
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9856354.285599995,"upper_bound":10313847.4549},"point_estimate":10073839.414,"standard_error":116822.82503531317},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":9617188.2,"upper_bound":10150054.0},"point_estimate":10046595.5,"standard_error":147110.25133902175},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":823473.6834204189,"upper_bound":1353835.8694446085},"point_estimate":1137647.1443027258,"standard_error":139161.58345660588},"slope":null,"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":859365.4333941842,"upper_bound":1493746.2934818633},"point_estimate":1171626.458718749,"standard_error":165429.36906611145}}
@@ -1 +0,0 @@
{"sampling_mode":"Flat","iters":[5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0],"times":[50336589.0,53354761.0,51253906.0,49338741.0,50323503.0,47437821.0,46203519.0,44796445.0,55620215.0,50514621.0,51657166.0,56317244.0,49115604.0,51061997.0,69947041.0,53166399.0,52243392.0,59365245.0,51775493.0,46453165.0,52307704.0,49617644.0,50727358.0,58850267.0,51168051.0,49357790.0,49138579.0,80022820.0,53954191.0,57312953.0,66078343.0,50675823.0,51585101.0,54446245.0,46339465.0,50581767.0,50142452.0,51723386.0,55221068.0,57689671.0,55854265.0,50827237.0,59355714.0,53500261.0,60513571.0,50773182.0,50488601.0,52116493.0,50658409.0,50699630.0,52174132.0,53294452.0,60080716.0,46558473.0,53915112.0,48509395.0,50669398.0,49528596.0,51212643.0,50958553.0,51502517.0,47210258.0,44916418.0,57754937.0,44496587.0,57007120.0,45073442.0,54324639.0,46755224.0,45377291.0,45232917.0,46089570.0,44929255.0,48085941.0,48798996.0,44753544.0,45355453.0,46240577.0,47742328.0,47165723.0,45213902.0,44517799.0,44704576.0,44574466.0,46319662.0,45262175.0,44128317.0,45617695.0,45693291.0,46721210.0,45513412.0,44329366.0,44829958.0,45150797.0,44171853.0,43907689.0,44321852.0,44596232.0,44624972.0,44995368.0]}
@@ -1 +0,0 @@
[5117617.3999999985,7117971.124999999,12452247.725000001,14452601.450000001]
@@ -1,84 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite:MAD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="429" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,429 86,429 "/>
<text x="77" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,368 86,368 "/>
<text x="77" y="306" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,306 86,306 "/>
<text x="77" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,244 86,244 "/>
<text x="77" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,182 86,182 "/>
<text x="77" y="120" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,120 86,120 "/>
<text x="77" y="59" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,59 86,59 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="133" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="133,473 133,478 "/>
<text x="263" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="263,473 263,478 "/>
<text x="393" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="393,473 393,478 "/>
<text x="524" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="524,473 524,478 "/>
<text x="654" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="654,473 654,478 "/>
<text x="785" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="785,473 785,478 "/>
<text x="915" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="915,473 915,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,469 97,469 98,468 100,467 102,467 103,466 105,465 107,465 109,464 110,463 112,463 114,462 115,461 117,460 119,460 120,459 122,458 124,457 125,456 127,455 129,455 131,454 132,453 134,452 136,451 137,449 139,448 141,447 142,446 144,445 146,443 147,442 149,440 151,439 153,438 154,436 156,434 158,433 159,431 161,430 163,428 164,426 166,425 168,423 169,421 171,420 173,418 175,416 176,415 178,413 180,411 181,409 183,408 185,406 186,404 188,402 190,400 191,399 193,397 195,395 197,393 198,391 200,389 202,387 203,385 205,383 207,381 208,379 210,377 212,375 214,373 215,372 217,370 219,368 220,366 222,364 224,362 225,360 227,358 229,356 230,354 232,352 234,350 236,348 237,345 239,343 241,341 242,338 244,336 246,334 247,331 249,329 251,326 252,324 254,322 256,319 258,317 259,315 261,313 263,311 264,309 266,307 268,306 269,304 271,303 273,301 274,300 276,299 278,298 280,297 281,296 283,295 285,294 286,293 288,293 290,292 291,291 293,291 295,290 296,290 298,290 300,289 302,289 303,289 305,288 307,288 308,288 310,288 312,287 313,287 315,287 317,287 318,286 320,286 322,285 324,285 325,284 327,283 329,282 330,281 332,280 334,279 335,278 337,277 339,276 341,275 342,274 344,272 346,271 347,270 349,269 351,268 352,267 354,265 356,264 357,263 359,262 361,260 363,259 364,257 366,256 368,254 369,252 371,250 373,248 374,246 376,243 378,241 379,239 381,236 383,234 385,232 386,230 388,228 390,227 391,226 393,225 395,224 396,223 398,223 400,223 401,224 403,225 405,226 407,227 408,228 410,230 412,231 413,233 415,234 417,236 418,238 420,239 422,240 423,242 425,243 427,243 429,244 430,244 432,244 434,244 435,244 437,243 439,242 440,240 442,238 444,236 445,233 447,230 449,227 451,224 452,220 454,216 456,211 457,207 459,202 461,197 462,193 464,188 466,183 468,179 469,175 471,171 473,168 474,165 476,162 478,160 479,158 481,157 483,157 484,157 486,157 488,158 490,159 491,160 493,162 495,164 496,166 498,168 500,169 501,171 503,173 505,174 506,175 508,176 510,176 512,176 513,176 515,175 517,174 518,173 520,171 522,169 523,167 525,164 527,161 528,158 530,154 532,151 534,147 535,143 537,140 539,136 540,132 542,128 544,124 545,121 547,117 549,114 550,111 552,108 554,105 556,103 557,101 559,99 561,97 562,96 564,95 566,94 567,94 569,93 571,93 573,93 574,94 576,94 578,95 579,96 581,97 583,98 584,99 586,100 588,101 589,103 591,104 593,105 595,107 596,108 598,109 600,111 601,112 603,113 605,115 606,116 608,117 610,119 611,120 613,121 615,123 617,125 618,126 620,128 622,130 623,132 625,135 627,137 628,140 630,142 632,145 633,149 635,152 637,156 639,159 640,163 642,167 644,171 645,176 647,180 649,184 650,188 652,193 654,197 655,201 657,205 659,209 661,213 662,217 664,221 666,224 667,228 669,232 671,235 672,239 674,242 676,246 677,249 679,253 681,256 683,260 684,263 686,267 688,270 689,274 691,277 693,281 694,284 696,288 698,291 700,294 701,298 703,301 705,304 706,308 708,311 710,314 711,317 713,320 715,323 716,326 718,328 720,331 722,334 723,336 725,339 727,341 728,344 730,346 732,348 733,351 735,353 737,355 738,357 740,359 742,361 744,363 745,365 747,366 749,368 750,370 752,371 754,373 755,374 757,376 759,377 760,379 762,380 764,382 766,383 767,385 769,386 771,387 772,389 774,390 776,392 777,393 779,395 781,396 782,398 784,399 786,401 788,402 789,404 791,405 793,407 794,408 796,410 798,411 799,413 801,414 803,415 804,417 806,418 808,419 810,420 811,422 813,423 815,424 816,425 818,426 820,427 821,428 823,429 825,430 827,431 828,432 830,433 832,434 833,435 835,436 837,437 838,439 840,440 842,441 843,442 845,443 847,444 849,446 850,447 852,448 854,449 855,451 857,452 859,453 860,455 862,456 864,457 865,458 867,459 869,460 871,461 872,462 874,463 876,464 877,465 879,466 881,466 882,467 884,467 886,468 887,468 889,468 891,468 893,468 894,468 896,468 898,468 899,468 901,468 903,468 904,467 906,467 908,467 909,467 911,466 913,466 915,466 916,465 918,465 920,465 921,465 923,465 925,465 926,465 928,465 930,465 932,465 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,426 166,425 168,423 169,421 171,420 173,418 175,416 176,415 178,413 180,411 181,409 183,408 185,406 186,404 188,402 190,400 191,399 193,397 195,395 197,393 198,391 200,389 202,387 203,385 205,383 207,381 208,379 210,377 212,375 214,373 215,372 217,370 219,368 220,366 222,364 224,362 225,360 227,358 229,356 230,354 232,352 234,350 236,348 237,345 239,343 241,341 242,338 244,336 246,334 247,331 249,329 251,326 252,324 254,322 256,319 258,317 259,315 261,313 263,311 264,309 266,307 268,306 269,304 271,303 273,301 274,300 276,299 278,298 280,297 281,296 283,295 285,294 286,293 288,293 290,292 291,291 293,291 295,290 296,290 298,290 300,289 302,289 303,289 305,288 307,288 308,288 310,288 312,287 313,287 315,287 317,287 318,286 320,286 322,285 324,285 325,284 327,283 329,282 330,281 332,280 334,279 335,278 337,277 339,276 341,275 342,274 344,272 346,271 347,270 349,269 351,268 352,267 354,265 356,264 357,263 359,262 361,260 363,259 364,257 366,256 368,254 369,252 371,250 373,248 374,246 376,243 378,241 379,239 381,236 383,234 385,232 386,230 388,228 390,227 391,226 393,225 395,224 396,223 398,223 400,223 401,224 403,225 405,226 407,227 408,228 410,230 412,231 413,233 415,234 417,236 418,238 420,239 422,240 423,242 425,243 427,243 429,244 430,244 432,244 434,244 435,244 437,243 439,242 440,240 442,238 444,236 445,233 447,230 449,227 451,224 452,220 454,216 456,211 457,207 459,202 461,197 462,193 464,188 466,183 468,179 469,175 471,171 473,168 474,165 476,162 478,160 479,158 481,157 483,157 484,157 486,157 488,158 490,159 491,160 493,162 495,164 496,166 498,168 500,169 501,171 503,173 505,174 506,175 508,176 510,176 512,176 513,176 515,175 517,174 518,173 520,171 522,169 523,167 525,164 527,161 528,158 530,154 532,151 534,147 535,143 537,140 539,136 540,132 542,128 544,124 545,121 547,117 549,114 550,111 552,108 554,105 556,103 557,101 559,99 561,97 562,96 564,95 566,94 567,94 569,93 571,93 573,93 574,94 576,94 578,95 579,96 581,97 583,98 584,99 586,100 588,101 589,103 591,104 593,105 595,107 596,108 598,109 600,111 601,112 603,113 605,115 606,116 608,117 610,119 611,120 613,121 615,123 617,125 618,126 620,128 622,130 623,132 625,135 627,137 628,140 630,142 632,145 633,149 635,152 637,156 639,159 640,163 642,167 644,171 645,176 647,180 649,184 650,188 652,193 654,197 655,201 657,205 659,209 661,213 662,217 664,221 666,224 667,228 669,232 671,235 672,239 674,242 676,246 677,249 679,253 681,256 683,260 684,263 686,267 688,270 689,274 691,277 693,281 694,284 696,288 698,291 700,294 701,298 703,301 705,304 706,308 708,311 710,314 711,317 713,320 715,323 716,326 718,328 720,331 722,334 723,336 725,339 727,341 728,344 730,346 732,348 733,351 735,353 737,355 738,357 740,359 742,361 744,363 745,365 747,366 749,368 750,370 752,371 754,373 755,374 757,376 759,377 760,379 762,380 764,382 766,383 767,385 769,386 771,387 772,389 774,390 776,392 777,393 779,395 781,396 782,398 784,399 786,401 788,402 789,404 791,405 793,407 794,408 796,410 798,411 799,413 801,414 803,415 804,417 806,418 808,419 810,420 811,422 813,423 815,424 816,425 818,426 820,427 821,428 823,429 825,430 827,431 828,432 830,433 832,434 833,435 835,436 837,437 838,439 840,440 842,441 843,442 845,443 847,444 849,446 850,447 852,448 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="573,473 573,94 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,80 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite:SD
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="410" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,410 86,410 "/>
<text x="77" y="325" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,325 86,325 "/>
<text x="77" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,241 86,241 "/>
<text x="77" y="156" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,156 86,156 "/>
<text x="77" y="72" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,72 86,72 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="99" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="99,473 99,478 "/>
<text x="208" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="208,473 208,478 "/>
<text x="317" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="317,473 317,478 "/>
<text x="426" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="426,473 426,478 "/>
<text x="535" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="535,473 535,478 "/>
<text x="644" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="644,473 644,478 "/>
<text x="753" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="753,473 753,478 "/>
<text x="861" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="861,473 861,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,470 93,468 95,467 97,466 98,465 100,464 102,463 103,461 105,460 107,459 109,457 110,456 112,455 114,453 115,452 117,450 119,449 120,447 122,446 124,444 125,443 127,441 129,439 131,438 132,436 134,434 136,433 137,431 139,429 141,428 142,426 144,424 146,422 147,420 149,418 151,417 153,415 154,413 156,411 158,408 159,406 161,404 163,402 164,400 166,398 168,396 169,393 171,391 173,389 175,386 176,384 178,382 180,379 181,377 183,375 185,372 186,370 188,367 190,365 191,363 193,360 195,358 197,355 198,352 200,350 202,347 203,345 205,342 207,339 208,337 210,334 212,331 214,329 215,326 217,324 219,321 220,318 222,316 224,313 225,311 227,308 229,306 230,303 232,301 234,299 236,297 237,294 239,292 241,290 242,288 244,286 246,284 247,282 249,280 251,278 252,277 254,275 256,273 258,271 259,270 261,268 263,266 264,265 266,263 268,262 269,260 271,258 273,257 274,255 276,254 278,252 280,250 281,249 283,247 285,245 286,244 288,242 290,240 291,239 293,237 295,235 296,233 298,232 300,230 302,228 303,226 305,224 307,223 308,221 310,219 312,217 313,216 315,214 317,212 318,211 320,209 322,208 324,206 325,204 327,203 329,201 330,200 332,198 334,197 335,195 337,194 339,192 341,191 342,189 344,188 346,186 347,184 349,183 351,181 352,179 354,178 356,176 357,174 359,172 361,171 363,169 364,167 366,165 368,163 369,161 371,160 373,158 374,156 376,154 378,152 379,150 381,148 383,146 385,145 386,143 388,141 390,139 391,137 393,135 395,133 396,131 398,130 400,128 401,126 403,124 405,122 407,120 408,118 410,116 412,115 413,113 415,111 417,110 418,108 420,106 422,105 423,104 425,102 427,101 429,100 430,99 432,98 434,97 435,96 437,96 439,95 440,94 442,94 444,94 445,94 447,94 449,94 451,94 452,94 454,94 456,94 457,95 459,95 461,96 462,96 464,97 466,97 468,98 469,99 471,99 473,100 474,101 476,102 478,103 479,104 481,104 483,105 484,106 486,107 488,108 490,109 491,109 493,110 495,111 496,112 498,112 500,113 501,113 503,114 505,115 506,115 508,116 510,116 512,117 513,118 515,118 517,119 518,120 520,120 522,121 523,122 525,122 527,123 528,124 530,125 532,126 534,127 535,128 537,129 539,130 540,131 542,132 544,133 545,134 547,136 549,137 550,138 552,139 554,141 556,142 557,144 559,145 561,146 562,148 564,149 566,151 567,152 569,154 571,155 573,157 574,158 576,160 578,162 579,163 581,165 583,166 584,168 586,170 588,171 589,173 591,175 593,176 595,178 596,180 598,182 600,183 601,185 603,187 605,189 606,191 608,192 610,194 611,196 613,198 615,200 617,202 618,204 620,206 622,208 623,210 625,212 627,214 628,216 630,218 632,220 633,222 635,224 637,226 639,228 640,230 642,232 644,234 645,236 647,238 649,240 650,242 652,244 654,246 655,249 657,251 659,253 661,254 662,256 664,258 666,260 667,262 669,264 671,266 672,268 674,270 676,272 677,274 679,276 681,277 683,279 684,281 686,283 688,285 689,287 691,289 693,291 694,293 696,295 698,297 700,299 701,301 703,303 705,305 706,307 708,309 710,311 711,314 713,316 715,318 716,320 718,322 720,324 722,326 723,328 725,330 727,332 728,333 730,335 732,337 733,339 735,340 737,342 738,344 740,345 742,347 744,348 745,350 747,351 749,353 750,354 752,356 754,357 755,359 757,360 759,362 760,363 762,365 764,366 766,368 767,369 769,371 771,372 772,374 774,375 776,377 777,379 779,380 781,382 782,383 784,385 786,387 788,388 789,390 791,392 793,393 794,395 796,396 798,398 799,400 801,401 803,403 804,404 806,406 808,407 810,408 811,410 813,411 815,412 816,414 818,415 820,416 821,417 823,419 825,420 827,421 828,422 830,423 832,424 833,425 835,426 837,427 838,429 840,430 842,431 843,432 845,433 847,434 849,435 850,436 852,437 854,438 855,439 857,440 859,440 860,441 862,442 864,443 865,444 867,445 869,445 871,446 872,447 874,448 876,448 877,449 879,450 881,451 882,451 884,452 886,453 887,453 889,454 891,455 893,456 894,456 896,457 898,458 899,458 901,459 903,460 904,461 906,461 908,462 909,463 911,463 913,464 915,465 916,465 918,466 920,466 921,467 923,468 925,468 926,469 928,469 930,470 932,471 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,400 166,398 168,396 169,393 171,391 173,389 175,386 176,384 178,382 180,379 181,377 183,375 185,372 186,370 188,367 190,365 191,363 193,360 195,358 197,355 198,352 200,350 202,347 203,345 205,342 207,339 208,337 210,334 212,331 214,329 215,326 217,324 219,321 220,318 222,316 224,313 225,311 227,308 229,306 230,303 232,301 234,299 236,297 237,294 239,292 241,290 242,288 244,286 246,284 247,282 249,280 251,278 252,277 254,275 256,273 258,271 259,270 261,268 263,266 264,265 266,263 268,262 269,260 271,258 273,257 274,255 276,254 278,252 280,250 281,249 283,247 285,245 286,244 288,242 290,240 291,239 293,237 295,235 296,233 298,232 300,230 302,228 303,226 305,224 307,223 308,221 310,219 312,217 313,216 315,214 317,212 318,211 320,209 322,208 324,206 325,204 327,203 329,201 330,200 332,198 334,197 335,195 337,194 339,192 341,191 342,189 344,188 346,186 347,184 349,183 351,181 352,179 354,178 356,176 357,174 359,172 361,171 363,169 364,167 366,165 368,163 369,161 371,160 373,158 374,156 376,154 378,152 379,150 381,148 383,146 385,145 386,143 388,141 390,139 391,137 393,135 395,133 396,131 398,130 400,128 401,126 403,124 405,122 407,120 408,118 410,116 412,115 413,113 415,111 417,110 418,108 420,106 422,105 423,104 425,102 427,101 429,100 430,99 432,98 434,97 435,96 437,96 439,95 440,94 442,94 444,94 445,94 447,94 449,94 451,94 452,94 454,94 456,94 457,95 459,95 461,96 462,96 464,97 466,97 468,98 469,99 471,99 473,100 474,101 476,102 478,103 479,104 481,104 483,105 484,106 486,107 488,108 490,109 491,109 493,110 495,111 496,112 498,112 500,113 501,113 503,114 505,115 506,115 508,116 510,116 512,117 513,118 515,118 517,119 518,120 520,120 522,121 523,122 525,122 527,123 528,124 530,125 532,126 534,127 535,128 537,129 539,130 540,131 542,132 544,133 545,134 547,136 549,137 550,138 552,139 554,141 556,142 557,144 559,145 561,146 562,148 564,149 566,151 567,152 569,154 571,155 573,157 574,158 576,160 578,162 579,163 581,165 583,166 584,168 586,170 588,171 589,173 591,175 593,176 595,178 596,180 598,182 600,183 601,185 603,187 605,189 606,191 608,192 610,194 611,196 613,198 615,200 617,202 618,204 620,206 622,208 623,210 625,212 627,214 628,216 630,218 632,220 633,222 635,224 637,226 639,228 640,230 642,232 644,234 645,236 647,238 649,240 650,242 652,244 654,246 655,249 657,251 659,253 661,254 662,256 664,258 666,260 667,262 669,264 671,266 672,268 674,270 676,272 677,274 679,276 681,277 683,279 684,281 686,283 688,285 689,287 691,289 693,291 694,293 696,295 698,297 700,299 701,301 703,303 705,305 706,307 708,309 710,311 711,314 713,316 715,318 716,320 718,322 720,324 722,326 723,328 725,330 727,332 728,333 730,335 732,337 733,339 735,340 737,342 738,344 740,345 742,347 744,348 745,350 747,351 749,353 750,354 752,356 754,357 755,359 757,360 759,362 760,363 762,365 764,366 766,368 767,369 769,371 771,372 772,374 774,375 776,377 777,379 779,380 781,382 782,383 784,385 786,387 788,388 789,390 791,392 793,393 794,395 796,396 798,398 799,400 801,401 803,403 804,404 806,406 808,407 810,408 811,410 813,411 815,412 816,414 818,415 820,416 821,417 823,419 825,420 827,421 828,422 830,423 832,424 833,425 835,426 837,427 838,429 840,430 842,431 843,432 845,433 847,434 849,435 850,436 852,437 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="504,473 504,114 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,193 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>composite_scratch_pooling/warm_composite - Criterion.rs</title>
<style type="text/css">
body {
font: 14px Helvetica Neue;
text-rendering: optimizelegibility;
}
.body {
width: 960px;
margin: auto;
}
th {
font-weight: 200
}
th,
td {
padding-right: 3px;
padding-bottom: 3px;
}
a:link {
color: #1F78B4;
text-decoration: none;
}
th.ci-bound {
opacity: 0.6
}
td.ci-bound {
opacity: 0.5
}
.stats {
width: 80%;
margin: auto;
display: flex;
}
.additional_stats {
flex: 0 0 60%
}
.additional_plots {
flex: 1
}
h2 {
font-size: 36px;
font-weight: 300;
}
h3 {
font-size: 24px;
font-weight: 300;
}
#footer {
height: 40px;
background: #888;
color: white;
font-size: larger;
font-weight: 300;
}
#footer a {
color: white;
text-decoration: underline;
}
#footer p {
text-align: center
}
</style>
</head>
<body>
<div class="body">
<h2>composite_scratch_pooling/warm_composite</h2>
<div class="absolute">
<section class="plots">
<table width="100%">
<tbody>
<tr>
<td>
<a href="pdf.svg">
<img src="pdf_small.svg" alt="PDF of Slope" width="450" height="300" />
</a>
</td>
<td>
<a href="iteration_times.svg">
<img src="iteration_times_small.svg" alt="Iteration Times" width="450" height="300" />
</a>
</td>
</tr>
</tbody>
</table>
</section>
<section class="stats">
<div class="additional_stats">
<h4>Additional Statistics:</h4>
<table>
<thead>
<tr>
<th></th>
<th title="0.95 confidence level" class="ci-bound">Lower bound</th>
<th>Estimate</th>
<th title="0.95 confidence level" class="ci-bound">Upper bound</th>
</tr>
</thead>
<tbody>
<tr>
<td>R&#xb2;</td>
<td class="ci-bound">0.0081471</td>
<td>0.0084283</td>
<td class="ci-bound">0.0080883</td>
</tr>
<tr>
<td>Mean</td>
<td class="ci-bound">9.8564 ms</td>
<td>10.074 ms</td>
<td class="ci-bound">10.314 ms</td>
</tr>
<tr>
<td title="Standard Deviation">Std. Dev.</td>
<td class="ci-bound">859.37 µs</td>
<td>1.1716 ms</td>
<td class="ci-bound">1.4937 ms</td>
</tr>
<tr>
<td>Median</td>
<td class="ci-bound">9.6172 ms</td>
<td>10.047 ms</td>
<td class="ci-bound">10.150 ms</td>
</tr>
<tr>
<td title="Median Absolute Deviation">MAD</td>
<td class="ci-bound">823.47 µs</td>
<td>1.1376 ms</td>
<td class="ci-bound">1.3538 ms</td>
</tr>
</tbody>
</table>
</div>
<div class="additional_plots">
<h4>Additional Plots:</h4>
<ul>
<li>
<a href="typical.svg">Typical</a>
</li>
<li>
<a href="mean.svg">Mean</a>
</li>
<li>
<a href="SD.svg">Std. Dev.</a>
</li>
<li>
<a href="median.svg">Median</a>
</li>
<li>
<a href="MAD.svg">MAD</a>
</li>
</ul>
</div>
</section>
<section class="explanation">
<h4>Understanding this report:</h4>
<p>The plot on the left displays the average time per iteration for this benchmark. The shaded region
shows the estimated probability of an iteration taking a certain amount of time, while the line
shows the mean. Click on the plot for a larger view showing the outliers.</p>
<p>The plot on the right shows the average time per iteration for the samples. Each point
represents one sample.</p>
<p>See <a href="https://bheisler.github.io/criterion.rs/book/user_guide/command_line_output.html#additional-statistics">the
documentation</a> for more details on the additional statistics.</p>
</section>
</div>
</div>
<div id="footer">
<p>This report was generated by
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
library in Rust.</p>
</div>
</body>
</html>
@@ -1,204 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Average Iteration Time (ms)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="163" y1="472" x2="163" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="247" y1="472" x2="247" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="332" y1="472" x2="332" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="416" y1="472" x2="416" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="501" y1="472" x2="501" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="585" y1="472" x2="585" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="670" y1="472" x2="670" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="754" y1="472" x2="754" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="839" y1="472" x2="839" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="923" y1="472" x2="923" y2="53"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="460" x2="932" y2="460"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="402" x2="932" y2="402"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="344" x2="932" y2="344"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="286" x2="932" y2="286"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="228" x2="932" y2="228"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="170" x2="932" y2="170"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="112" x2="932" y2="112"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="54" x2="932" y2="54"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="460" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,460 86,460 "/>
<text x="77" y="402" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,402 86,402 "/>
<text x="77" y="344" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
11.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,344 86,344 "/>
<text x="77" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
12.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,286 86,286 "/>
<text x="77" y="228" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
13.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,228 86,228 "/>
<text x="77" y="170" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,170 86,170 "/>
<text x="77" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,112 86,112 "/>
<text x="77" y="54" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,54 86,54 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="163" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="163,473 163,478 "/>
<text x="247" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="247,473 247,478 "/>
<text x="332" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="332,473 332,478 "/>
<text x="416" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="416,473 416,478 "/>
<text x="501" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="501,473 501,478 "/>
<text x="585" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="585,473 585,478 "/>
<text x="670" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="670,473 670,478 "/>
<text x="754" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="754,473 754,478 "/>
<text x="839" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="839,473 839,478 "/>
<text x="923" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="923,473 923,478 "/>
<circle cx="87" cy="398" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="95" cy="363" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="387" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="112" cy="409" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="120" cy="398" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="129" cy="432" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="137" cy="446" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="462" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="154" cy="337" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="163" cy="396" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="383" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="329" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="188" cy="412" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="196" cy="389" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="205" cy="170" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="213" cy="365" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="376" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="230" cy="293" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="239" cy="381" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="443" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="256" cy="375" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="264" cy="406" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="393" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="281" cy="299" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="289" cy="388" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="298" cy="409" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="306" cy="412" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="323" cy="356" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="332" cy="317" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="348" cy="394" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="357" cy="383" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="350" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="374" cy="444" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="382" cy="395" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="391" cy="400" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="399" cy="382" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="341" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="313" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="425" cy="334" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="433" cy="392" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="441" cy="293" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="450" cy="361" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="458" cy="280" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="467" cy="393" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="475" cy="396" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="484" cy="377" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="492" cy="394" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="501" cy="394" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="509" cy="377" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="517" cy="364" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="526" cy="285" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="534" cy="442" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="543" cy="356" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="551" cy="419" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="560" cy="394" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="568" cy="407" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="577" cy="388" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="585" cy="391" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="594" cy="384" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="602" cy="434" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="610" cy="461" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="619" cy="312" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="627" cy="466" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="636" cy="321" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="644" cy="459" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="653" cy="352" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="661" cy="439" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="670" cy="455" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="678" cy="457" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="686" cy="447" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="695" cy="461" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="703" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="712" cy="416" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="720" cy="463" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="729" cy="456" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="737" cy="445" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="746" cy="428" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="754" cy="435" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="763" cy="457" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="771" cy="465" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="779" cy="463" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="788" cy="465" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="796" cy="445" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="805" cy="457" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="813" cy="470" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="822" cy="453" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="830" cy="452" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="839" cy="440" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="847" cy="454" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="855" cy="468" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="864" cy="462" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="872" cy="458" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="881" cy="469" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="889" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="898" cy="468" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="906" cy="465" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="915" cy="464" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="923" cy="460" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<text x="132" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Sample
</text>
<circle cx="112" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

@@ -1,197 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Average Iteration Time (ms)
</text>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="107" y1="244" x2="107" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="143" y1="244" x2="143" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="179" y1="244" x2="179" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="215" y1="244" x2="215" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="250" y1="244" x2="250" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="286" y1="244" x2="286" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="322" y1="244" x2="322" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="358" y1="244" x2="358" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="394" y1="244" x2="394" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="430" y1="244" x2="430" y2="15"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="238" x2="434" y2="238"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="206" x2="434" y2="206"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="174" x2="434" y2="174"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="142" x2="434" y2="142"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="111" x2="434" y2="111"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="79" x2="434" y2="79"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="47" x2="434" y2="47"/>
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="16" x2="434" y2="16"/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="238" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,238 74,238 "/>
<text x="65" y="206" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,206 74,206 "/>
<text x="65" y="174" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
11.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,174 74,174 "/>
<text x="65" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
12.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,142 74,142 "/>
<text x="65" y="111" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
13.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,111 74,111 "/>
<text x="65" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,79 74,79 "/>
<text x="65" y="47" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,47 74,47 "/>
<text x="65" y="16" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16.0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,16 74,16 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="107" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="107,245 107,250 "/>
<text x="143" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
20
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="143,245 143,250 "/>
<text x="179" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
30
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="179,245 179,250 "/>
<text x="215" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
40
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="215,245 215,250 "/>
<text x="250" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
50
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="250,245 250,250 "/>
<text x="286" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
60
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="286,245 286,250 "/>
<text x="322" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
70
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="322,245 322,250 "/>
<text x="358" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
80
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="358,245 358,250 "/>
<text x="394" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
90
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="394,245 394,250 "/>
<text x="430" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
100
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="430,245 430,250 "/>
<circle cx="75" cy="204" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="78" cy="185" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="82" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="85" cy="210" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="89" cy="204" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="92" cy="222" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="96" cy="230" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="100" cy="239" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="103" cy="170" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="107" cy="203" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="110" cy="195" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="114" cy="166" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="118" cy="211" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="121" cy="199" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="125" cy="79" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="128" cy="186" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="132" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="136" cy="146" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="139" cy="195" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="143" cy="228" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="146" cy="191" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="150" cy="208" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="153" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="157" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="161" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="164" cy="210" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="168" cy="211" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="171" cy="15" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="175" cy="181" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="179" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="182" cy="104" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="186" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="189" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="193" cy="178" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="197" cy="229" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="200" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="204" cy="205" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="207" cy="195" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="211" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="215" cy="157" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="218" cy="169" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="222" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="225" cy="147" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="229" cy="184" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="232" cy="139" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="236" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="240" cy="203" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="243" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="247" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="250" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="254" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="258" cy="185" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="261" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="265" cy="228" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="268" cy="181" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="272" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="276" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="279" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="283" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="286" cy="200" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="290" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="293" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="297" cy="238" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="301" cy="157" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="304" cy="241" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="308" cy="161" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="311" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="315" cy="178" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="319" cy="226" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="322" cy="235" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="326" cy="236" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="329" cy="231" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="333" cy="238" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="337" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="340" cy="213" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="344" cy="239" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="347" cy="235" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="351" cy="230" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="355" cy="220" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="358" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="362" cy="236" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="365" cy="241" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="369" cy="239" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="372" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="376" cy="229" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="380" cy="236" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="383" cy="243" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="387" cy="234" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="390" cy="233" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="394" cy="227" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="398" cy="234" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="401" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="405" cy="239" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="408" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="412" cy="243" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="416" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="419" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="423" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="426" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="430" cy="238" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

@@ -1,100 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite:mean
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="436" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,436 86,436 "/>
<text x="77" y="377" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,377 86,377 "/>
<text x="77" y="318" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,318 86,318 "/>
<text x="77" y="259" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,259 86,259 "/>
<text x="77" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,201 86,201 "/>
<text x="77" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,142 86,142 "/>
<text x="77" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,83 86,83 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="154" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.85
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="154,473 154,478 "/>
<text x="229" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="229,473 229,478 "/>
<text x="305" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.95
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="305,473 305,478 "/>
<text x="380" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="380,473 380,478 "/>
<text x="456" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.05
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="456,473 456,478 "/>
<text x="532" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="532,473 532,478 "/>
<text x="607" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="607,473 607,478 "/>
<text x="683" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="683,473 683,478 "/>
<text x="758" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.25
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="758,473 758,478 "/>
<text x="834" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="834,473 834,478 "/>
<text x="909" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.35
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="909,473 909,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,471 90,470 92,469 93,468 95,468 97,467 98,466 100,465 102,465 103,464 105,463 107,462 109,462 110,461 112,460 114,459 115,458 117,458 119,457 120,456 122,455 124,454 125,453 127,452 129,451 131,450 132,449 134,447 136,446 137,445 139,444 141,442 142,441 144,440 146,438 147,437 149,436 151,434 153,433 154,432 156,430 158,429 159,427 161,426 163,425 164,423 166,422 168,421 169,419 171,418 173,417 175,415 176,414 178,413 180,411 181,410 183,408 185,407 186,405 188,404 190,402 191,401 193,399 195,398 197,396 198,394 200,393 202,391 203,389 205,387 207,385 208,384 210,382 212,380 214,378 215,376 217,374 219,372 220,370 222,368 224,366 225,364 227,362 229,359 230,357 232,355 234,353 236,350 237,348 239,346 241,343 242,341 244,339 246,336 247,334 249,331 251,329 252,326 254,324 256,321 258,319 259,316 261,313 263,311 264,308 266,306 268,303 269,301 271,299 273,296 274,294 276,291 278,289 280,286 281,284 283,282 285,279 286,277 288,275 290,272 291,270 293,267 295,265 296,263 298,260 300,258 302,256 303,253 305,251 307,248 308,246 310,244 312,241 313,239 315,237 317,234 318,232 320,229 322,227 324,225 325,222 327,220 329,217 330,215 332,213 334,210 335,208 337,205 339,203 341,200 342,198 344,195 346,192 347,190 349,187 351,185 352,182 354,179 356,177 357,174 359,172 361,169 363,167 364,164 366,162 368,160 369,157 371,155 373,153 374,151 376,149 378,147 379,145 381,143 383,141 385,139 386,138 388,136 390,134 391,133 393,131 395,130 396,128 398,127 400,126 401,124 403,123 405,122 407,121 408,119 410,118 412,117 413,116 415,115 417,114 418,113 420,112 422,110 423,109 425,108 427,107 429,106 430,105 432,104 434,103 435,102 437,101 439,100 440,100 442,99 444,98 445,97 447,97 449,96 451,96 452,95 454,95 456,95 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,95 495,96 496,96 498,97 500,97 501,98 503,99 505,100 506,100 508,101 510,102 512,103 513,104 515,106 517,107 518,108 520,109 522,110 523,112 525,113 527,114 528,115 530,117 532,118 534,119 535,121 537,122 539,123 540,124 542,126 544,127 545,128 547,130 549,131 550,132 552,134 554,135 556,137 557,138 559,140 561,141 562,143 564,144 566,146 567,148 569,149 571,151 573,152 574,154 576,155 578,157 579,159 581,160 583,162 584,164 586,165 588,167 589,169 591,171 593,173 595,174 596,176 598,178 600,180 601,182 603,184 605,186 606,188 608,190 610,192 611,194 613,196 615,198 617,200 618,202 620,204 622,206 623,208 625,210 627,212 628,214 630,216 632,218 633,220 635,222 637,224 639,226 640,228 642,231 644,233 645,235 647,237 649,239 650,241 652,243 654,245 655,247 657,249 659,251 661,254 662,256 664,258 666,260 667,262 669,264 671,266 672,268 674,270 676,272 677,275 679,277 681,279 683,281 684,283 686,285 688,287 689,289 691,291 693,293 694,296 696,298 698,300 700,302 701,304 703,306 705,308 706,310 708,312 710,314 711,316 713,318 715,320 716,322 718,324 720,326 722,328 723,330 725,332 727,334 728,336 730,338 732,340 733,342 735,344 737,346 738,348 740,350 742,352 744,354 745,356 747,358 749,360 750,362 752,364 754,366 755,368 757,370 759,371 760,373 762,375 764,376 766,378 767,380 769,381 771,383 772,384 774,386 776,387 777,388 779,390 781,391 782,393 784,394 786,395 788,397 789,398 791,399 793,401 794,402 796,403 798,405 799,406 801,407 803,409 804,410 806,411 808,412 810,414 811,415 813,416 815,417 816,418 818,419 820,420 821,422 823,423 825,424 827,425 828,426 830,427 832,428 833,429 835,430 837,431 838,432 840,433 842,434 843,434 845,435 847,436 849,437 850,438 852,439 854,440 855,441 857,442 859,443 860,444 862,445 864,445 865,446 867,447 869,448 871,449 872,450 874,450 876,451 877,452 879,453 881,454 882,454 884,455 886,456 887,457 889,457 891,458 893,459 894,460 896,460 898,461 899,462 901,462 903,463 904,464 906,464 908,465 909,465 911,466 913,467 915,467 916,468 918,468 920,469 921,469 923,470 925,471 926,471 928,472 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,423 166,422 168,421 169,419 171,418 173,417 175,415 176,414 178,413 180,411 181,410 183,408 185,407 186,405 188,404 190,402 191,401 193,399 195,398 197,396 198,394 200,393 202,391 203,389 205,387 207,385 208,384 210,382 212,380 214,378 215,376 217,374 219,372 220,370 222,368 224,366 225,364 227,362 229,359 230,357 232,355 234,353 236,350 237,348 239,346 241,343 242,341 244,339 246,336 247,334 249,331 251,329 252,326 254,324 256,321 258,319 259,316 261,313 263,311 264,308 266,306 268,303 269,301 271,299 273,296 274,294 276,291 278,289 280,286 281,284 283,282 285,279 286,277 288,275 290,272 291,270 293,267 295,265 296,263 298,260 300,258 302,256 303,253 305,251 307,248 308,246 310,244 312,241 313,239 315,237 317,234 318,232 320,229 322,227 324,225 325,222 327,220 329,217 330,215 332,213 334,210 335,208 337,205 339,203 341,200 342,198 344,195 346,192 347,190 349,187 351,185 352,182 354,179 356,177 357,174 359,172 361,169 363,167 364,164 366,162 368,160 369,157 371,155 373,153 374,151 376,149 378,147 379,145 381,143 383,141 385,139 386,138 388,136 390,134 391,133 393,131 395,130 396,128 398,127 400,126 401,124 403,123 405,122 407,121 408,119 410,118 412,117 413,116 415,115 417,114 418,113 420,112 422,110 423,109 425,108 427,107 429,106 430,105 432,104 434,103 435,102 437,101 439,100 440,100 442,99 444,98 445,97 447,97 449,96 451,96 452,95 454,95 456,95 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,95 495,96 496,96 498,97 500,97 501,98 503,99 505,100 506,100 508,101 510,102 512,103 513,104 515,106 517,107 518,108 520,109 522,110 523,112 525,113 527,114 528,115 530,117 532,118 534,119 535,121 537,122 539,123 540,124 542,126 544,127 545,128 547,130 549,131 550,132 552,134 554,135 556,137 557,138 559,140 561,141 562,143 564,144 566,146 567,148 569,149 571,151 573,152 574,154 576,155 578,157 579,159 581,160 583,162 584,164 586,165 588,167 589,169 591,171 593,173 595,174 596,176 598,178 600,180 601,182 603,184 605,186 606,188 608,190 610,192 611,194 613,196 615,198 617,200 618,202 620,204 622,206 623,208 625,210 627,212 628,214 630,216 632,218 633,220 635,222 637,224 639,226 640,228 642,231 644,233 645,235 647,237 649,239 650,241 652,243 654,245 655,247 657,249 659,251 661,254 662,256 664,258 666,260 667,262 669,264 671,266 672,268 674,270 676,272 677,275 679,277 681,279 683,281 684,283 686,285 688,287 689,289 691,291 693,293 694,296 696,298 698,300 700,302 701,304 703,306 705,308 706,310 708,312 710,314 711,316 713,318 715,320 716,322 718,324 720,326 722,328 723,330 725,332 727,334 728,336 730,338 732,340 733,342 735,344 737,346 738,348 740,350 742,352 744,354 745,356 747,358 749,360 750,362 752,364 754,366 755,368 757,370 759,371 760,373 762,375 764,376 766,378 767,380 769,381 771,383 772,384 774,386 776,387 777,388 779,390 781,391 782,393 784,394 786,395 788,397 789,398 791,399 793,401 794,402 796,403 798,405 799,406 801,407 803,409 804,410 806,411 808,412 810,414 811,415 813,416 815,417 816,418 818,419 820,420 821,422 823,423 825,424 827,425 828,426 830,427 832,428 833,429 835,430 837,431 838,432 840,433 842,434 843,434 845,435 847,436 849,437 850,438 852,439 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="492,473 492,95 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

@@ -1,96 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite:median
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="442" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,442 86,442 "/>
<text x="77" y="403" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,403 86,403 "/>
<text x="77" y="364" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,364 86,364 "/>
<text x="77" y="325" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,325 86,325 "/>
<text x="77" y="286" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,286 86,286 "/>
<text x="77" y="247" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,247 86,247 "/>
<text x="77" y="208" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,208 86,208 "/>
<text x="77" y="169" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,169 86,169 "/>
<text x="77" y="130" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,130 86,130 "/>
<text x="77" y="91" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,91 86,91 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="141" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.6
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="141,473 141,478 "/>
<text x="271" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.7
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="271,473 271,478 "/>
<text x="401" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="401,473 401,478 "/>
<text x="530" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="530,473 530,478 "/>
<text x="660" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="660,473 660,478 "/>
<text x="790" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="790,473 790,478 "/>
<text x="919" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="919,473 919,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,471 90,471 92,471 93,471 95,471 97,471 98,471 100,471 102,471 103,471 105,470 107,470 109,470 110,470 112,470 114,470 115,470 117,470 119,470 120,470 122,470 124,470 125,469 127,469 129,469 131,469 132,469 134,469 136,469 137,469 139,469 141,469 142,469 144,469 146,468 147,468 149,468 151,468 153,468 154,467 156,467 158,467 159,467 161,467 163,467 164,466 166,466 168,466 169,467 171,467 173,467 175,467 176,467 178,467 180,468 181,468 183,468 185,468 186,468 188,468 190,468 191,468 193,468 195,468 197,468 198,467 200,467 202,467 203,466 205,466 207,466 208,465 210,465 212,465 214,464 215,464 217,464 219,464 220,464 222,464 224,464 225,464 227,464 229,464 230,464 232,464 234,464 236,464 237,464 239,464 241,464 242,464 244,464 246,464 247,463 249,463 251,463 252,462 254,462 256,461 258,461 259,460 261,460 263,460 264,459 266,459 268,458 269,458 271,458 273,458 274,457 276,457 278,457 280,457 281,457 283,457 285,457 286,456 288,456 290,456 291,456 293,456 295,456 296,456 298,455 300,455 302,455 303,455 305,455 307,455 308,454 310,454 312,454 313,454 315,454 317,453 318,453 320,453 322,452 324,452 325,452 327,451 329,451 330,450 332,450 334,449 335,448 337,448 339,447 341,447 342,446 344,445 346,445 347,445 349,444 351,444 352,443 354,443 356,443 357,443 359,442 361,442 363,442 364,442 366,441 368,441 369,441 371,440 373,440 374,439 376,438 378,438 379,437 381,436 383,435 385,434 386,433 388,432 390,431 391,430 393,429 395,427 396,426 398,424 400,422 401,420 403,418 405,415 407,412 408,409 410,406 412,403 413,399 415,395 417,392 418,388 420,384 422,379 423,375 425,372 427,368 429,364 430,361 432,357 434,354 435,351 437,349 439,346 440,344 442,342 444,340 445,338 447,337 449,335 451,333 452,331 454,330 456,328 457,325 459,323 461,320 462,318 464,315 466,312 468,308 469,305 471,301 473,297 474,294 476,290 478,286 479,282 481,279 483,275 484,272 486,269 488,267 490,265 491,263 493,261 495,260 496,259 498,259 500,258 501,258 503,259 505,259 506,260 508,261 510,262 512,263 513,264 515,265 517,266 518,267 520,267 522,268 523,269 525,269 527,270 528,271 530,271 532,272 534,273 535,274 537,275 539,276 540,278 542,280 544,282 545,285 547,288 549,292 550,296 552,300 554,305 556,311 557,317 559,323 561,329 562,336 564,342 566,349 567,356 569,363 571,369 573,376 574,382 576,388 578,393 579,398 581,403 583,407 584,410 586,413 588,415 589,416 591,417 593,417 595,417 596,416 598,414 600,413 601,410 603,407 605,404 606,401 608,397 610,394 611,390 613,386 615,383 617,379 618,376 620,373 622,370 623,368 625,366 627,365 628,364 630,363 632,363 633,363 635,364 637,366 639,367 640,369 642,372 644,374 645,377 647,380 649,383 650,387 652,390 654,393 655,396 657,399 659,402 661,404 662,406 664,408 666,409 667,411 669,411 671,411 672,411 674,410 676,409 677,407 679,405 681,402 683,399 684,396 686,392 688,388 689,384 691,379 693,374 694,369 696,363 698,358 700,352 701,346 703,339 705,333 706,326 708,319 710,312 711,305 713,298 715,290 716,283 718,275 720,267 722,259 723,251 725,243 727,235 728,227 730,220 732,212 733,205 735,198 737,192 738,185 740,180 742,175 744,170 745,166 747,162 749,159 750,156 752,154 754,152 755,150 757,149 759,147 760,146 762,145 764,144 766,143 767,142 769,140 771,138 772,137 774,134 776,132 777,130 779,127 781,125 782,122 784,119 786,116 788,113 789,111 791,108 793,106 794,103 796,101 798,99 799,98 801,96 803,95 804,94 806,93 808,93 810,92 811,92 813,93 815,93 816,94 818,96 820,97 821,100 823,103 825,106 827,110 828,115 830,121 832,128 833,135 835,143 837,152 838,162 840,173 842,184 843,196 845,208 847,221 849,234 850,247 852,261 854,274 855,287 857,300 859,313 860,325 862,337 864,349 865,360 867,370 869,380 871,389 872,397 874,405 876,412 877,418 879,424 881,429 882,434 884,439 886,442 887,446 889,449 891,452 893,454 894,456 896,458 898,460 899,461 901,463 903,464 904,465 906,466 908,466 909,467 911,468 913,468 915,469 916,469 918,470 920,470 921,471 923,471 925,471 926,472 928,472 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,466 166,466 168,466 169,467 171,467 173,467 175,467 176,467 178,467 180,468 181,468 183,468 185,468 186,468 188,468 190,468 191,468 193,468 195,468 197,468 198,467 200,467 202,467 203,466 205,466 207,466 208,465 210,465 212,465 214,464 215,464 217,464 219,464 220,464 222,464 224,464 225,464 227,464 229,464 230,464 232,464 234,464 236,464 237,464 239,464 241,464 242,464 244,464 246,464 247,463 249,463 251,463 252,462 254,462 256,461 258,461 259,460 261,460 263,460 264,459 266,459 268,458 269,458 271,458 273,458 274,457 276,457 278,457 280,457 281,457 283,457 285,457 286,456 288,456 290,456 291,456 293,456 295,456 296,456 298,455 300,455 302,455 303,455 305,455 307,455 308,454 310,454 312,454 313,454 315,454 317,453 318,453 320,453 322,452 324,452 325,452 327,451 329,451 330,450 332,450 334,449 335,448 337,448 339,447 341,447 342,446 344,445 346,445 347,445 349,444 351,444 352,443 354,443 356,443 357,443 359,442 361,442 363,442 364,442 366,441 368,441 369,441 371,440 373,440 374,439 376,438 378,438 379,437 381,436 383,435 385,434 386,433 388,432 390,431 391,430 393,429 395,427 396,426 398,424 400,422 401,420 403,418 405,415 407,412 408,409 410,406 412,403 413,399 415,395 417,392 418,388 420,384 422,379 423,375 425,372 427,368 429,364 430,361 432,357 434,354 435,351 437,349 439,346 440,344 442,342 444,340 445,338 447,337 449,335 451,333 452,331 454,330 456,328 457,325 459,323 461,320 462,318 464,315 466,312 468,308 469,305 471,301 473,297 474,294 476,290 478,286 479,282 481,279 483,275 484,272 486,269 488,267 490,265 491,263 493,261 495,260 496,259 498,259 500,258 501,258 503,259 505,259 506,260 508,261 510,262 512,263 513,264 515,265 517,266 518,267 520,267 522,268 523,269 525,269 527,270 528,271 530,271 532,272 534,273 535,274 537,275 539,276 540,278 542,280 544,282 545,285 547,288 549,292 550,296 552,300 554,305 556,311 557,317 559,323 561,329 562,336 564,342 566,349 567,356 569,363 571,369 573,376 574,382 576,388 578,393 579,398 581,403 583,407 584,410 586,413 588,415 589,416 591,417 593,417 595,417 596,416 598,414 600,413 601,410 603,407 605,404 606,401 608,397 610,394 611,390 613,386 615,383 617,379 618,376 620,373 622,370 623,368 625,366 627,365 628,364 630,363 632,363 633,363 635,364 637,366 639,367 640,369 642,372 644,374 645,377 647,380 649,383 650,387 652,390 654,393 655,396 657,399 659,402 661,404 662,406 664,408 666,409 667,411 669,411 671,411 672,411 674,410 676,409 677,407 679,405 681,402 683,399 684,396 686,392 688,388 689,384 691,379 693,374 694,369 696,363 698,358 700,352 701,346 703,339 705,333 706,326 708,319 710,312 711,305 713,298 715,290 716,283 718,275 720,267 722,259 723,251 725,243 727,235 728,227 730,220 732,212 733,205 735,198 737,192 738,185 740,180 742,175 744,170 745,166 747,162 749,159 750,156 752,154 754,152 755,150 757,149 759,147 760,146 762,145 764,144 766,143 767,142 769,140 771,138 772,137 774,134 776,132 777,130 779,127 781,125 782,122 784,119 786,116 788,113 789,111 791,108 793,106 794,103 796,101 798,99 799,98 801,96 803,95 804,94 806,93 808,93 810,92 811,92 813,93 815,93 816,94 818,96 820,97 821,100 823,103 825,106 827,110 828,115 830,121 832,128 833,135 835,143 837,152 838,162 840,173 842,184 843,196 845,208 847,221 849,234 850,247 852,261 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="720,473 720,264 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

@@ -1,165 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Iterations
</text>
<text x="480" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="472" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,472 86,472 "/>
<text x="77" y="431" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,431 86,431 "/>
<text x="77" y="389" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,389 86,389 "/>
<text x="77" y="347" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,347 86,347 "/>
<text x="77" y="305" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,305 86,305 "/>
<text x="77" y="263" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,263 86,263 "/>
<text x="77" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,221 86,221 "/>
<text x="77" y="179" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,179 86,179 "/>
<text x="77" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,137 86,137 "/>
<text x="77" y="95" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
4.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,95 86,95 "/>
<text x="77" y="53" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,53 86,53 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 872,473 "/>
<text x="140" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="140,473 140,478 "/>
<text x="218" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="218,473 218,478 "/>
<text x="295" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="295,473 295,478 "/>
<text x="372" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
11
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="372,473 372,478 "/>
<text x="449" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="449,473 449,478 "/>
<text x="526" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
13
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="526,473 526,478 "/>
<text x="603" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="603,473 603,478 "/>
<text x="680" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="680,473 680,478 "/>
<text x="757" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="757,473 757,478 "/>
<text x="834" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
17
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="834,473 834,478 "/>
<text x="933" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(90, 933, 263)">
Density (a.u.)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,53 873,473 "/>
<text x="883" y="473" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,473 878,473 "/>
<text x="883" y="415" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.05
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,415 878,415 "/>
<text x="883" y="357" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,357 878,357 "/>
<text x="883" y="299" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,299 878,299 "/>
<text x="883" y="241" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,241 878,241 "/>
<text x="883" y="183" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.25
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,183 878,183 "/>
<text x="883" y="125" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,125 878,125 "/>
<text x="883" y="67" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.35
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,67 878,67 "/>
<polygon opacity="0.5" fill="#1F78B4" points="87,472 88,472 90,472 91,472 93,472 94,472 96,471 98,471 99,471 101,470 102,470 104,469 105,469 107,468 109,468 110,467 112,466 113,465 115,464 116,463 118,462 120,461 121,460 123,458 124,457 126,455 127,453 129,451 131,449 132,447 134,444 135,442 137,439 138,436 140,432 142,429 143,425 145,421 146,417 148,413 150,408 151,404 153,398 154,393 156,388 157,382 159,376 161,369 162,363 164,356 165,349 167,342 168,335 170,327 172,319 173,311 175,303 176,295 178,287 179,278 181,269 183,261 184,252 186,243 187,235 189,226 190,217 192,209 194,200 195,192 197,183 198,175 200,167 201,159 203,151 205,144 206,137 208,130 209,123 211,117 213,111 214,105 216,100 217,95 219,90 220,85 222,81 224,77 225,74 227,71 228,68 230,65 231,63 233,61 235,59 236,58 238,57 239,56 241,55 242,54 244,54 246,54 247,54 249,53 250,54 252,54 253,54 255,54 257,55 258,55 260,55 261,56 263,56 264,57 266,57 268,57 269,58 271,58 272,58 274,59 276,59 277,59 279,60 280,60 282,60 283,60 285,61 287,61 288,61 290,62 291,62 293,63 294,63 296,64 298,65 299,66 301,67 302,69 304,70 305,72 307,73 309,75 310,78 312,80 313,82 315,85 316,88 318,91 320,94 321,98 323,102 324,106 326,110 327,114 329,118 331,123 332,127 334,132 335,137 337,142 339,147 340,152 342,158 343,163 345,169 346,174 348,179 350,185 351,190 353,196 354,201 356,207 357,212 359,218 361,223 362,228 364,233 365,238 367,243 368,248 370,253 372,257 373,262 375,266 376,271 378,275 379,279 381,283 383,287 384,291 386,294 387,298 389,301 391,305 392,308 394,311 395,314 397,317 398,320 400,323 402,325 403,328 405,331 406,333 408,336 409,338 411,340 413,343 414,345 416,347 417,350 419,352 420,354 422,356 424,358 425,360 427,363 428,365 430,367 431,369 433,371 435,373 436,375 438,378 439,380 441,382 442,384 444,386 446,388 447,391 449,393 450,395 452,397 454,399 455,401 457,403 458,406 460,408 461,410 463,412 465,414 466,416 468,418 469,420 471,422 472,424 474,426 476,428 477,429 479,431 480,433 482,434 483,436 485,438 487,439 488,440 490,442 491,443 493,444 494,446 496,447 498,448 499,449 501,450 502,451 504,452 505,452 507,453 509,454 510,454 512,455 513,455 515,456 517,456 518,457 520,457 521,458 523,458 524,458 526,458 528,459 529,459 531,459 532,459 534,459 535,459 537,459 539,459 540,459 542,459 543,459 545,459 546,459 548,459 550,459 551,459 553,459 554,459 556,459 557,459 559,459 561,459 562,459 564,459 565,459 567,459 568,459 570,459 572,459 573,459 575,460 576,460 578,460 580,460 581,460 583,460 584,460 586,460 587,460 589,460 591,460 592,460 594,460 595,461 597,461 598,461 600,461 602,461 603,461 605,462 606,462 608,462 609,462 611,462 613,463 614,463 616,463 617,463 619,464 620,464 622,464 624,464 625,465 627,465 628,465 630,466 632,466 633,466 635,466 636,467 638,467 639,467 641,467 643,468 644,468 646,468 647,468 649,469 650,469 652,469 654,469 655,469 657,470 658,470 660,470 661,470 663,470 665,470 666,471 668,471 669,471 671,471 672,471 674,471 676,471 677,471 679,471 680,471 682,471 683,471 685,471 687,471 688,471 690,471 691,471 693,471 695,471 696,471 698,470 699,470 701,470 702,470 704,470 706,470 707,469 709,469 710,469 712,469 713,469 715,468 717,468 718,468 720,468 721,468 723,467 724,467 726,467 728,467 729,466 731,466 732,466 734,466 735,466 737,465 739,465 740,465 742,465 743,465 745,465 746,465 748,464 750,464 751,464 753,464 754,464 756,464 758,464 759,464 761,464 762,464 764,464 765,464 767,464 769,464 770,465 772,465 773,465 775,465 776,465 778,465 780,465 781,466 783,466 784,466 786,466 787,467 789,467 791,467 792,467 794,467 795,468 797,468 798,468 800,468 802,469 803,469 805,469 806,469 808,469 809,470 811,470 813,470 814,470 816,471 817,471 819,471 821,471 822,471 824,471 825,472 827,472 828,472 830,472 832,472 833,472 835,472 836,472 838,472 839,473 841,473 843,473 844,473 846,473 847,473 849,473 850,473 852,473 854,473 855,473 857,473 858,473 860,473 861,473 863,473 865,473 866,473 868,473 869,473 871,473 873,473 873,473 87,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="300,472 300,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="87,472 87,53 "/>
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="484,472 484,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="87,472 87,53 "/>
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="638,472 638,53 "/>
<circle cx="602" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="757" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="542" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="602" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="542" cy="53" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="757" cy="53" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
<text x="776" y="228" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
PDF
</text>
<text x="776" y="243" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mean
</text>
<text x="776" y="258" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
&quot;Clean&quot; sample
</text>
<text x="776" y="273" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Mild outliers
</text>
<text x="776" y="288" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Severe outliers
</text>
<rect x="746" y="228" width="20" height="10" opacity="0.5" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="746,248 766,248 "/>
<circle cx="756" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
<circle cx="756" cy="278" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
<circle cx="756" cy="293" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

@@ -1,64 +0,0 @@
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
Density (a.u.)
</text>
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average Time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
<text x="65" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,244 74,244 "/>
<text x="65" y="216" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.05
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,216 74,216 "/>
<text x="65" y="187" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,187 74,187 "/>
<text x="65" y="158" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,158 74,158 "/>
<text x="65" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,129 74,129 "/>
<text x="65" y="100" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.25
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,100 74,100 "/>
<text x="65" y="72" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,72 74,72 "/>
<text x="65" y="43" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.35
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,43 74,43 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
<text x="99" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
8
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="99,245 99,250 "/>
<text x="170" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="170,245 170,250 "/>
<text x="240" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
12
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="240,245 240,250 "/>
<text x="311" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
14
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="311,245 311,250 "/>
<text x="381" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
16
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="381,245 381,250 "/>
<polygon opacity="0.25" fill="#1F78B4" points="75,244 75,244 76,244 77,244 77,244 78,244 79,243 80,243 80,243 81,243 82,243 82,242 83,242 84,242 85,242 85,241 86,241 87,240 87,240 88,239 89,239 90,238 90,238 91,237 92,236 92,235 93,234 94,233 95,232 95,231 96,230 97,229 98,227 98,226 99,224 100,222 100,221 101,219 102,217 103,214 103,212 104,210 105,207 105,205 106,202 107,199 108,196 108,193 109,190 110,186 110,183 111,179 112,176 113,172 113,168 114,164 115,160 116,156 116,152 117,148 118,143 118,139 119,135 120,130 121,126 121,122 122,117 123,113 123,109 124,105 125,101 126,97 126,93 127,89 128,85 128,81 129,78 130,74 131,71 131,68 132,65 133,62 133,59 134,57 135,54 136,52 136,50 137,48 138,46 139,45 139,43 140,42 141,41 141,40 142,39 143,39 144,38 144,37 145,37 146,37 146,37 147,36 148,36 149,36 149,36 150,36 151,37 151,37 152,37 153,37 154,37 154,38 155,38 156,38 157,38 157,38 158,38 159,39 159,39 160,39 161,39 162,39 162,39 163,39 164,40 164,40 165,40 166,40 167,40 167,40 168,41 169,41 169,41 170,42 171,42 172,43 172,43 173,44 174,45 175,45 175,46 176,47 177,48 177,49 178,51 179,52 180,53 180,55 181,57 182,58 182,60 183,62 184,64 185,66 185,68 186,71 187,73 187,75 188,78 189,80 190,83 190,85 191,88 192,91 192,93 193,96 194,99 195,101 195,104 196,107 197,110 198,112 198,115 199,118 200,120 200,123 201,125 202,128 203,130 203,133 204,135 205,137 205,140 206,142 207,144 208,146 208,148 209,150 210,152 210,154 211,156 212,157 213,159 213,161 214,162 215,164 216,165 216,167 217,168 218,170 218,171 219,172 220,174 221,175 221,176 222,177 223,179 223,180 224,181 225,182 226,183 226,184 227,185 228,186 228,187 229,188 230,190 231,191 231,192 232,193 233,194 233,195 234,196 235,197 236,198 236,199 237,200 238,201 239,202 239,203 240,204 241,206 241,207 242,208 243,209 244,210 244,211 245,212 246,213 246,214 247,215 248,216 249,217 249,218 250,219 251,220 251,221 252,222 253,223 254,223 254,224 255,225 256,226 257,227 257,227 258,228 259,229 259,229 260,230 261,231 262,231 262,232 263,232 264,233 264,233 265,234 266,234 267,234 267,235 268,235 269,235 269,236 270,236 271,236 272,236 272,236 273,237 274,237 275,237 275,237 276,237 277,237 277,237 278,237 279,237 280,237 280,237 281,237 282,237 282,238 283,238 284,238 285,238 285,238 286,238 287,238 287,238 288,238 289,238 290,238 290,238 291,238 292,238 292,238 293,238 294,238 295,238 295,238 296,238 297,238 298,238 298,238 299,238 300,238 300,238 301,238 302,238 303,238 303,238 304,238 305,238 305,238 306,238 307,238 308,238 308,238 309,238 310,238 310,239 311,239 312,239 313,239 313,239 314,239 315,239 316,239 316,239 317,239 318,240 318,240 319,240 320,240 321,240 321,240 322,240 323,241 323,241 324,241 325,241 326,241 326,241 327,241 328,241 328,242 329,242 330,242 331,242 331,242 332,242 333,242 333,242 334,243 335,243 336,243 336,243 337,243 338,243 339,243 339,243 340,243 341,243 341,243 342,243 343,243 344,243 344,243 345,243 346,243 346,243 347,243 348,243 349,243 349,243 350,243 351,243 351,243 352,243 353,243 354,243 354,243 355,243 356,243 357,243 357,243 358,242 359,242 359,242 360,242 361,242 362,242 362,242 363,242 364,242 364,242 365,241 366,241 367,241 367,241 368,241 369,241 369,241 370,241 371,241 372,240 372,240 373,240 374,240 375,240 375,240 376,240 377,240 377,240 378,240 379,240 380,240 380,240 381,240 382,240 382,240 383,240 384,240 385,240 385,240 386,240 387,240 387,240 388,240 389,240 390,240 390,240 391,241 392,241 392,241 393,241 394,241 395,241 395,241 396,241 397,241 398,241 398,242 399,242 400,242 400,242 401,242 402,242 403,242 403,242 404,243 405,243 405,243 406,243 407,243 408,243 408,243 409,243 410,243 410,243 411,243 412,244 413,244 413,244 414,244 415,244 416,244 416,244 417,244 418,244 418,244 419,244 420,244 421,244 421,244 422,244 423,244 423,244 424,244 425,244 426,244 426,244 427,244 428,244 428,244 429,244 430,244 431,244 431,244 432,244 433,244 434,244 434,244 75,244 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="172,244 172,43 "/>
</svg>

Before

Width:  |  Height:  |  Size: 7.6 KiB

@@ -1,100 +0,0 @@
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
composite_scratch_pooling/warm_composite:typical
</text>
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
Density (a.u.)
</text>
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Average time (ms)
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
<text x="77" y="436" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
0.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,436 86,436 "/>
<text x="77" y="377" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,377 86,377 "/>
<text x="77" y="318" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
1.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,318 86,318 "/>
<text x="77" y="259" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,259 86,259 "/>
<text x="77" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
2.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,201 86,201 "/>
<text x="77" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,142 86,142 "/>
<text x="77" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
3.5
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,83 86,83 "/>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
<text x="154" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.85
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="154,473 154,478 "/>
<text x="229" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.9
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="229,473 229,478 "/>
<text x="305" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
9.95
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="305,473 305,478 "/>
<text x="380" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="380,473 380,478 "/>
<text x="456" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.05
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="456,473 456,478 "/>
<text x="532" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.1
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="532,473 532,478 "/>
<text x="607" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.15
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="607,473 607,478 "/>
<text x="683" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.2
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="683,473 683,478 "/>
<text x="758" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.25
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="758,473 758,478 "/>
<text x="834" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.3
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="834,473 834,478 "/>
<text x="909" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
10.35
</text>
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="909,473 909,478 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,471 90,470 92,469 93,468 95,468 97,467 98,466 100,465 102,465 103,464 105,463 107,462 109,462 110,461 112,460 114,459 115,458 117,458 119,457 120,456 122,455 124,454 125,453 127,452 129,451 131,450 132,449 134,447 136,446 137,445 139,444 141,442 142,441 144,440 146,438 147,437 149,436 151,434 153,433 154,432 156,430 158,429 159,427 161,426 163,425 164,423 166,422 168,421 169,419 171,418 173,417 175,415 176,414 178,413 180,411 181,410 183,408 185,407 186,405 188,404 190,402 191,401 193,399 195,398 197,396 198,394 200,393 202,391 203,389 205,387 207,385 208,384 210,382 212,380 214,378 215,376 217,374 219,372 220,370 222,368 224,366 225,364 227,362 229,359 230,357 232,355 234,353 236,350 237,348 239,346 241,343 242,341 244,339 246,336 247,334 249,331 251,329 252,326 254,324 256,321 258,319 259,316 261,313 263,311 264,308 266,306 268,303 269,301 271,299 273,296 274,294 276,291 278,289 280,286 281,284 283,282 285,279 286,277 288,275 290,272 291,270 293,267 295,265 296,263 298,260 300,258 302,256 303,253 305,251 307,248 308,246 310,244 312,241 313,239 315,237 317,234 318,232 320,229 322,227 324,225 325,222 327,220 329,217 330,215 332,213 334,210 335,208 337,205 339,203 341,200 342,198 344,195 346,192 347,190 349,187 351,185 352,182 354,179 356,177 357,174 359,172 361,169 363,167 364,164 366,162 368,160 369,157 371,155 373,153 374,151 376,149 378,147 379,145 381,143 383,141 385,139 386,138 388,136 390,134 391,133 393,131 395,130 396,128 398,127 400,126 401,124 403,123 405,122 407,121 408,119 410,118 412,117 413,116 415,115 417,114 418,113 420,112 422,110 423,109 425,108 427,107 429,106 430,105 432,104 434,103 435,102 437,101 439,100 440,100 442,99 444,98 445,97 447,97 449,96 451,96 452,95 454,95 456,95 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,95 495,96 496,96 498,97 500,97 501,98 503,99 505,100 506,100 508,101 510,102 512,103 513,104 515,106 517,107 518,108 520,109 522,110 523,112 525,113 527,114 528,115 530,117 532,118 534,119 535,121 537,122 539,123 540,124 542,126 544,127 545,128 547,130 549,131 550,132 552,134 554,135 556,137 557,138 559,140 561,141 562,143 564,144 566,146 567,148 569,149 571,151 573,152 574,154 576,155 578,157 579,159 581,160 583,162 584,164 586,165 588,167 589,169 591,171 593,173 595,174 596,176 598,178 600,180 601,182 603,184 605,186 606,188 608,190 610,192 611,194 613,196 615,198 617,200 618,202 620,204 622,206 623,208 625,210 627,212 628,214 630,216 632,218 633,220 635,222 637,224 639,226 640,228 642,231 644,233 645,235 647,237 649,239 650,241 652,243 654,245 655,247 657,249 659,251 661,254 662,256 664,258 666,260 667,262 669,264 671,266 672,268 674,270 676,272 677,275 679,277 681,279 683,281 684,283 686,285 688,287 689,289 691,291 693,293 694,296 696,298 698,300 700,302 701,304 703,306 705,308 706,310 708,312 710,314 711,316 713,318 715,320 716,322 718,324 720,326 722,328 723,330 725,332 727,334 728,336 730,338 732,340 733,342 735,344 737,346 738,348 740,350 742,352 744,354 745,356 747,358 749,360 750,362 752,364 754,366 755,368 757,370 759,371 760,373 762,375 764,376 766,378 767,380 769,381 771,383 772,384 774,386 776,387 777,388 779,390 781,391 782,393 784,394 786,395 788,397 789,398 791,399 793,401 794,402 796,403 798,405 799,406 801,407 803,409 804,410 806,411 808,412 810,414 811,415 813,416 815,417 816,418 818,419 820,420 821,422 823,423 825,424 827,425 828,426 830,427 832,428 833,429 835,430 837,431 838,432 840,433 842,434 843,434 845,435 847,436 849,437 850,438 852,439 854,440 855,441 857,442 859,443 860,444 862,445 864,445 865,446 867,447 869,448 871,449 872,450 874,450 876,451 877,452 879,453 881,454 882,454 884,455 886,456 887,457 889,457 891,458 893,459 894,460 896,460 898,461 899,462 901,462 903,463 904,464 906,464 908,465 909,465 911,466 913,467 915,467 916,468 918,468 920,469 921,469 923,470 925,471 926,471 928,472 930,472 932,472 "/>
<polygon opacity="0.25" fill="#1F78B4" points="164,423 166,422 168,421 169,419 171,418 173,417 175,415 176,414 178,413 180,411 181,410 183,408 185,407 186,405 188,404 190,402 191,401 193,399 195,398 197,396 198,394 200,393 202,391 203,389 205,387 207,385 208,384 210,382 212,380 214,378 215,376 217,374 219,372 220,370 222,368 224,366 225,364 227,362 229,359 230,357 232,355 234,353 236,350 237,348 239,346 241,343 242,341 244,339 246,336 247,334 249,331 251,329 252,326 254,324 256,321 258,319 259,316 261,313 263,311 264,308 266,306 268,303 269,301 271,299 273,296 274,294 276,291 278,289 280,286 281,284 283,282 285,279 286,277 288,275 290,272 291,270 293,267 295,265 296,263 298,260 300,258 302,256 303,253 305,251 307,248 308,246 310,244 312,241 313,239 315,237 317,234 318,232 320,229 322,227 324,225 325,222 327,220 329,217 330,215 332,213 334,210 335,208 337,205 339,203 341,200 342,198 344,195 346,192 347,190 349,187 351,185 352,182 354,179 356,177 357,174 359,172 361,169 363,167 364,164 366,162 368,160 369,157 371,155 373,153 374,151 376,149 378,147 379,145 381,143 383,141 385,139 386,138 388,136 390,134 391,133 393,131 395,130 396,128 398,127 400,126 401,124 403,123 405,122 407,121 408,119 410,118 412,117 413,116 415,115 417,114 418,113 420,112 422,110 423,109 425,108 427,107 429,106 430,105 432,104 434,103 435,102 437,101 439,100 440,100 442,99 444,98 445,97 447,97 449,96 451,96 452,95 454,95 456,95 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,95 495,96 496,96 498,97 500,97 501,98 503,99 505,100 506,100 508,101 510,102 512,103 513,104 515,106 517,107 518,108 520,109 522,110 523,112 525,113 527,114 528,115 530,117 532,118 534,119 535,121 537,122 539,123 540,124 542,126 544,127 545,128 547,130 549,131 550,132 552,134 554,135 556,137 557,138 559,140 561,141 562,143 564,144 566,146 567,148 569,149 571,151 573,152 574,154 576,155 578,157 579,159 581,160 583,162 584,164 586,165 588,167 589,169 591,171 593,173 595,174 596,176 598,178 600,180 601,182 603,184 605,186 606,188 608,190 610,192 611,194 613,196 615,198 617,200 618,202 620,204 622,206 623,208 625,210 627,212 628,214 630,216 632,218 633,220 635,222 637,224 639,226 640,228 642,231 644,233 645,235 647,237 649,239 650,241 652,243 654,245 655,247 657,249 659,251 661,254 662,256 664,258 666,260 667,262 669,264 671,266 672,268 674,270 676,272 677,275 679,277 681,279 683,281 684,283 686,285 688,287 689,289 691,291 693,293 694,296 696,298 698,300 700,302 701,304 703,306 705,308 706,310 708,312 710,314 711,316 713,318 715,320 716,322 718,324 720,326 722,328 723,330 725,332 727,334 728,336 730,338 732,340 733,342 735,344 737,346 738,348 740,350 742,352 744,354 745,356 747,358 749,360 750,362 752,364 754,366 755,368 757,370 759,371 760,373 762,375 764,376 766,378 767,380 769,381 771,383 772,384 774,386 776,387 777,388 779,390 781,391 782,393 784,394 786,395 788,397 789,398 791,399 793,401 794,402 796,403 798,405 799,406 801,407 803,409 804,410 806,411 808,412 810,414 811,415 813,416 815,417 816,418 818,419 820,420 821,422 823,423 825,424 827,425 828,426 830,427 832,428 833,429 835,430 837,431 838,432 840,433 842,434 843,434 845,435 847,436 849,437 850,438 852,439 852,473 164,473 "/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="492,473 492,95 "/>
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Bootstrap distribution
</text>
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Confidence interval
</text>
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
Point estimate
</text>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

@@ -1 +0,0 @@
{"group_id":"effects_skip","function_id":"no_effects_composite","value_str":null,"throughput":null,"full_id":"effects_skip/no_effects_composite","directory_name":"effects_skip/no_effects_composite","title":"effects_skip/no_effects_composite"}

Some files were not shown because too many files have changed in this diff Show More