Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase performance via symmetry of Hessian #151

Merged
merged 6 commits into from
Aug 8, 2024
Merged

Increase performance via symmetry of Hessian #151

merged 6 commits into from
Aug 8, 2024

Conversation

adrhill
Copy link
Owner

@adrhill adrhill commented Aug 7, 2024

Closes #34.

By only keeping track of index-tuples $(i, j)$ with $i≤j$, the size of all "Hessian-sets" is reduced by roughly half.
As seen in #135, the size of sets plays a large role in the performance of SCT as it affects the performance of union operations.

This PR changes the output type of hessian_sparsity from SparseMatrixCSC{Bool, Int64} to Symmetric{Bool, SparseArrays.SparseMatrixCSC{Bool, Int64}}.
Is this (a) desired and (b) should this be considered breaking? (Ping @gdalle for the matrix coloring perspective)

@adrhill adrhill added the run benchmark Run benchmarks in CI label Aug 7, 2024
@gdalle
Copy link
Collaborator

gdalle commented Aug 7, 2024

I would say this is breaking, yes. Maybe we could just do sparse(Symmetric(sparse(...))) at the very end, that's very fast

@adrhill
Copy link
Owner Author

adrhill commented Aug 7, 2024

I would say this is breaking, yes.

Should we make the change with our next breaking release though?

Maybe we could just do sparse(Symmetric(sparse(...)))

I've handled it manually. :)

@codecov-commenter
Copy link

codecov-commenter commented Aug 7, 2024

⚠️ Please install the 'codecov app svg image' to ensure uploads and comments are reliably processed by Codecov.

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 91.94%. Comparing base (0dd0559) to head (c0768f5).

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #151      +/-   ##
==========================================
+ Coverage   91.92%   91.94%   +0.02%     
==========================================
  Files          38       38              
  Lines        1498     1503       +5     
==========================================
+ Hits         1377     1382       +5     
  Misses        121      121              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link

github-actions bot commented Aug 7, 2024

Benchmark result

Judge result

Benchmark Report for /home/runner/work/SparseConnectivityTracer.jl/SparseConnectivityTracer.jl

Job Properties

  • Time of benchmarks:
    • Target: 7 Aug 2024 - 15:46
    • Baseline: 7 Aug 2024 - 16:03
  • Package commits:
    • Target: 00883e
    • Baseline: 0dd055
  • Julia commits:
    • Target: 48d4fd
    • Baseline: 48d4fd
  • Julia command flags:
    • Target: None
    • Baseline: None
  • Environment variables:
    • Target: None
    • Baseline: None

Results

A ratio greater than 1.0 denotes a possible regression (marked with ❌), while a ratio less
than 1.0 denotes a possible improvement (marked with ✅). Only significant results - results
that indicate possible regressions or improvements - are shown below (thus, an empty table means that all
benchmark results remained invariant between builds).

ID time ratio memory ratio
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv", "size=128x128x3"] 1.14 (5%) ❌ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv", "size=28x28x3"] 0.92 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv", "size=128x128x3"] 1.06 (5%) ❌ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv", "size=28x28x3"] 1.10 (5%) ❌ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator", "N=24"] 1.06 (5%) ❌ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE", "N=24"] 0.95 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator", "N=24"] 0.90 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator", "N=6"] 0.90 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv", "size=128x128x3"] 0.92 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv", "size=28x28x3"] 0.94 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv", "size=28x28x3"] 0.93 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv", "size=28x28x3"] 1.05 (5%) ❌ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator", "N=24"] 1.06 (5%) ❌ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE", "N=24"] 0.95 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE", "N=6"] 0.95 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator", "N=24"] 0.89 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator", "N=6"] 0.89 (5%) ✅ 1.00 (1%)
["bench_jogger.jl", "OptimizationProblems", "britgas", "Hessian"] 0.81 (5%) ✅ 0.77 (1%) ✅

Benchmark Group List

Here's a list of all the benchmark groups executed by this job:

  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Conv"]
  • ["bench_jogger.jl", "OptimizationProblems", "britgas"]

Julia versioninfo

Target

Julia Version 1.10.4
Commit 48d4fd48430 (2024-06-04 10:41 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
      Ubuntu 22.04.4 LTS
  uname: Linux 6.5.0-1025-azure #26~22.04.1-Ubuntu SMP Thu Jul 11 22:33:04 UTC 2024 x86_64 x86_64
  CPU: AMD EPYC 7763 64-Core Processor: 
              speed         user         nice          sys         idle          irq
       #1  3161 MHz       6406 s          0 s        469 s      18983 s          0 s
       #2  2748 MHz       6035 s          0 s        498 s      19329 s          0 s
       #3  3242 MHz       8294 s          0 s        544 s      17011 s          0 s
       #4  2445 MHz       8254 s          0 s        592 s      17018 s          0 s
  Memory: 15.606491088867188 GB (13348.109375 MB free)
  Uptime: 2592.2 sec
  Load Avg:  1.01  1.04  1.0
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, znver3)
Threads: 1 default, 0 interactive, 1 GC (on 4 virtual cores)

Baseline

Julia Version 1.10.4
Commit 48d4fd48430 (2024-06-04 10:41 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
      Ubuntu 22.04.4 LTS
  uname: Linux 6.5.0-1025-azure #26~22.04.1-Ubuntu SMP Thu Jul 11 22:33:04 UTC 2024 x86_64 x86_64
  CPU: AMD EPYC 7763 64-Core Processor: 
              speed         user         nice          sys         idle          irq
       #1  2643 MHz       9560 s          0 s        645 s      26128 s          0 s
       #2  3206 MHz       8228 s          0 s        666 s      27442 s          0 s
       #3  3241 MHz      11061 s          0 s        713 s      24552 s          0 s
       #4  2445 MHz      10242 s          0 s        755 s      25342 s          0 s
  Memory: 15.606491088867188 GB (12644.6015625 MB free)
  Uptime: 3641.58 sec
  Load Avg:  1.0  1.0  1.0
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, znver3)
Threads: 1 default, 0 interactive, 1 GC (on 4 virtual cores)

Target result

Benchmark Report for /home/runner/work/SparseConnectivityTracer.jl/SparseConnectivityTracer.jl

Job Properties

  • Time of benchmark: 7 Aug 2024 - 15:46
  • Package commit: 00883e
  • Julia commit: 48d4fd
  • Julia command flags: None
  • Environment variables: None

Results

Below is a table of this job's results, obtained by running the benchmarks.
The values listed in the ID column have the structure [parent_group, child_group, ..., key], and can be used to
index into the BaseBenchmarks suite to retrieve the corresponding benchmarks.
The percentages accompanying time and memory values in the below table are noise tolerances. The "true"
time/memory value for a given benchmark is expected to fall within this percentage of the reported value.
An empty cell means that the value was zero.

ID time GC time memory allocations
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 5.565 ms (5%) 9.12 MiB (1%) 37032
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 8.574 ms (5%) 21.81 MiB (1%) 120934
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 5.756 ms (5%) 8.52 MiB (1%) 37499
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 529.541 μs (5%) 1.39 MiB (1%) 9279
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 119.742 ms (5%) 2.789 ms 221.73 MiB (1%) 353163
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 19.972 ms (5%) 93.18 MiB (1%) 264349
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 34.065 ms (5%) 72.46 MiB (1%) 336582
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 526.666 μs (5%) 2.92 MiB (1%) 4913
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 98.733 ms (5%) 4.906 ms 214.36 MiB (1%) 370491
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 22.701 ms (5%) 54.81 MiB (1%) 496111
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 57.755 ms (5%) 7.053 ms 106.84 MiB (1%) 529143
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 1.630 ms (5%) 4.55 MiB (1%) 42107
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 8.789 ms (5%) 14.36 MiB (1%) 65672
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 28.124 ms (5%) 57.24 MiB (1%) 169002
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 8.503 ms (5%) 10.35 MiB (1%) 51626
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 2.224 ms (5%) 4.59 MiB (1%) 13017
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 3.967 ms (5%) 7.58 MiB (1%) 21707
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 9.481 ms (5%) 19.40 MiB (1%) 70583
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 3.383 ms (5%) 5.35 MiB (1%) 23526
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 693.889 μs (5%) 1.92 MiB (1%) 4925
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 25.102 ms (5%) 42.32 MiB (1%) 98757
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 106.141 ms (5%) 1.943 ms 227.64 MiB (1%) 246283
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 32.992 ms (5%) 45.59 MiB (1%) 62066
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 4.097 ms (5%) 13.08 MiB (1%) 17297
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 142.004 ms (5%) 5.087 ms 255.13 MiB (1%) 414921
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 119.293 ms (5%) 4.714 ms 299.01 MiB (1%) 389698
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 65.962 ms (5%) 4.023 ms 111.55 MiB (1%) 358650
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 3.577 ms (5%) 9.25 MiB (1%) 12459
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 124.266 ms (5%) 9.609 ms 247.56 MiB (1%) 432216
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 123.939 ms (5%) 3.518 ms 260.63 MiB (1%) 621460
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 76.091 ms (5%) 4.391 ms 144.77 MiB (1%) 551200
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 4.946 ms (5%) 11.90 MiB (1%) 49769
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 29.124 ms (5%) 47.56 MiB (1%) 127394
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 131.199 ms (5%) 4.522 ms 263.07 MiB (1%) 294351
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 36.781 ms (5%) 49.83 MiB (1%) 76320
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 5.483 ms (5%) 12.14 MiB (1%) 20851
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 24.065 ms (5%) 40.98 MiB (1%) 83465
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 108.568 ms (5%) 3.524 ms 225.23 MiB (1%) 195932
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 31.077 ms (5%) 44.41 MiB (1%) 48374
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 4.296 ms (5%) 13.75 MiB (1%) 13062
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 25.124 ms (5%) 42.34 MiB (1%) 98759
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 106.333 ms (5%) 2.043 ms 227.86 MiB (1%) 246287
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 33.156 ms (5%) 46.16 MiB (1%) 62117
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 3.752 ms (5%) 9.96 MiB (1%) 17031
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 142.393 ms (5%) 5.352 ms 255.15 MiB (1%) 414923
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 119.573 ms (5%) 4.821 ms 299.23 MiB (1%) 389702
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 66.967 ms (5%) 4.216 ms 112.91 MiB (1%) 360745
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 3.586 ms (5%) 9.22 MiB (1%) 12488
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 124.779 ms (5%) 9.633 ms 247.58 MiB (1%) 432218
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 124.898 ms (5%) 3.537 ms 260.85 MiB (1%) 621464
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 77.866 ms (5%) 4.703 ms 145.92 MiB (1%) 556401
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 5.052 ms (5%) 13.37 MiB (1%) 49861
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 29.102 ms (5%) 47.57 MiB (1%) 127396
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 131.787 ms (5%) 5.008 ms 263.29 MiB (1%) 294355
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 37.068 ms (5%) 51.88 MiB (1%) 76649
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 6.592 ms (5%) 20.42 MiB (1%) 21767
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 24.149 ms (5%) 41.00 MiB (1%) 83467
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 107.293 ms (5%) 1.802 ms 225.45 MiB (1%) 195936
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 30.837 ms (5%) 44.40 MiB (1%) 48316
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 3.767 ms (5%) 8.31 MiB (1%) 12465
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "ODE", "N=24"] 2.502 ms (5%) 5.83 MiB (1%) 59354
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "ODE", "N=6"] 138.810 μs (5%) 256.97 KiB (1%) 2853
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "operator", "N=24"] 937.946 μs (5%) 2.06 MiB (1%) 22268
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "operator", "N=6"] 50.435 μs (5%) 102.56 KiB (1%) 1182
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv", "size=128x128x3"] 2.364 s (5%) 652.276 ms 18.61 GiB (1%) 11476661
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv", "size=28x28x3"] 19.101 ms (5%) 63.29 MiB (1%) 414354
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 8.145 μs (5%) 16.33 KiB (1%) 144
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 277.690 μs (5%) 541.66 KiB (1%) 6012
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "ODE", "N=24"] 17.554 ms (5%) 30.14 MiB (1%) 175239
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "ODE", "N=6"] 1.076 ms (5%) 1.89 MiB (1%) 11059
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "operator", "N=24"] 3.496 ms (5%) 4.35 MiB (1%) 41516
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "operator", "N=6"] 214.943 μs (5%) 279.19 KiB (1%) 2622
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv", "size=128x128x3"] 1.127 s (5%) 73.431 ms 1.02 GiB (1%) 4662067
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv", "size=28x28x3"] 35.599 ms (5%) 41.61 MiB (1%) 175254
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 7.028 μs (5%) 12.28 KiB (1%) 77
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 165.572 ms (5%) 5.243 ms 900.12 MiB (1%) 29673
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "ODE", "N=24"] 52.452 ms (5%) 25.97 MiB (1%) 214415
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "ODE", "N=6"] 3.299 ms (5%) 1.63 MiB (1%) 13515
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "operator", "N=24"] 3.401 ms (5%) 5.14 MiB (1%) 55340
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "operator", "N=6"] 200.546 μs (5%) 329.81 KiB (1%) 3486
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv", "size=128x128x3"] 13.042 s (5%) 2.111 s 10.21 GiB (1%) 50889205
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv", "size=28x28x3"] 381.286 ms (5%) 32.553 ms 384.46 MiB (1%) 1892008
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 11.201 μs (5%) 32.52 KiB (1%) 350
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 21.823 s (5%) 8.68 MiB (1%) 38978
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "ODE", "N=24"] 11.665 ms (5%) 19.04 MiB (1%) 129167
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "ODE", "N=6"] 656.999 μs (5%) 1.20 MiB (1%) 8187
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator", "N=24"] 2.241 ms (5%) 3.98 MiB (1%) 36908
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator", "N=6"] 117.571 μs (5%) 255.56 KiB (1%) 2334
["bench_jogger.jl", "Jacobian", "Global", "Set", "Conv", "size=128x128x3"] 2.606 s (5%) 273.927 ms 3.68 GiB (1%) 24650695
["bench_jogger.jl", "Jacobian", "Global", "Set", "Conv", "size=28x28x3"] 89.720 ms (5%) 6.313 ms 144.35 MiB (1%) 925920
["bench_jogger.jl", "Jacobian", "Global", "Set", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 11.201 μs (5%) 31.42 KiB (1%) 252
["bench_jogger.jl", "Jacobian", "Global", "Set", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 4.006 ms (5%) 8.22 MiB (1%) 24227
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE", "N=24"] 1.864 ms (5%) 4.23 MiB (1%) 22023
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE", "N=6"] 133.570 μs (5%) 278.72 KiB (1%) 1483
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator", "N=24"] 588.252 μs (5%) 1.26 MiB (1%) 9260
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator", "N=6"] 38.331 μs (5%) 81.75 KiB (1%) 606
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Conv", "size=128x128x3"] 707.340 ms (5%) 74.212 ms 1.02 GiB (1%) 4662067
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Conv", "size=28x28x3"] 19.795 ms (5%) 41.61 MiB (1%) 175254
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 6.562 μs (5%) 12.05 KiB (1%) 74
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 571.981 μs (5%) 1.95 MiB (1%) 2962
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "ODE", "N=24"] 2.554 ms (5%) 5.94 MiB (1%) 59360
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "ODE", "N=6"] 140.574 μs (5%) 264.45 KiB (1%) 2856
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "operator", "N=24"] 960.178 μs (5%) 2.14 MiB (1%) 22274
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "operator", "N=6"] 52.549 μs (5%) 107.31 KiB (1%) 1185
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv", "size=128x128x3"] 2.063 s (5%) 325.500 ms 18.62 GiB (1%) 11476670
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv", "size=28x28x3"] 18.989 ms (5%) 63.41 MiB (1%) 414363
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 9.318 μs (5%) 23.58 KiB (1%) 157
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 278.081 μs (5%) 546.33 KiB (1%) 5997
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "ODE", "N=24"] 17.694 ms (5%) 30.25 MiB (1%) 175245
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "ODE", "N=6"] 1.079 ms (5%) 1.90 MiB (1%) 11062
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "operator", "N=24"] 3.501 ms (5%) 4.42 MiB (1%) 41522
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "operator", "N=6"] 216.165 μs (5%) 283.94 KiB (1%) 2625
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv", "size=128x128x3"] 1.139 s (5%) 76.152 ms 1.02 GiB (1%) 4662076
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv", "size=28x28x3"] 35.826 ms (5%) 41.74 MiB (1%) 175263
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 7.083 μs (5%) 17.77 KiB (1%) 76
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 140.563 ms (5%) 4.393 ms 731.67 MiB (1%) 29528
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "ODE", "N=24"] 52.498 ms (5%) 26.08 MiB (1%) 214421
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "ODE", "N=6"] 3.295 ms (5%) 1.64 MiB (1%) 13518
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "operator", "N=24"] 3.423 ms (5%) 5.21 MiB (1%) 55346
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "operator", "N=6"] 203.612 μs (5%) 334.56 KiB (1%) 3489
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv", "size=128x128x3"] 13.176 s (5%) 2.150 s 10.21 GiB (1%) 50889214
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv", "size=28x28x3"] 392.537 ms (5%) 34.959 ms 384.58 MiB (1%) 1892017
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 13.015 μs (5%) 40.72 KiB (1%) 375
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 20.602 s (5%) 12.42 MiB (1%) 43518
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "ODE", "N=24"] 11.665 ms (5%) 19.15 MiB (1%) 129173
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "ODE", "N=6"] 659.164 μs (5%) 1.21 MiB (1%) 8190
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator", "N=24"] 2.267 ms (5%) 4.05 MiB (1%) 36914
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator", "N=6"] 119.634 μs (5%) 260.31 KiB (1%) 2337
["bench_jogger.jl", "Jacobian", "Local", "Set", "Conv", "size=128x128x3"] 2.596 s (5%) 258.354 ms 3.69 GiB (1%) 24650704
["bench_jogger.jl", "Jacobian", "Local", "Set", "Conv", "size=28x28x3"] 89.423 ms (5%) 6.413 ms 144.48 MiB (1%) 925929
["bench_jogger.jl", "Jacobian", "Local", "Set", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 11.652 μs (5%) 37.22 KiB (1%) 255
["bench_jogger.jl", "Jacobian", "Local", "Set", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 3.983 ms (5%) 8.10 MiB (1%) 24142
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE", "N=24"] 1.900 ms (5%) 4.34 MiB (1%) 22029
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE", "N=6"] 135.894 μs (5%) 286.20 KiB (1%) 1486
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator", "N=24"] 603.110 μs (5%) 1.33 MiB (1%) 9266
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator", "N=6"] 39.665 μs (5%) 86.50 KiB (1%) 609
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Conv", "size=128x128x3"] 704.766 ms (5%) 76.332 ms 1.02 GiB (1%) 4662076
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Conv", "size=28x28x3"] 19.652 ms (5%) 41.74 MiB (1%) 175263
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 7.346 μs (5%) 17.84 KiB (1%) 77
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 590.997 μs (5%) 2.01 MiB (1%) 3007
["bench_jogger.jl", "OptimizationProblems", "britgas", "Hessian"] 3.880 ms (5%) 7.76 MiB (1%) 28312
["bench_jogger.jl", "OptimizationProblems", "britgas", "Jacobian"] 291.356 μs (5%) 467.03 KiB (1%) 5669

Benchmark Group List

Here's a list of all the benchmark groups executed by this job:

  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "SparseMul"]
  • ["bench_jogger.jl", "OptimizationProblems", "britgas"]

Julia versioninfo

Julia Version 1.10.4
Commit 48d4fd48430 (2024-06-04 10:41 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
      Ubuntu 22.04.4 LTS
  uname: Linux 6.5.0-1025-azure #26~22.04.1-Ubuntu SMP Thu Jul 11 22:33:04 UTC 2024 x86_64 x86_64
  CPU: AMD EPYC 7763 64-Core Processor: 
              speed         user         nice          sys         idle          irq
       #1  3161 MHz       6406 s          0 s        469 s      18983 s          0 s
       #2  2748 MHz       6035 s          0 s        498 s      19329 s          0 s
       #3  3242 MHz       8294 s          0 s        544 s      17011 s          0 s
       #4  2445 MHz       8254 s          0 s        592 s      17018 s          0 s
  Memory: 15.606491088867188 GB (13348.109375 MB free)
  Uptime: 2592.2 sec
  Load Avg:  1.01  1.04  1.0
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, znver3)
Threads: 1 default, 0 interactive, 1 GC (on 4 virtual cores)

Baseline result

Benchmark Report for /home/runner/work/SparseConnectivityTracer.jl/SparseConnectivityTracer.jl

Job Properties

  • Time of benchmark: 7 Aug 2024 - 16:3
  • Package commit: 0dd055
  • Julia commit: 48d4fd
  • Julia command flags: None
  • Environment variables: None

Results

Below is a table of this job's results, obtained by running the benchmarks.
The values listed in the ID column have the structure [parent_group, child_group, ..., key], and can be used to
index into the BaseBenchmarks suite to retrieve the corresponding benchmarks.
The percentages accompanying time and memory values in the below table are noise tolerances. The "true"
time/memory value for a given benchmark is expected to fall within this percentage of the reported value.
An empty cell means that the value was zero.

ID time GC time memory allocations
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 8.060 ms (5%) 13.32 MiB (1%) 36457
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 9.413 ms (5%) 22.51 MiB (1%) 120898
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 7.168 ms (5%) 11.00 MiB (1%) 44441
["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 571.370 μs (5%) 1.65 MiB (1%) 9332
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 432.629 ms (5%) 20.053 ms 1.11 GiB (1%) 728722
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 22.517 ms (5%) 98.28 MiB (1%) 302699
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 96.208 ms (5%) 6.915 ms 164.07 MiB (1%) 691229
["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 489.847 μs (5%) 2.87 MiB (1%) 5708
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 303.384 ms (5%) 19.058 ms 697.44 MiB (1%) 570268
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 26.341 ms (5%) 61.80 MiB (1%) 544055
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 114.189 ms (5%) 12.240 ms 233.48 MiB (1%) 930007
["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 1.763 ms (5%) 5.18 MiB (1%) 44949
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 11.111 ms (5%) 18.63 MiB (1%) 65109
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 28.329 ms (5%) 57.94 MiB (1%) 168966
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 9.780 ms (5%) 13.80 MiB (1%) 58689
["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 2.350 ms (5%) 5.32 MiB (1%) 13162
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 5.392 ms (5%) 11.20 MiB (1%) 21338
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 9.427 ms (5%) 19.52 MiB (1%) 70547
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 3.542 ms (5%) 5.05 MiB (1%) 22517
["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 593.041 μs (5%) 1.41 MiB (1%) 5657
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 46.302 ms (5%) 67.70 MiB (1%) 99392
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 197.005 ms (5%) 5.045 ms 343.61 MiB (1%) 255605
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 64.353 ms (5%) 1.597 ms 98.19 MiB (1%) 71643
["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 5.409 ms (5%) 13.58 MiB (1%) 17191
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 478.076 ms (5%) 23.941 ms 1.16 GiB (1%) 791665
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 211.577 ms (5%) 6.829 ms 419.37 MiB (1%) 437406
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 141.269 ms (5%) 6.073 ms 251.07 MiB (1%) 722317
["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 5.027 ms (5%) 12.30 MiB (1%) 13415
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 343.053 ms (5%) 19.387 ms 751.82 MiB (1%) 633203
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 220.305 ms (5%) 9.789 ms 382.90 MiB (1%) 678762
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 154.008 ms (5%) 10.772 ms 315.77 MiB (1%) 953046
["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 6.200 ms (5%) 13.81 MiB (1%) 52453
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 49.916 ms (5%) 73.00 MiB (1%) 128044
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 224.928 ms (5%) 5.302 ms 379.04 MiB (1%) 303673
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 67.725 ms (5%) 1.635 ms 100.41 MiB (1%) 85495
["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 6.592 ms (5%) 13.20 MiB (1%) 20486
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 44.878 ms (5%) 65.64 MiB (1%) 84281
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 196.581 ms (5%) 4.805 ms 340.61 MiB (1%) 205254
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 59.676 ms (5%) 91.82 MiB (1%) 49448
["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 5.317 ms (5%) 11.91 MiB (1%) 13365
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 46.308 ms (5%) 67.71 MiB (1%) 99394
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 197.085 ms (5%) 5.393 ms 343.83 MiB (1%) 255609
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 63.419 ms (5%) 97.49 MiB (1%) 71435
["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 5.243 ms (5%) 12.49 MiB (1%) 17047
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 476.992 ms (5%) 25.632 ms 1.16 GiB (1%) 791667
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 213.979 ms (5%) 9.640 ms 419.59 MiB (1%) 437410
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 139.483 ms (5%) 6.051 ms 253.55 MiB (1%) 717126
["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 4.909 ms (5%) 11.57 MiB (1%) 13250
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 343.323 ms (5%) 19.595 ms 751.83 MiB (1%) 633205
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 218.751 ms (5%) 8.471 ms 383.12 MiB (1%) 678766
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 154.891 ms (5%) 9.634 ms 319.23 MiB (1%) 952662
["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 6.211 ms (5%) 13.90 MiB (1%) 52463
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 49.842 ms (5%) 73.02 MiB (1%) 128046
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 224.871 ms (5%) 5.539 ms 379.26 MiB (1%) 303677
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 65.857 ms (5%) 98.44 MiB (1%) 85386
["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 7.478 ms (5%) 20.36 MiB (1%) 21325
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "ArrowHead", (:(N = 200), :(K = 16))] 44.952 ms (5%) 65.66 MiB (1%) 84283
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "ArrowHead", (:(N = 3200), :(K = 2))] 197.244 ms (5%) 5.432 ms 340.83 MiB (1%) 205258
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "RandomSparsity", (:(N = 100), :(K = 32))] 59.151 ms (5%) 92.17 MiB (1%) 49473
["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "RandomSparsity", (:(N = 400), :(K = 2))] 5.424 ms (5%) 13.42 MiB (1%) 13521
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "ODE", "N=24"] 2.536 ms (5%) 5.83 MiB (1%) 59354
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "ODE", "N=6"] 138.789 μs (5%) 256.97 KiB (1%) 2853
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "operator", "N=24"] 926.855 μs (5%) 2.06 MiB (1%) 22268
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "operator", "N=6"] 51.637 μs (5%) 102.56 KiB (1%) 1182
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv", "size=128x128x3"] 2.082 s (5%) 308.804 ms 18.61 GiB (1%) 11476661
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv", "size=28x28x3"] 18.719 ms (5%) 63.29 MiB (1%) 414354
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 8.256 μs (5%) 16.89 KiB (1%) 140
["bench_jogger.jl", "Jacobian", "Global", "BitSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 277.469 μs (5%) 533.91 KiB (1%) 5888
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "ODE", "N=24"] 17.366 ms (5%) 30.14 MiB (1%) 175239
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "ODE", "N=6"] 1.061 ms (5%) 1.89 MiB (1%) 11059
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "operator", "N=24"] 3.504 ms (5%) 4.35 MiB (1%) 41516
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "operator", "N=6"] 215.273 μs (5%) 279.19 KiB (1%) 2622
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv", "size=128x128x3"] 1.179 s (5%) 84.963 ms 1.02 GiB (1%) 4662067
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv", "size=28x28x3"] 38.808 ms (5%) 41.61 MiB (1%) 175254
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 7.374 μs (5%) 13.58 KiB (1%) 85
["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 182.404 ms (5%) 5.107 ms 971.65 MiB (1%) 29741
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "ODE", "N=24"] 52.948 ms (5%) 25.97 MiB (1%) 214415
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "ODE", "N=6"] 3.333 ms (5%) 1.63 MiB (1%) 13515
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "operator", "N=24"] 3.432 ms (5%) 5.14 MiB (1%) 55340
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "operator", "N=6"] 202.779 μs (5%) 329.81 KiB (1%) 3486
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv", "size=128x128x3"] 12.339 s (5%) 1.801 s 10.21 GiB (1%) 50889205
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv", "size=28x28x3"] 347.319 ms (5%) 20.016 ms 384.46 MiB (1%) 1892008
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 11.441 μs (5%) 32.39 KiB (1%) 346
["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 19.786 s (5%) 11.90 MiB (1%) 45051
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "ODE", "N=24"] 11.404 ms (5%) 19.04 MiB (1%) 129167
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "ODE", "N=6"] 638.065 μs (5%) 1.20 MiB (1%) 8187
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator", "N=24"] 2.106 ms (5%) 3.98 MiB (1%) 36908
["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator", "N=6"] 113.332 μs (5%) 255.56 KiB (1%) 2334
["bench_jogger.jl", "Jacobian", "Global", "Set", "Conv", "size=128x128x3"] 2.625 s (5%) 286.598 ms 3.68 GiB (1%) 24650695
["bench_jogger.jl", "Jacobian", "Global", "Set", "Conv", "size=28x28x3"] 88.083 ms (5%) 5.371 ms 144.35 MiB (1%) 925920
["bench_jogger.jl", "Jacobian", "Global", "Set", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 12.162 μs (5%) 33.64 KiB (1%) 270
["bench_jogger.jl", "Jacobian", "Global", "Set", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 4.009 ms (5%) 8.35 MiB (1%) 24845
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE", "N=24"] 1.971 ms (5%) 4.23 MiB (1%) 22023
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE", "N=6"] 139.902 μs (5%) 278.72 KiB (1%) 1483
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator", "N=24"] 650.158 μs (5%) 1.26 MiB (1%) 9260
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator", "N=6"] 42.750 μs (5%) 81.75 KiB (1%) 606
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Conv", "size=128x128x3"] 678.615 ms (5%) 81.506 ms 1.02 GiB (1%) 4662067
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Conv", "size=28x28x3"] 20.245 ms (5%) 41.61 MiB (1%) 175254
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 7.494 μs (5%) 13.72 KiB (1%) 87
["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 572.171 μs (5%) 1.95 MiB (1%) 2945
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "ODE", "N=24"] 2.549 ms (5%) 5.94 MiB (1%) 59360
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "ODE", "N=6"] 143.519 μs (5%) 264.45 KiB (1%) 2856
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "operator", "N=24"] 961.320 μs (5%) 2.14 MiB (1%) 22274
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "operator", "N=6"] 53.701 μs (5%) 107.31 KiB (1%) 1185
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv", "size=128x128x3"] 2.234 s (5%) 868.577 ms 18.62 GiB (1%) 11476670
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv", "size=28x28x3"] 20.218 ms (5%) 63.41 MiB (1%) 414363
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 9.337 μs (5%) 22.25 KiB (1%) 149
["bench_jogger.jl", "Jacobian", "Local", "BitSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 278.171 μs (5%) 536.95 KiB (1%) 5847
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "ODE", "N=24"] 17.387 ms (5%) 30.25 MiB (1%) 175245
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "ODE", "N=6"] 1.069 ms (5%) 1.90 MiB (1%) 11062
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "operator", "N=24"] 3.478 ms (5%) 4.42 MiB (1%) 41522
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "operator", "N=6"] 213.960 μs (5%) 283.94 KiB (1%) 2625
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv", "size=128x128x3"] 1.157 s (5%) 64.242 ms 1.02 GiB (1%) 4662076
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv", "size=28x28x3"] 38.415 ms (5%) 41.74 MiB (1%) 175263
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 8.255 μs (5%) 19.53 KiB (1%) 90
["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 162.232 ms (5%) 4.260 ms 866.89 MiB (1%) 29610
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "ODE", "N=24"] 53.233 ms (5%) 26.08 MiB (1%) 214421
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "ODE", "N=6"] 3.330 ms (5%) 1.64 MiB (1%) 13518
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "operator", "N=24"] 3.475 ms (5%) 5.21 MiB (1%) 55346
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "operator", "N=6"] 205.465 μs (5%) 334.56 KiB (1%) 3489
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv", "size=128x128x3"] 12.685 s (5%) 1.923 s 10.21 GiB (1%) 50889214
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv", "size=28x28x3"] 373.607 ms (5%) 27.859 ms 384.58 MiB (1%) 1892017
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 13.705 μs (5%) 41.61 KiB (1%) 384
["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 23.748 s (5%) 9.01 MiB (1%) 39628
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "ODE", "N=24"] 11.516 ms (5%) 19.15 MiB (1%) 129173
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "ODE", "N=6"] 642.653 μs (5%) 1.21 MiB (1%) 8190
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator", "N=24"] 2.132 ms (5%) 4.05 MiB (1%) 36914
["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator", "N=6"] 115.446 μs (5%) 260.31 KiB (1%) 2337
["bench_jogger.jl", "Jacobian", "Local", "Set", "Conv", "size=128x128x3"] 2.587 s (5%) 251.530 ms 3.69 GiB (1%) 24650704
["bench_jogger.jl", "Jacobian", "Local", "Set", "Conv", "size=28x28x3"] 88.742 ms (5%) 5.128 ms 144.48 MiB (1%) 925929
["bench_jogger.jl", "Jacobian", "Local", "Set", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 13.465 μs (5%) 39.45 KiB (1%) 273
["bench_jogger.jl", "Jacobian", "Local", "Set", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 3.995 ms (5%) 8.37 MiB (1%) 24879
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE", "N=24"] 2.008 ms (5%) 4.34 MiB (1%) 22029
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE", "N=6"] 143.178 μs (5%) 286.20 KiB (1%) 1486
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator", "N=24"] 676.818 μs (5%) 1.33 MiB (1%) 9266
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator", "N=6"] 44.333 μs (5%) 86.50 KiB (1%) 609
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Conv", "size=128x128x3"] 708.502 ms (5%) 67.870 ms 1.02 GiB (1%) 4662076
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Conv", "size=28x28x3"] 20.611 ms (5%) 41.74 MiB (1%) 175263
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.01), :(depth = 5))] 7.614 μs (5%) 18.00 KiB (1%) 79
["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "SparseMul", (:(n = 50), :(p = 0.25), :(depth = 5))] 583.212 μs (5%) 1.96 MiB (1%) 2969
["bench_jogger.jl", "OptimizationProblems", "britgas", "Hessian"] 4.805 ms (5%) 10.08 MiB (1%) 28323
["bench_jogger.jl", "OptimizationProblems", "britgas", "Jacobian"] 302.457 μs (5%) 467.03 KiB (1%) 5669

Benchmark Group List

Here's a list of all the benchmark groups executed by this job:

  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("BitSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("DuplicateVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("RecursiveSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("Set", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global (shared)", ("SortedVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("BitSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("DuplicateVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("RecursiveSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("Set", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Global", ("SortedVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("BitSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("DuplicateVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("RecursiveSet", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("Set", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "ArrowHead"]
  • ["bench_jogger.jl", "Hessian", "Local", ("SortedVector", "Set"), "RandomSparsity"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "BitSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "DuplicateVector", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "RecursiveSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "Set", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Global", "SortedVector", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "BitSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "DuplicateVector", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "RecursiveSet", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "Set", "SparseMul"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "ODE"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Brusselator", "operator"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "Conv"]
  • ["bench_jogger.jl", "Jacobian", "Local", "SortedVector", "SparseMul"]
  • ["bench_jogger.jl", "OptimizationProblems", "britgas"]

Julia versioninfo

Julia Version 1.10.4
Commit 48d4fd48430 (2024-06-04 10:41 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
      Ubuntu 22.04.4 LTS
  uname: Linux 6.5.0-1025-azure #26~22.04.1-Ubuntu SMP Thu Jul 11 22:33:04 UTC 2024 x86_64 x86_64
  CPU: AMD EPYC 7763 64-Core Processor: 
              speed         user         nice          sys         idle          irq
       #1  2643 MHz       9560 s          0 s        645 s      26128 s          0 s
       #2  3206 MHz       8228 s          0 s        666 s      27442 s          0 s
       #3  3241 MHz      11061 s          0 s        713 s      24552 s          0 s
       #4  2445 MHz      10242 s          0 s        755 s      25342 s          0 s
  Memory: 15.606491088867188 GB (12644.6015625 MB free)
  Uptime: 3641.58 sec
  Load Avg:  1.0  1.0  1.0
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, znver3)
Threads: 1 default, 0 interactive, 1 GC (on 4 virtual cores)

Runtime information

Runtime Info
BLAS #threads 2
BLAS.vendor() lbt
Sys.CPU_THREADS 4

lscpu output:

Architecture:                       x86_64
CPU op-mode(s):                     32-bit, 64-bit
Address sizes:                      48 bits physical, 48 bits virtual
Byte Order:                         Little Endian
CPU(s):                             4
On-line CPU(s) list:                0-3
Vendor ID:                          AuthenticAMD
Model name:                         AMD EPYC 7763 64-Core Processor
CPU family:                         25
Model:                              1
Thread(s) per core:                 2
Core(s) per socket:                 2
Socket(s):                          1
Stepping:                           1
BogoMIPS:                           4890.86
Flags:                              fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl tsc_reliable nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm cmp_legacy svm cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw topoext invpcid_single vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves clzero xsaveerptr rdpru arat npt nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload umip vaes vpclmulqdq rdpid fsrm
Virtualization:                     AMD-V
Hypervisor vendor:                  Microsoft
Virtualization type:                full
L1d cache:                          64 KiB (2 instances)
L1i cache:                          64 KiB (2 instances)
L2 cache:                           1 MiB (2 instances)
L3 cache:                           32 MiB (1 instance)
NUMA node(s):                       1
NUMA node0 CPU(s):                  0-3
Vulnerability Gather data sampling: Not affected
Vulnerability Itlb multihit:        Not affected
Vulnerability L1tf:                 Not affected
Vulnerability Mds:                  Not affected
Vulnerability Meltdown:             Not affected
Vulnerability Mmio stale data:      Not affected
Vulnerability Retbleed:             Not affected
Vulnerability Spec rstack overflow: Vulnerable: Safe RET, no microcode
Vulnerability Spec store bypass:    Vulnerable
Vulnerability Spectre v1:           Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2:           Mitigation; Retpolines; STIBP disabled; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnerability Srbds:                Not affected
Vulnerability Tsx async abort:      Not affected
Cpu Property Value
Brand AMD EPYC 7763 64-Core Processor
Vendor :AMD
Architecture :Unknown
Model Family: 0xaf, Model: 0x01, Stepping: 0x01, Type: 0x00
Cores 16 physical cores, 16 logical cores (on executing CPU)
No Hyperthreading hardware capability detected
Clock Frequencies Not supported by CPU
Data Cache Level 1:3 : (32, 512, 32768) kbytes
64 byte cache line size
Address Size 48 bits virtual, 48 bits physical
SIMD 256 bit = 32 byte max. SIMD vector size
Time Stamp Counter TSC is accessible via rdtsc
TSC runs at constant rate (invariant from clock frequency)
Perf. Monitoring Performance Monitoring Counters (PMC) are not supported
Hypervisor Yes, Microsoft

@adrhill
Copy link
Owner Author

adrhill commented Aug 7, 2024

I've never seen a single Hessian result appear in any of the hundreds of Benchmark results we've produced over the years. Maybe they get discarded because they get run with too few samples? I can't believe this PR didn't result in a performance improvement.

@gdalle
Copy link
Collaborator

gdalle commented Aug 7, 2024

If you unfold and Ctrl+F Hessian, you can see that the Hessian benchmarks run on the "target" code (aka the main branch). What's weird is they don't run on the "baseline" code (aka the current PR).

@gdalle
Copy link
Collaborator

gdalle commented Aug 7, 2024

Even weirder, when you check the CI logs, the Hessian benchmarks also run for the baseline branch

@adrhill adrhill removed the run benchmark Run benchmarks in CI label Aug 8, 2024
@adrhill
Copy link
Owner Author

adrhill commented Aug 8, 2024

I get a decent speed-up when running the arrowhead benchmark locally:

This PR

julia> include("benchmark/hessian.jl")
hessbench_randomsparsity (generic function with 1 method)

julia> method = TracerSparsityDetector()
TracerSparsityDetector{SparseConnectivityTracer.GradientTracer{SparseConnectivityTracer.IndexSetGradientPattern{Int64, BitSet}}, SparseConnectivityTracer.HessianTracer{SparseConnectivityTracer.IndexSetHessianPattern{Int64, BitSet, Set{Tuple{Int64, Int64}}, false}}}()

julia> N, K = 200, 16
(200, 16)

julia> x = rand(N);

julia> f = ArrowHead(K)
ArrowHead(16)

julia> @benchmark hessian_sparsity($f, $x, $method)
BenchmarkTools.Trial: 389 samples with 1 evaluation.
 Range (min … max):  11.577 ms …  16.529 ms  ┊ GC (min … max): 0.00% … 23.09%
 Time  (median):     12.855 ms               ┊ GC (median):    8.48%
 Time  (mean ± σ):   12.845 ms ± 548.286 μs  ┊ GC (mean ± σ):  7.83% ±  3.41%

                           ▆▆▆▆▅▆█▁▂▁▃▂                         
  ▂▄▄▆▄▇▄▄▃▃▃▁▃▂▁▁▁▂▁▂▄▄▆▄▆████████████▇▄▆▄▂▃▄▃▃▂▄▃▃▂▂▄▂▁▄▂▂▃▄ ▄
  11.6 ms         Histogram: frequency by time         14.1 ms <

 Memory estimate: 42.39 MiB, allocs estimate: 98757.

main branch

julia> @benchmark hessian_sparsity($f, $x, $method)
BenchmarkTools.Trial: 222 samples with 1 evaluation.
 Range (min … max):  20.985 ms …  27.925 ms  ┊ GC (min … max): 5.15% … 22.89%
 Time  (median):     22.470 ms               ┊ GC (median):    6.71%
 Time  (mean ± σ):   22.575 ms ± 899.500 μs  ┊ GC (mean ± σ):  7.99% ±  2.95%

         ▄▄    █  ▄▃▅  ▂▅▃ ▃ ▂▃▃ ▅▂                             
  ▃▁▃▃▅▆▆██▇██▇██████▅████▇█▇███▇███▅██▅▅▅▇▃▅▃▃▅▇▁▁▅▁▃▁▃▃▁▃▃▁▅ ▅
  21 ms           Histogram: frequency by time         24.9 ms <

 Memory estimate: 67.95 MiB, allocs estimate: 106189.

@adrhill adrhill merged commit 6974fcf into main Aug 8, 2024
6 checks passed
@adrhill adrhill deleted the ah/symm branch August 8, 2024 13:27
@adrhill
Copy link
Owner Author

adrhill commented Aug 8, 2024

If you unfold and Ctrl+F Hessian, you can see that the Hessian benchmarks run on the "target" code (aka the main branch). What's weird is they don't run on the "baseline" code (aka the current PR).

Even weirder, when you check the CI logs, the Hessian benchmarks also run for the baseline branch

It looks like the report summarizes the baseline as well, but for some reason doesn't put it in the summary table. A speedup is clearly visible:

PR main
Screenshot 2024-08-08 at 15 30 03 Screenshot 2024-08-08 at 15 30 16

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Potential increase in performance via symmetry of Hessian
3 participants