Experiments
This commit is contained in:
@@ -69,6 +69,19 @@ benchmark.bat quick
|
|||||||
benchmark.bat full
|
benchmark.bat full
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Для multi-core сравнения `std::vector`, пяти fixed-tiered geometry и adaptive
|
||||||
|
вплоть до 100 миллионов `uint32_t`:
|
||||||
|
|
||||||
|
```bat
|
||||||
|
large_benchmark.bat smoke 12
|
||||||
|
large_benchmark.bat full 12 3
|
||||||
|
large_benchmark.bat full 12 3 huge
|
||||||
|
```
|
||||||
|
|
||||||
|
Третий аргумент ограничивает число одновременно работающих N=100M-ячеек;
|
||||||
|
значение 3 — эвристически более безопасный вариант для машины с 32 GiB RAM.
|
||||||
|
Четвёртый аргумент оставляет в матрице только N=100M.
|
||||||
|
|
||||||
Каждый запуск создаёт отдельную timestamp-папку в `results\benchmarks\`, куда
|
Каждый запуск создаёт отдельную timestamp-папку в `results\benchmarks\`, куда
|
||||||
пишутся raw CSV, сводки и описание окружения. `out\` полностью игнорируется
|
пишутся raw CSV, сводки и описание окружения. `out\` полностью игнорируется
|
||||||
Git, результаты исследования — намеренно нет.
|
Git, результаты исследования — намеренно нет.
|
||||||
|
|||||||
@@ -72,6 +72,27 @@ benchmark.bat quick rem рабочее исследование
|
|||||||
benchmark.bat full rem финальные повторы, длительный запуск
|
benchmark.bat full rem финальные повторы, длительный запуск
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Отдельная large-матрица с обязательным reserved vector, fixed leaf 64…1024 и
|
||||||
|
adaptive запускается внешним process pool. Второй аргумент — число workers:
|
||||||
|
|
||||||
|
```bat
|
||||||
|
large_benchmark.bat smoke 12
|
||||||
|
large_benchmark.bat full 12 3
|
||||||
|
large_benchmark.bat full 12 3 huge
|
||||||
|
```
|
||||||
|
|
||||||
|
Каждый worker закрепляется за отдельным logical CPU. Третий аргумент ограничивает
|
||||||
|
число одновременно работающих N=100M-ячеек и лишь снижает риск pagefile; это
|
||||||
|
эвристика, а не измеритель доступной памяти. Четвёртый аргумент `huge` оставляет
|
||||||
|
только N=100M. Large raw,
|
||||||
|
per-cell partial/log, план, environment и сводки сохраняются в отдельной папке
|
||||||
|
`results/benchmarks/`.
|
||||||
|
|
||||||
|
`large_benchmark.bat full 12 3 huge` воспроизводит только N=100M с удлинённым
|
||||||
|
512-edit horizon и сам проверяет поддержку AVX2. Прямой PowerShell runner такой
|
||||||
|
CPU-проверки не выполняет: при его ручном запуске `avx2` надо исключить на
|
||||||
|
неподдерживаемой машине.
|
||||||
|
|
||||||
Для публикации финального числа нужны одинаковый power plan, отсутствие тяжёлой
|
Для публикации финального числа нужны одинаковый power plan, отсутствие тяжёлой
|
||||||
фоновой нагрузки, закрепление на физическом ядре, randomized paired order и
|
фоновой нагрузки, закрепление на физическом ядре, randomized paired order и
|
||||||
holdout workloads/seeds. Текущие quick-данные являются calibration set, а не
|
holdout workloads/seeds. Текущие quick-данные являются calibration set, а не
|
||||||
|
|||||||
@@ -138,6 +138,28 @@ adaptive-deferred sequential `uint32` найден устойчивый AVX2 cod
|
|||||||
1.85–1.98x относительно baseline во всех пяти повторах при верных checksums.
|
1.85–1.98x относительно baseline во всех пяти повторах при верных checksums.
|
||||||
Он требует отдельного анализа generated code, а не постфактум объяснения SIMD.
|
Он требует отдельного анализа generated code, а не постфактум объяснения SIMD.
|
||||||
|
|
||||||
|
## Large-scale sweep до 100 миллионов элементов
|
||||||
|
|
||||||
|
Серии [`large v1`](../results/benchmarks/20260811-large-full-12c-v1/README.md)
|
||||||
|
и [`seed-jittered v2`](../results/benchmarks/20260811-large-n100m-512edit-12c-v2/README.md)
|
||||||
|
сравнили reserved vector, fixed tiered leaf 64…1024 и текущий adaptive в
|
||||||
|
12-worker pool; N=100M ограничивался тремя одновременными процессами. При
|
||||||
|
N=100M и чистом чтении vector
|
||||||
|
оказался примерно в 10.5 раза, а adaptive — в 8.7 раза быстрее лучшего fixed
|
||||||
|
tiered. Уже при 0.01% равномерных middle-правок fixed стал примерно в 7.5 раза
|
||||||
|
быстрее обоих.
|
||||||
|
|
||||||
|
При 5–100% равномерных правок adaptive переключался в tiered и опережал vector
|
||||||
|
примерно в 1.5–3 раза, но end-to-end оставался в сотни или тысячи раз медленнее
|
||||||
|
fixed oracle: до первого перехода он успевал выполнить сотни O(N)-сдвигов.
|
||||||
|
Каждый переход выбрал leaf1024, хотя лучший fixed leaf менялся от 64 до 1024.
|
||||||
|
Следовательно, текущая главная проблема — позднее накопление evidence и слабый
|
||||||
|
выбор geometry, а не churn, который уже ограничен hysteresis.
|
||||||
|
|
||||||
|
Эти числа являются co-scheduled throughput, а не изолированной latency: workers
|
||||||
|
делят L3/DRAM, а N>1M имеет один repeat на профиль. Поэтому SIMD-профили сохранены
|
||||||
|
отдельно, но точный AVX2 speedup по этой серии не утверждается.
|
||||||
|
|
||||||
## Чего пока нельзя утверждать
|
## Чего пока нельзя утверждать
|
||||||
|
|
||||||
- Не доказано, что adaptive implementation уже имеет geometric mean > 1 против
|
- Не доказано, что adaptive implementation уже имеет geometric mean > 1 против
|
||||||
|
|||||||
@@ -0,0 +1,39 @@
|
|||||||
|
@echo off
|
||||||
|
setlocal EnableExtensions
|
||||||
|
cd /d "%~dp0"
|
||||||
|
|
||||||
|
set "UC_LARGE_SCALE=%~1"
|
||||||
|
if not defined UC_LARGE_SCALE set "UC_LARGE_SCALE=full"
|
||||||
|
set "UC_LARGE_WORKERS=%~2"
|
||||||
|
if not defined UC_LARGE_WORKERS set "UC_LARGE_WORKERS=12"
|
||||||
|
set "UC_LARGE_HUGE_WORKERS=%~3"
|
||||||
|
if not defined UC_LARGE_HUGE_WORKERS set "UC_LARGE_HUGE_WORKERS=3"
|
||||||
|
set "UC_LARGE_ONLY_HUGE="
|
||||||
|
if /I "%~4"=="huge" set "UC_LARGE_ONLY_HUGE=-OnlyHuge"
|
||||||
|
|
||||||
|
if /I not "%UC_LARGE_SCALE%"=="smoke" if /I not "%UC_LARGE_SCALE%"=="full" (
|
||||||
|
echo Usage: large_benchmark.bat [smoke^|full] [workers 2..12] [huge-workers 1..12] [huge]
|
||||||
|
exit /b 2
|
||||||
|
)
|
||||||
|
|
||||||
|
call build.bat all test
|
||||||
|
if errorlevel 1 exit /b 1
|
||||||
|
|
||||||
|
set "UC_LARGE_PROFILES=scalar baseline"
|
||||||
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "tools\test_avx2.ps1"
|
||||||
|
if not errorlevel 1 set "UC_LARGE_PROFILES=scalar baseline avx2"
|
||||||
|
|
||||||
|
if defined UC_LARGE_ONLY_HUGE (
|
||||||
|
powershell.exe -NoProfile -ExecutionPolicy Bypass ^
|
||||||
|
-File "tools\run_large_parallel.ps1" ^
|
||||||
|
-Scale "%UC_LARGE_SCALE%" -Workers "%UC_LARGE_WORKERS%" ^
|
||||||
|
-MaxHugeWorkers "%UC_LARGE_HUGE_WORKERS%" -OnlyHuge ^
|
||||||
|
-Profiles "%UC_LARGE_PROFILES%"
|
||||||
|
) else (
|
||||||
|
powershell.exe -NoProfile -ExecutionPolicy Bypass ^
|
||||||
|
-File "tools\run_large_parallel.ps1" ^
|
||||||
|
-Scale "%UC_LARGE_SCALE%" -Workers "%UC_LARGE_WORKERS%" ^
|
||||||
|
-MaxHugeWorkers "%UC_LARGE_HUGE_WORKERS%" ^
|
||||||
|
-Profiles "%UC_LARGE_PROFILES%"
|
||||||
|
)
|
||||||
|
exit /b %errorlevel%
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
# Large-scale v1: короткий multi-core sweep
|
||||||
|
|
||||||
|
Эта серия покрывает N=100K, 1M, 10M и 100M, 14 workload, три Release/O2
|
||||||
|
профиля и семь кандидатов. Все 168 process-cell и 1764 candidate-row прошли
|
||||||
|
структурную проверку и сверку checksum.
|
||||||
|
|
||||||
|
При N=100M использовано только 256 правок. Этого оказалось недостаточно для
|
||||||
|
честной проверки первого adaptive-перехода: steady-сценарий иногда заканчивается
|
||||||
|
до применения решения, а phase-сценарий может переключиться уже в read-tail.
|
||||||
|
Кроме того, steady edit slots были периодическими и могли совпадать с окнами
|
||||||
|
policy. Поэтому эта папка остаётся полезной для масштабирования 100K–10M и как
|
||||||
|
короткий-horizon negative control, но основные выводы N=100M следует брать из
|
||||||
|
[`../20260811-large-n100m-512edit-12c-v2/`](../20260811-large-n100m-512edit-12c-v2/).
|
||||||
|
|
||||||
|
Дополнительные сводки: `comparison-large.csv`, `comparison-by-size.csv`,
|
||||||
|
`comparison-by-workload.csv` и `fixed-leaf-winners.csv`.
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
"profile","structure","score","types","cells"
|
||||||
|
"ALL","tiered_forced_leaf_512@initial_512_64_4","0,566931949353231","1","168"
|
||||||
|
"ALL","tiered_forced_leaf_1024@initial_1024_64_4","0,553481439286774","1","168"
|
||||||
|
"ALL","tiered_forced_leaf_256@initial_256_64_4","0,553010698944162","1","168"
|
||||||
|
"ALL","tiered_forced_leaf_128@initial_128_64_4","0,513187150459139","1","168"
|
||||||
|
"ALL","tiered_forced_leaf_64@initial_64_64_4","0,463804236792501","1","168"
|
||||||
|
"ALL","adaptive_shape_deferred@initial_512_64_4","0,0205677352320247","1","168"
|
||||||
|
"ALL","std::vector_reserved","0,0173864707389911","1","168"
|
||||||
|
"avx2","tiered_forced_leaf_256@initial_256_64_4","0,560122929372773","1","56"
|
||||||
|
"avx2","tiered_forced_leaf_512@initial_512_64_4","0,554003927236921","1","56"
|
||||||
|
"avx2","tiered_forced_leaf_1024@initial_1024_64_4","0,553532337654645","1","56"
|
||||||
|
"avx2","tiered_forced_leaf_128@initial_128_64_4","0,508579622822743","1","56"
|
||||||
|
"avx2","tiered_forced_leaf_64@initial_64_64_4","0,429197737714839","1","56"
|
||||||
|
"avx2","adaptive_shape_deferred@initial_512_64_4","0,0209291393229052","1","56"
|
||||||
|
"avx2","std::vector_reserved","0,017340290566822","1","56"
|
||||||
|
"baseline","tiered_forced_leaf_512@initial_512_64_4","0,603136248694051","1","56"
|
||||||
|
"baseline","tiered_forced_leaf_1024@initial_1024_64_4","0,596075133950044","1","56"
|
||||||
|
"baseline","tiered_forced_leaf_256@initial_256_64_4","0,575079662305037","1","56"
|
||||||
|
"baseline","tiered_forced_leaf_128@initial_128_64_4","0,527152330384024","1","56"
|
||||||
|
"baseline","tiered_forced_leaf_64@initial_64_64_4","0,46381187939927","1","56"
|
||||||
|
"baseline","adaptive_shape_deferred@initial_512_64_4","0,0200038790426571","1","56"
|
||||||
|
"baseline","std::vector_reserved","0,0163680914065617","1","56"
|
||||||
|
"scalar","tiered_forced_leaf_512@initial_512_64_4","0,545336445312424","1","56"
|
||||||
|
"scalar","tiered_forced_leaf_256@initial_256_64_4","0,525036190539966","1","56"
|
||||||
|
"scalar","tiered_forced_leaf_1024@initial_1024_64_4","0,513884101981563","1","56"
|
||||||
|
"scalar","tiered_forced_leaf_128@initial_128_64_4","0,50411803514391","1","56"
|
||||||
|
"scalar","tiered_forced_leaf_64@initial_64_64_4","0,50119282221055","1","56"
|
||||||
|
"scalar","adaptive_shape_deferred@initial_512_64_4","0,0207823105473695","1","56"
|
||||||
|
"scalar","std::vector_reserved","0,0185173949563986","1","56"
|
||||||
|
@@ -0,0 +1,2 @@
|
|||||||
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File tools\analyze_results.ps1 -InputDirectory <run> -Pattern large-raw.csv -OutputFile <run>\aggregate-large.csv -CellMedianFile <run>\cell-medians-large.csv
|
||||||
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File tools\analyze_large_comparison.ps1 -InputDirectory <run>
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
cfc11bbb03d12de73975cbc730d10cffb9ba10b44798039592181cbdb6200db1 tools/analyze_results.ps1
|
||||||
|
24be0e56ec7c84780ee1d61b7bfdf38f4bd97c9b591ec646d56a083cf6516027 tools/analyze_large_comparison.ps1
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
940aade5835476f62c617d7ba223b1039fcaa0df573d325eda2b18c443073613 out/bin/avx2/Release/uc_bench.exe
|
||||||
|
0fc913d9349a2a5e0da8bf83dd4fcf275e1f3f327710f5ed9a42aa74c733d3b5 out/bin/avx2/Release/uc_demo.exe
|
||||||
|
afcba756f5dd3f3a76903b30b7e4d8253ce8046a76956d278c897ba0856ea327 out/bin/avx2/Release/uc_tests.exe
|
||||||
|
b4302921f7e8b444223e4871aebb88d7ed02e6d36b4155f3839df15107eabd92 out/bin/baseline/Release/uc_bench.exe
|
||||||
|
165dd8f5f7fab8a5315261ed96315fe8ad767fd565306ba203110ff89cd372d7 out/bin/baseline/Release/uc_demo.exe
|
||||||
|
e48f4323bee238707f89ad5130f44386431c9331f350f18a474e8cbbe1c1df1b out/bin/baseline/Release/uc_tests.exe
|
||||||
|
8bfddeed5bfe14d94b726bd68803f8f67fa8bfe3aa85e40d9febdcf06d1a3174 out/bin/scalar/Release/uc_bench.exe
|
||||||
|
cf5c1933443692165ebc21391dda68c18478d0ffbb85424d5b0e8627df778ee0 out/bin/scalar/Release/uc_demo.exe
|
||||||
|
655d91ee8a83d1888e34c55ce98d142ac2bf52965b5f0272ad7f9014c012cdd0 out/bin/scalar/Release/uc_tests.exe
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
|||||||
|
"n","cells","gm_adaptive_over_best_fixed","gm_vector_over_best_fixed","gm_adaptive_over_vector","adaptive_beats_best_fixed","adaptive_beats_vector","adaptive_final_vector","adaptive_final_tiered"
|
||||||
|
"100000","42","1.42450233356633","1.34181138803305","1.06162635544068","18","18","27","15"
|
||||||
|
"1000000","42","17.7532602455649","30.9785755920516","0.573081876951114","6","26","24","18"
|
||||||
|
"10000000","42","133.820839271267","177.069344019086","0.755753854585029","3","29","21","21"
|
||||||
|
"100000000","42","621.773208082244","559.887662685972","1.11053207548705","3","23","30","12"
|
||||||
|
@@ -0,0 +1,57 @@
|
|||||||
|
"n","pattern","edit_ppm","profiles","best_fixed_leaf_mode","gm_adaptive_over_best_fixed","gm_vector_over_best_fixed","gm_adaptive_over_vector","mean_switches","mean_leaf_rebuilds","final_modes"
|
||||||
|
"100000","bursty_uniform","10000","3","512","1.41338986599629","0.728638813852389","1.93976746657724","2","0","vector:3"
|
||||||
|
"100000","phase","200000","3","256","3.7549098732025","3.8341517453584","0.979332619724341","2","0","vector:3"
|
||||||
|
"100000","steady_localized","1000","3","1024","0.351020816317641","0.28005982340763","1.25337798205609","0","0","vector:3"
|
||||||
|
"100000","steady_localized","10000","3","512","0.797539305291865","0.716698578781568","1.11279599109535","0","0","vector:3"
|
||||||
|
"100000","steady_localized","200000","3","256","4.15825507850356","5.05620176501906","0.82240687214504","1","0","tiered:3"
|
||||||
|
"100000","steady_localized","1000000","3","128","9.90383853729595","8.84124560196406","1.12018588592266","1","0","tiered:3"
|
||||||
|
"100000","steady_uniform","0","3","1024","0.25284208065525","0.152996875949157","1.65259636242033","0","0","vector:3"
|
||||||
|
"100000","steady_uniform","100","3","1024","0.237192876888515","0.274802496191877","0.863139455337766","0","0","vector:3"
|
||||||
|
"100000","steady_uniform","1000","3","1024","0.273855154959138","0.192555391086103","1.42221494508394","0","0","vector:3"
|
||||||
|
"100000","steady_uniform","10000","3","1024","0.715654234160065","0.621142936933888","1.1521570827042","0","0","vector:3"
|
||||||
|
"100000","steady_uniform","50000","3","1024","1.66946736136836","1.67726452806114","0.995351260005607","0","0","vector:3"
|
||||||
|
"100000","steady_uniform","200000","3","64","2.74488743214293","3.79380405907859","0.72351850264233","1","0","tiered:3"
|
||||||
|
"100000","steady_uniform","500000","3","128","6.66057679418763","8.57828336593821","0.776446348302596","1","0","tiered:3"
|
||||||
|
"100000","steady_uniform","1000000","3","256","6.45407041190545","8.91346384059796","0.72408106739708","1","0","tiered:3"
|
||||||
|
"1000000","bursty_uniform","10000","3","512","3.75850857058921","19.001554000588","0.197800062588192","2","0","vector:3"
|
||||||
|
"1000000","phase","200000","3","128","80.0122371706638","297.398047807238","0.269040895730844","1","0","tiered:3"
|
||||||
|
"1000000","steady_localized","1000","3","1024","2.59033381042949","2.46214613038401","1.05206339236473","0","0","vector:3"
|
||||||
|
"1000000","steady_localized","10000","3","1024","19.7563627491932","18.3405678578344","1.0771947140532","0","0","vector:3"
|
||||||
|
"1000000","steady_localized","200000","3","128","57.7513936814562","298.995949214643","0.193151090618949","1","0","tiered:3"
|
||||||
|
"1000000","steady_localized","1000000","3","128","469.505186559908","1337.86159387302","0.350937039160173","1","0","tiered:3"
|
||||||
|
"1000000","steady_uniform","0","3","512","0.265232475749383","0.203385890578331","1.30408493428522","0","0","vector:3"
|
||||||
|
"1000000","steady_uniform","100","3","512","0.711526676102855","0.331119338335268","2.1488526755342","0","0","vector:3"
|
||||||
|
"1000000","steady_uniform","1000","3","256","1.83812897622199","1.62020192176551","1.13450610786772","0","0","vector:3"
|
||||||
|
"1000000","steady_uniform","10000","3","512","15.7884250852538","15.5330865682087","1.01643836309827","0","0","vector:3"
|
||||||
|
"1000000","steady_uniform","50000","3","1024","68.7193439453352","68.9256695003888","0.997006549859448","0","0","vector:3"
|
||||||
|
"1000000","steady_uniform","200000","3","64","58.3148085869831","225.094737814048","0.259067844736368","1","0","tiered:3"
|
||||||
|
"1000000","steady_uniform","500000","3","64","172.532573745235","557.215370961737","0.3096335505739","1","0","tiered:3"
|
||||||
|
"1000000","steady_uniform","1000000","3","64","195.521484588995","501.219782275943","0.390091316230915","1","0","tiered:3"
|
||||||
|
"10000000","bursty_uniform","10000","3","1024","74.9562812891702","266.194382276749","0.281584760159371","1","0","tiered:3"
|
||||||
|
"10000000","phase","200000","3","256","1822.64415618774","2609.6859107604","0.698415142095268","1","0","tiered:3"
|
||||||
|
"10000000","steady_localized","1000","3","256","21.4514639630883","18.2084364281249","1.17810576694846","0","0","vector:3"
|
||||||
|
"10000000","steady_localized","10000","3","64","109.473887822653","71.4989497111665","1.53112581744058","0","0","vector:3"
|
||||||
|
"10000000","steady_localized","200000","3","1024","582.94914699187","1856.05656079185","0.314079408627055","1","0","tiered:3"
|
||||||
|
"10000000","steady_localized","1000000","3","128","2697.96787138103","3288.78994789949","0.820352748008181","1","0","tiered:3"
|
||||||
|
"10000000","steady_uniform","0","3","1024","0.319426941388662","0.280997537778896","1.1367606417961","0","0","vector:3"
|
||||||
|
"10000000","steady_uniform","100","3","1024","1.61345372202603","1.13108667742739","1.42646337740956","0","0","vector:3"
|
||||||
|
"10000000","steady_uniform","1000","3","1024","11.6111805114381","10.7290738866991","1.08221647404559","0","0","vector:3"
|
||||||
|
"10000000","steady_uniform","10000","3","1024","85.8612177063287","103.796319572813","0.827208691596213","0","0","vector:3"
|
||||||
|
"10000000","steady_uniform","50000","3","1024","575.450815324372","816.029825947581","0.705183557054614","0","0","vector:3"
|
||||||
|
"10000000","steady_uniform","200000","3","512","643.77717904362","1915.93780880145","0.336011521922179","1","0","tiered:3"
|
||||||
|
"10000000","steady_uniform","500000","3","256","2053.48953968553","3405.94468817297","0.602913355233339","1","0","tiered:3"
|
||||||
|
"10000000","steady_uniform","1000000","3","128","2994.67632180015","2862.54872481806","1.0461573268034","1","0","tiered:3"
|
||||||
|
"100000000","bursty_uniform","10000","3","512","674.861577199131","586.375685781023","1.15090307044408","1","0","tiered:3"
|
||||||
|
"100000000","phase","200000","3","128","9383.21164287413","3922.86510112899","2.39192819558685","1","0","tiered:3"
|
||||||
|
"100000000","steady_localized","1000","3","1024","65.5103857978597","60.4721918666683","1.083314227179","0","0","vector:3"
|
||||||
|
"100000000","steady_localized","10000","3","256","546.595560562889","471.5768398007","1.15908058757485","0","0","vector:3"
|
||||||
|
"100000000","steady_localized","200000","3","64","5715.86480799181","5951.37008009905","0.960428393976915","1","0","tiered:3"
|
||||||
|
"100000000","steady_localized","1000000","3","64","25264.4580748093","24340.6927213473","1.03795148166231","0","0","vector:3"
|
||||||
|
"100000000","steady_uniform","0","3","1024","0.123547939787289","0.0979374439564484","1.26149851166454","0","0","vector:3"
|
||||||
|
"100000000","steady_uniform","100","3","1024","7.46234385746249","7.06584772910576","1.05611444564868","0","0","vector:3"
|
||||||
|
"100000000","steady_uniform","1000","3","128","64.1413478213343","75.7201864103074","0.847083860488265","0","0","vector:3"
|
||||||
|
"100000000","steady_uniform","10000","3","1024","407.904270222866","507.154786048088","0.804299360756085","0","0","vector:3"
|
||||||
|
"100000000","steady_uniform","50000","3","1024","1643.24258214175","1953.74844079381","0.841071730541778","0","0","vector:3"
|
||||||
|
"100000000","steady_uniform","200000","3","512","5815.5308730939","5283.48156463207","1.10070051384742","1","0","tiered:3"
|
||||||
|
"100000000","steady_uniform","500000","3","1024","8866.67922545128","7039.23850826099","1.25960772817197","0","0","vector:3"
|
||||||
|
"100000000","steady_uniform","1000000","3","256","19286.5485724085","16210.462596792","1.18975929633403","0","0","vector:3"
|
||||||
|
@@ -0,0 +1,169 @@
|
|||||||
|
"profile","type","n","pattern","edit_ppm","workload","best_fixed_leaf","best_fixed_ns_per_op","adaptive_ns_per_op","vector_ns_per_op","adaptive_over_best_fixed","vector_over_best_fixed","adaptive_over_vector","adaptive_switches","adaptive_leaf_rebuilds","adaptive_final_mode","adaptive_final_leaf","adaptive_transition_ns","adaptive_construction_ns","vector_construction_ns","best_fixed_construction_ns"
|
||||||
|
"avx2","uint32","100000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","512","62.98779296875","78.63037109375","46.0087890625","1.24834301041093","0.730439770850937","1.70902935495511","2","0","vector","256","1718100","1047950","434550","2570650"
|
||||||
|
"baseline","uint32","100000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","1024","55.86669921875","111.19970703125","47.24169921875","1.99044705676703","0.845614648428965","2.35384647187109","2","0","vector","256","4293150","1198200","454200","2561700"
|
||||||
|
"scalar","uint32","100000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","512","60.5400390625","68.79296875","37.916015625","1.1363218427887","0.626296517348733","1.81435120795343","2","0","vector","256","1737900","862150","393000","2727700"
|
||||||
|
"avx2","uint32","100000","phase","200000","phase_edit_ppm_200000","256","266.650390625","895.478515625","965.33203125","3.3582494048709","3.62021607764146","0.927637835103692","2","0","vector","256","1478300","1194150","750750","3510500"
|
||||||
|
"baseline","uint32","100000","phase","200000","phase_edit_ppm_200000","256","189.04296875","870.244140625","720.44921875","4.60341977477012","3.8110341977477","1.20791877897362","2","0","vector","256","1549350","1435800","470300","4923950"
|
||||||
|
"scalar","uint32","100000","phase","200000","phase_edit_ppm_200000","128","251.9140625","862.6953125","1029.16015625","3.42456194758877","4.08536207163901","0.838251760195851","2","0","vector","256","1502550","1391450","622300","3023600"
|
||||||
|
"avx2","uint32","100000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","60.008251953125","18.6314453125","15.3490234375","0.310481387244105","0.255781878957077","1.21385216384389","0","0","vector","512","0","1282900","520250","3096050"
|
||||||
|
"baseline","uint32","100000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","51.9517578125","21.435595703125","16.2521484375","0.412605782858947","0.312831540679642","1.31893920274964","0","0","vector","512","0","1230300","384900","2845750"
|
||||||
|
"scalar","uint32","100000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","70.289892578125","23.73125","19.2958984375","0.337619665211801","0.274518820982024","1.22985981071917","0","0","vector","512","0","1098700","534800","3123200"
|
||||||
|
"avx2","uint32","100000","steady_localized","10000","steady_localized_edit_ppm_10000","1024","90.986328125","60.96826171875","64.08203125","0.670081571321241","0.704303960502308","0.951409631209997","0","0","vector","512","0","1180850","571750","3073800"
|
||||||
|
"baseline","uint32","100000","steady_localized","10000","steady_localized_edit_ppm_10000","256","57.7236328125","51.07568359375","40.134765625","0.884831413151973","0.695291749141417","1.27260450630201","0","0","vector","512","0","986800","341750","2958750"
|
||||||
|
"scalar","uint32","100000","steady_localized","10000","steady_localized_edit_ppm_10000","512","54.0673828125","46.259765625","40.64599609375","0.855594689785966","0.751765555856588","1.13811371526735","0","0","vector","512","0","1049200","412700","2593350"
|
||||||
|
"avx2","uint32","100000","steady_localized","200000","steady_localized_edit_ppm_200000","256","144.66796875","562.900390625","632.177734375","3.89098150398272","4.3698528419063","0.8904147678999","1","0","tiered","128","1714150","1180950","571550","2713750"
|
||||||
|
"baseline","uint32","100000","steady_localized","200000","steady_localized_edit_ppm_200000","128","97.900390625","484.951171875","611.77734375","4.95351620947631","6.24897755610973","0.792692270855282","1","0","tiered","128","1477750","1012500","424400","2488700"
|
||||||
|
"scalar","uint32","100000","steady_localized","200000","steady_localized_edit_ppm_200000","256","151.689453125","565.869140625","718.046875","3.73044485933175","4.73366381252817","0.788067130888913","1","0","tiered","128","1526000","1249600","485200","3153150"
|
||||||
|
"avx2","uint32","100000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","385.107421875","4485.107421875","3356.591796875","11.6463801191835","8.7159883352352","1.33620877762099","1","0","tiered","128","2166900","1277450","696100","3127050"
|
||||||
|
"baseline","uint32","100000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","442.87109375","3960.7421875","4235.498046875","8.94332965821389","9.56372657111356","0.935130212236146","1","0","tiered","128","2395050","1378450","777500","3855400"
|
||||||
|
"scalar","uint32","100000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","416.748046875","3886.81640625","3455.17578125","9.32653778558875","8.29080257762156","1.12492580763687","1","0","tiered","128","2517100","1256050","434200","3283750"
|
||||||
|
"avx2","uint32","100000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","48.633775","8.9348","7.90995","0.183715946376772","0.162643142548568","1.12956466222922","0","0","vector","512","0","878100","353750","2475550"
|
||||||
|
"baseline","uint32","100000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","55.212175","13.7308","10.45955","0.248691525012373","0.189442817639407","1.31275246066991","0","0","vector","512","0","1164750","339400","2570400"
|
||||||
|
"scalar","uint32","100000","steady_uniform","0","steady_uniform_edit_ppm_0","256","54.6853","19.346875","6.3563","0.353785660863157","0.11623416164856","3.04373220269654","0","0","vector","512","0","993750","312150","1808850"
|
||||||
|
"avx2","uint32","100000","steady_uniform","100","steady_uniform_edit_ppm_100","256","53.803025","11.91640625","9.97703125","0.221482086741405","0.185436251028636","1.19438397569417","0","0","vector","512","0","1156300","400550","1812250"
|
||||||
|
"baseline","uint32","100000","steady_uniform","100","steady_uniform_edit_ppm_100","1024","44.53408125","12.961275","28.85111875","0.291041706400983","0.647843582716776","0.449246877124999","0","0","vector","512","0","887300","269300","2324900"
|
||||||
|
"scalar","uint32","100000","steady_uniform","100","steady_uniform_edit_ppm_100","1024","36.29928125","7.51465625","6.2704","0.20701942273306","0.172741712344511","1.1984333136642","0","0","vector","512","0","772400","249750","1784500"
|
||||||
|
"avx2","uint32","100000","steady_uniform","1000","steady_uniform_edit_ppm_1000","1024","36.80771484375","9.59267578125","6.898193359375","0.260615901366636","0.187411617066098","1.39060697221731","0","0","vector","512","0","780200","230100","1549100"
|
||||||
|
"baseline","uint32","100000","steady_uniform","1000","steady_uniform_edit_ppm_1000","1024","44.884033203125","13.647265625","8.35146484375","0.30405613424352","0.186067611303","1.63411639518703","0","0","vector","512","0","958900","216000","1809100"
|
||||||
|
"scalar","uint32","100000","steady_uniform","1000","steady_uniform_edit_ppm_1000","512","44.393017578125","11.50595703125","9.08896484375","0.259183936099889","0.204738612953147","1.26592601347358","0","0","vector","512","0","1087200","322250","2402400"
|
||||||
|
"avx2","uint32","100000","steady_uniform","10000","steady_uniform_edit_ppm_10000","256","53.2587890625","41.16357421875","37.935546875","0.772897299081358","0.712287071162697","1.08509241620759","0","0","vector","512","0","1036100","317350","2310450"
|
||||||
|
"baseline","uint32","100000","steady_uniform","10000","steady_uniform_edit_ppm_10000","1024","52.80712890625","44.58544921875","34.63232421875","0.844307390729457","0.655826683556945","1.28739408123846","0","0","vector","512","0","1022650","319400","2832050"
|
||||||
|
"scalar","uint32","100000","steady_uniform","10000","steady_uniform_edit_ppm_10000","1024","97.52099609375","54.775390625","50.02978515625","0.561677923924636","0.513015526504208","1.09485560359551","0","0","vector","512","0","1370150","431400","2832150"
|
||||||
|
"avx2","uint32","100000","steady_uniform","50000","steady_uniform_edit_ppm_50000","256","131.3671875","229.091796875","236.3720703125","1.74390425215581","1.79932352066607","0.969199942159516","0","0","vector","512","0","1099300","386000","2693450"
|
||||||
|
"baseline","uint32","100000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","129.10400390625","299.3603515625","300.88134765625","2.31875342750704","2.33053459654696","0.994944864128009","0","0","vector","512","0","1282150","365900","2422150"
|
||||||
|
"scalar","uint32","100000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","151.03515625","173.7939453125","169.94873046875","1.15068537436958","1.12522630285788","1.02262573443852","0","0","vector","512","0","954050","253350","2113400"
|
||||||
|
"avx2","uint32","100000","steady_uniform","200000","steady_uniform_edit_ppm_200000","512","206.552734375","447.099609375","646.26953125","2.16457850692639","3.12883551605125","0.691816011363293","1","0","tiered","256","1255700","1057300","565300","2500400"
|
||||||
|
"baseline","uint32","100000","steady_uniform","200000","steady_uniform_edit_ppm_200000","128","229.35546875","448.408203125","666.513671875","1.95507962190241","2.90602912373329","0.67276669938902","1","0","tiered","256","1263550","1023550","562600","3177050"
|
||||||
|
"scalar","uint32","100000","steady_uniform","200000","steady_uniform_edit_ppm_200000","64","113.916015625","556.69921875","684.111328125","4.88692670381483","6.00540077153879","0.813755299558905","1","0","tiered","256","1578850","983550","692150","2749750"
|
||||||
|
"avx2","uint32","100000","steady_uniform","500000","steady_uniform_edit_ppm_500000","64","219.775390625","1708.30078125","2096.4111328125","7.77293934681182","9.53888024883359","0.814869161164099","1","0","tiered","256","1808550","1436950","745550","3800550"
|
||||||
|
"baseline","uint32","100000","steady_uniform","500000","steady_uniform_edit_ppm_500000","128","301.07421875","2132.2509765625","3883.8134765625","7.08214401556925","12.8998540382744","0.549009624028011","1","0","tiered","256","1898700","1690600","749500","4449050"
|
||||||
|
"scalar","uint32","100000","steady_uniform","500000","steady_uniform_edit_ppm_500000","128","321.6552734375","1726.5380859375","1650.09765625","5.3676660341556","5.13001897533207","1.04632479138309","1","0","tiered","256","1574550","1089750","749200","2846700"
|
||||||
|
"avx2","uint32","100000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","256","494.82421875","3055.46875","3774.90234375","6.17485691730807","7.62877442273535","0.809416634329324","1","0","tiered","256","1513800","938750","579850","2908600"
|
||||||
|
"baseline","uint32","100000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","128","361.572265625","3380.126953125","4866.9921875","9.34841323430115","13.4606347062795","0.694500180585096","1","0","tiered","256","1686550","1296650","612800","3067000"
|
||||||
|
"scalar","uint32","100000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","256","621.826171875","2896.044921875","4288.330078125","4.65732234000785","6.89634864546525","0.675331625391403","1","0","tiered","256","1392850","1307000","539650","2361850"
|
||||||
|
"avx2","uint32","1000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","512","323.3984375","882.0712890625","4772.38818359375","2.72750634134557","14.7569920884165","0.184828068281376","2","0","vector","1024","14131750","12665800","5188600","31155350"
|
||||||
|
"baseline","uint32","1000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","128","211.6826171875","1130.18310546875","4896.25244140625","5.33904540904121","23.1301582834709","0.230826151019319","2","0","vector","1024","19626100","11697400","3753650","24829400"
|
||||||
|
"scalar","uint32","1000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","512","238.85009765625","870.8486328125","4800.830078125","3.64600492676295","20.0997618390523","0.181395429257229","2","0","vector","1024","11430250","11169100","4891650","28732000"
|
||||||
|
"avx2","uint32","1000000","phase","200000","phase_edit_ppm_200000","1024","842.763671875","65580.751953125","263730.72265625","77.8163014635164","312.935561246364","0.248665575601534","1","0","tiered","512","29514550","14506200","10273900","73004300"
|
||||||
|
"baseline","uint32","1000000","phase","200000","phase_edit_ppm_200000","256","672.998046875","52953.486328125","206965.7421875","78.6829717768265","307.527998258724","0.255856286979861","1","0","tiered","512","26992750","14135450","9603400","44048550"
|
||||||
|
"scalar","uint32","1000000","phase","200000","phase_edit_ppm_200000","128","695.64453125","58197.626953125","190135.029296875","83.6600078614145","273.322107420614","0.306085770561803","1","0","tiered","512","30933450","14865900","13296500","38414700"
|
||||||
|
"avx2","uint32","1000000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","377.591015625","889.672705078125","857.805126953125","2.35618081009028","2.27178373281276","1.03715013716249","0","0","vector","512","0","12434450","5481100","30087200"
|
||||||
|
"baseline","uint32","1000000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","421.859375","1081.85424804688","1113.06284179688","2.56449023574948","2.638468901626","0.971961516836176","0","0","vector","512","0","13922150","18250800","38403300"
|
||||||
|
"scalar","uint32","1000000","steady_localized","1000","steady_localized_edit_ppm_1000","512","485.9162109375","1397.71596679687","1209.9958984375","2.87645469596537","2.49013280726527","1.1551410782481","0","0","vector","512","0","12829950","11996900","34249100"
|
||||||
|
"avx2","uint32","1000000","steady_localized","10000","steady_localized_edit_ppm_10000","1024","410.3505859375","7817.97216796875","10246.4716796875","19.051933726639","24.9700427654516","0.762991633838897","0","0","vector","512","0","13732300","5841250","31544000"
|
||||||
|
"baseline","uint32","1000000","steady_localized","10000","steady_localized_edit_ppm_10000","1024","384.7197265625","7750.97705078125","6296.357421875","20.1470746510371","16.3660893558369","1.23102558057657","0","0","vector","512","0","13394500","4486550","28499050"
|
||||||
|
"scalar","uint32","1000000","steady_localized","10000","steady_localized_edit_ppm_10000","1024","369.486328125","7422.80908203125","5577.9228515625","20.08953651871","15.0964255697046","1.33074789299962","0","0","vector","512","0","13472300","2661650","30681150"
|
||||||
|
"avx2","uint32","1000000","steady_localized","200000","steady_localized_edit_ppm_200000","128","469.55078125","21389.7265625","106301.58203125","45.5535959402687","226.389958820349","0.201217386926678","1","0","tiered","256","13098450","9446400","3194200","35130550"
|
||||||
|
"baseline","uint32","1000000","steady_localized","200000","steady_localized_edit_ppm_200000","128","415.849609375","28355.693359375","146881.796875","68.1873752436418","353.208933142334","0.19305110614562","1","0","tiered","256","32210400","12966550","4042750","32830800"
|
||||||
|
"scalar","uint32","1000000","steady_localized","200000","steady_localized_edit_ppm_200000","256","393.095703125","24375.810546875","131403.02734375","62.0098626189352","334.277445159367","0.185504177792707","1","0","tiered","256","17418100","11134300","3659050","25729050"
|
||||||
|
"avx2","uint32","1000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","481.494140625","267109.814453125","830203.271484375","554.751952134672","1724.22299969577","0.32174025763057","1","0","tiered","256","19766050","10681350","5882150","39413050"
|
||||||
|
"baseline","uint32","1000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","666.943359375","232635.64453125","661187.3046875","348.808697562047","991.369499963394","0.351845298422966","1","0","tiered","256","15093300","12977250","5564600","35617600"
|
||||||
|
"scalar","uint32","1000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","547.509765625","292837.646484375","767001.904296875","534.853741193258","1400.89173281013","0.381795201346762","1","0","tiered","256","17744550","14513650","3903850","34562900"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","0","steady_uniform_edit_ppm_0","256","283.569925","72.151525","44.421925","0.254439976312721","0.156652455298283","1.62423229069879","0","0","vector","512","0","11302950","3464300","24226850"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","380.49525","131.390525","92.48685","0.345314494727595","0.243069657242765","1.42064006937202","0","0","vector","512","0","13181500","3709200","30605850"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","0","steady_uniform_edit_ppm_0","512","413.2601","87.761375","91.309925","0.212363533280856","0.220950256267179","0.961137302434538","0","0","vector","512","0","12681300","3866900","33878050"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","100","steady_uniform_edit_ppm_100","512","150.29415625","105.7000625","54.84978125","0.703287906445132","0.364949527104451","1.92708266270433","0","0","vector","512","0","9891300","2157000","33739050"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","100","steady_uniform_edit_ppm_100","512","151.42375","111.789675","77.0585","0.738257208661125","0.508893089756395","1.45071179688159","0","0","vector","512","0","13131100","2537900","18572900"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","100","steady_uniform_edit_ppm_100","512","293.3170625","203.5026375","57.33655625","0.693797475555995","0.195476375500658","3.54926509036719","0","0","vector","512","0","13331000","2624700","24815850"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","256","193.28564453125","348.847607421875","292.393310546875","1.80482936675348","1.51275233738117","1.1930765678921","0","0","vector","512","0","10323750","2671000","17026000"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","256","177.065478515625","275.217333984375","247.408935546875","1.5543251925309","1.39727369570259","1.11239852099938","0","0","vector","512","0","8466300","2281350","17077900"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","1024","135.0779296875","299.04345703125","271.795654296875","2.21385875341057","2.01213962137019","1.10025106105859","0","0","vector","512","0","8270700","2282550","17637400"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","1024","306.2998046875","4346.5322265625","4211.005859375","14.1904505325983","13.7479874127613","1.03218384673718","0","0","vector","512","0","11191900","4271050","23274300"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","256","317.43408203125","5220.7451171875","4861.61962890625","16.4467063012898","15.3153675175549","1.07386951585969","0","0","vector","512","0","12127000","3670400","24084600"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","512","280.7919921875","4735.06591796875","4997.94482421875","16.8632512668199","17.7994564064397","0.947402599369213","0","0","vector","512","0","10095900","4334200","23076450"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","64","255.56884765625","20519.0502929688","18430.2807617188","80.2877599564393","72.1147390643958","1.11333357089104","0","0","vector","512","0","10167350","4076350","24093800"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","512","301.1962890625","18596.26953125","18558.26171875","61.7413633784551","61.6151738672287","1.00204802653805","0","0","vector","512","0","8430950","3703750","21686550"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","423.955078125","27754.365234375","31242.8833007813","65.4653444820676","73.6938532236889","0.888341993508676","0","0","vector","512","0","10741300","5234200","26121500"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","256","366.083984375","25383.251953125","82743.544921875","69.337236908795","226.023394776856","0.30677017738473","1","0","tiered","1024","16282100","11592200","3818600","21936200"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","1024","840.478515625","33403.505859375","128750.1953125","39.7434380991111","153.186777435659","0.259444312129381","1","0","tiered","1024","18126000","12702200","5455800","29779700"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","64","448.046875","32242.451171875","147585.87890625","71.9622275501308","329.398299912816","0.218465692048737","1","0","tiered","1024","18730150","12045650","6940100","32804500"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","64","870.9716796875","119549.438476563","413088.940429688","137.259845830414","474.285157673441","0.289403629039813","1","0","tiered","1024","20304450","11172650","6318150","36728050"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","64","594.23828125","121071.215820313","415943.627929688","203.7418652424","699.961010682006","0.291076020139871","1","0","tiered","1024","21896250","16016350","7333800","36566300"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","128","575.537109375","105697.045898438","299936.42578125","183.649401883432","521.141766352761","0.352398164454774","1","0","tiered","1024","17471300","11542800","5675750","26948900"
|
||||||
|
"avx2","uint32","1000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","64","2231.201171875","385303.564453125","927788.916015625","172.688849983587","415.824860488018","0.415292269396583","1","0","tiered","1024","24411450","10363850","9212750","59463250"
|
||||||
|
"baseline","uint32","1000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","64","1411.376953125","292366.845703125","819130.95703125","207.150077841204","580.377166580176","0.356923204029232","1","0","tiered","1024","20114800","13168650","6585850","37615900"
|
||||||
|
"scalar","uint32","1000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","128","1629.39453125","340455.46875","850139.306640625","208.945999400659","521.751663170512","0.400470212458861","1","0","tiered","1024","22492500","15269100","6024450","45933000"
|
||||||
|
"avx2","uint32","10000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","1024","395.150390625","22064.212890625","76945.73828125","55.8375074758918","194.725198574514","0.286750291614286","1","0","tiered","1024","152120200","129999000","117904600","309943500"
|
||||||
|
"baseline","uint32","10000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","1024","295.52734375","23528.87109375","93159.072265625","79.6165620249818","315.229958363624","0.252566610224091","1","0","tiered","1024","184252100","131430800","56351500","294761500"
|
||||||
|
"scalar","uint32","10000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","1024","265.58203125","25158.998046875","81610.4375","94.7315521628499","307.289002632779","0.308281622027513","1","0","tiered","1024","233024300","123518500","81546500","296853600"
|
||||||
|
"avx2","uint32","10000000","phase","200000","phase_edit_ppm_200000","256","769.375","1298484.921875","1953337.0703125","1687.71395207149","2538.86215475223","0.66475210121685","1","0","tiered","1024","218073700","182474400","66809600","252568900"
|
||||||
|
"baseline","uint32","10000000","phase","200000","phase_edit_ppm_200000","256","627.0703125","1555403.7890625","2241121.9921875","2480.42963931975","3573.95645673706","0.694029059767653","1","0","tiered","1024","215907900","167828400","57833600","305889800"
|
||||||
|
"scalar","uint32","10000000","phase","200000","phase_edit_ppm_200000","512","907.3046875","1312299.8046875","1777172.1484375","1446.37167951091","1958.73797735394","0.738420195163019","1","0","tiered","1024","245004600","132714200","56307300","500273400"
|
||||||
|
"avx2","uint32","10000000","steady_localized","1000","steady_localized_edit_ppm_1000","512","524.1912109375","12443.622265625","10741.315625","23.7387083300576","20.4912165654008","1.15848213571371","0","0","vector","512","0","236225200","35806200","343866300"
|
||||||
|
"baseline","uint32","10000000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","616.241796875","10429.92421875","7746.390234375","16.925051613897","12.5703746056457","1.34642380556387","0","0","vector","512","0","207162300","40947900","295943500"
|
||||||
|
"scalar","uint32","10000000","steady_localized","1000","steady_localized_edit_ppm_1000","256","546.282421875","13421.4966796875","12803.2205078125","24.5687873931968","23.4369988766399","1.04829067588875","0","0","vector","512","0","241448100","52950200","263578100"
|
||||||
|
"avx2","uint32","10000000","steady_localized","10000","steady_localized_edit_ppm_10000","256","708.169921875","93357.04296875","70160.373046875","131.828590970895","99.0727943670828","1.33062352599489","0","0","vector","512","0","117684100","59702700","221263300"
|
||||||
|
"baseline","uint32","10000000","steady_localized","10000","steady_localized_edit_ppm_10000","512","1278.517578125","108876.580078125","62301.95703125","85.1584537756588","48.7298400094103","1.74756276152792","0","0","vector","512","0","156710700","48130400","367081300"
|
||||||
|
"scalar","uint32","10000000","steady_localized","10000","steady_localized_edit_ppm_10000","64","801.806640625","93705.244140625","60704.26953125","116.86763290908","75.7093624018026","1.54363514896405","0","0","vector","512","0","134872100","47471900","306255400"
|
||||||
|
"avx2","uint32","10000000","steady_localized","200000","steady_localized_edit_ppm_200000","1024","1151.2890625","681295.625","2307224.3359375","591.767651749058","2004.03565975639","0.295287984955814","1","0","tiered","1024","191337800","118065100","53422500","306917300"
|
||||||
|
"baseline","uint32","10000000","steady_localized","200000","steady_localized_edit_ppm_200000","1024","706.25","497849.6875","1506502.5390625","704.919911504425","2133.10094026549","0.330467207715304","1","0","tiered","1024","262395700","93290500","80839200","208298800"
|
||||||
|
"scalar","uint32","10000000","steady_localized","200000","steady_localized_edit_ppm_200000","128","1273.75","604902.265625","1905201.71875","474.898736506379","1495.74227183513","0.317500377871733","1","0","tiered","1024","193963500","238735700","33912300","314486300"
|
||||||
|
"avx2","uint32","10000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","1430.2734375","4024958.7890625","5450734.765625","2814.11839410078","3810.97391779325","0.738424994451364","1","0","tiered","1024","174331300","163530900","29863100","339068200"
|
||||||
|
"baseline","uint32","10000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","1792.1875","4293867.96875","5160608.3984375","2395.88099389712","2879.5025065388","0.832046851307313","1","0","tiered","1024","149055600","145095600","36324200","294366900"
|
||||||
|
"scalar","uint32","10000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","64","1946.6796875","5670184.765625","6310292.1875","2912.74666399117","3241.56677034213","0.898561365645955","1","0","tiered","1024","186072600","137129000","35876800","380349200"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","340.2254","115.8254","79.637","0.340437251304576","0.234071295088491","1.4544169167598","0","0","vector","512","0","100429700","30386000","243870600"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","350.4574","87.8639","65.2805","0.250712069426983","0.186272283022131","1.34594404148253","0","0","vector","512","0","101591900","26640600","247049800"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","313.7226","119.7976","159.6456","0.381858367870214","0.508875038011288","0.750397129642157","0","0","vector","512","0","112146600","23003900","242891500"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","100","steady_uniform_edit_ppm_100","256","586.5420703125","754.282890625","354.96205078125","1.28598258983048","0.605177477878325","2.12496769433484","0","0","vector","512","0","148804200","26392500","174108900"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","100","steady_uniform_edit_ppm_100","1024","283.2444921875","452.51333984375","531.87150390625","1.59760684611724","1.87778233496652","0.850794480471945","0","0","vector","512","0","95175600","19798900","220373400"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","100","steady_uniform_edit_ppm_100","1024","344.8611328125","705.03193359375","439.14091796875","2.04439371825956","1.27338478067202","1.60547993763569","0","0","vector","512","0","234611200","37909300","240730400"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","1024","282.3109375","2644.999609375","2153.9486328125","9.36910072559622","7.62970309222433","1.22797710636271","0","0","vector","512","0","83347600","18130900","196227000"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","1024","260.72265625","3428.67578125","3316.684765625","13.1506629710091","12.7211221814368","1.03376595110446","0","0","vector","512","0","75591700","21513000","197472800"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","1024","238.7291015625","3033.1154296875","3037.798828125","12.7052605226406","12.7248785683956","0.998458292104751","0","0","vector","512","0","80745300","26836800","180712700"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","1024","532.123046875","42486.75390625","57871.56640625","79.8438521987763","108.755985567835","0.734155934332227","0","0","vector","512","0","70665400","28998500","251296000"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","256","913.240234375","52225.732421875","55449.962890625","57.1872881374057","60.7178273617934","0.941853334057053","0","0","vector","512","0","81550100","41257700","268808400"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","1024","344.00390625","47688.484375","58255.890625","138.627740873219","169.346596264123","0.818603644427589","0","0","vector","512","0","80753100","20268500","212655500"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","493.06640625","281384.21875","468838.955078125","570.682194493959","950.863715587245","0.60017243810961","0","0","vector","512","0","79390600","29369000","194905100"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","513.515625","289248.662109375","440721.259765625","563.271394340484","858.243134793854","0.656307486194782","0","0","vector","512","0","81474400","35576900","202904800"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","852.294921875","505245.56640625","567517.666015625","592.806026926382","665.870054425666","0.890272843757325","0","0","vector","512","0","133081000","82229900","285433600"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","1024","968.0078125","497795.078125","1748672.2265625","514.246963399379","1806.46499334167","0.284670317606379","1","0","tiered","1024","176060700","127770900","49447900","266275700"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","256","921.1328125","886615.390625","2143574.2578125","962.527204105","2327.10661125482","0.413615431046361","1","0","tiered","1024","239618600","137724000","60276300","330384600"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","512","1033.671875","557191.7578125","1729342.8125","539.041228932054","1673.00944750964","0.322198556460303","1","0","tiered","1024","175287200","113066700","60436700","315427500"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","256","1937.890625","2614467.96875","4867697.55859375","1349.13082039911","2511.85360814352","0.537105672092188","1","0","tiered","1024","157119000","100042500","60479300","410241600"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","512","1383.69140625","3400392.1875","5175669.140625","2457.47872115181","3740.47935634131","0.656995664736285","1","0","tiered","1024","230785800","95307800","56914300","282604300"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","256","1276.26953125","3333312.6953125","5367024.609375","2611.76233835795","4205.24385951488","0.621072742891833","1","0","tiered","1024","222718500","93816400","50465000","225848500"
|
||||||
|
"avx2","uint32","10000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","128","1754.296875","6325414.0625","4210804.296875","3605.6691160098","2400.28033845469","1.50218666471732","1","0","tiered","1024","189068400","133517600","53511000","199598400"
|
||||||
|
"baseline","uint32","10000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","128","2417.7734375","6153668.5546875","6811667.7734375","2545.17998222797","2817.33088294693","0.90340115803711","1","0","tiered","1024","215115700","253464900","48811500","237796000"
|
||||||
|
"scalar","uint32","10000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","64","2027.34375","5932977.34375","7032119.3359375","2926.47822736031","3468.63689788054","0.8436969084739","1","0","tiered","1024","172453900","113317900","41088000","319307700"
|
||||||
|
"avx2","uint32","100000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","64","1846.93359375","969909.8125","634622.31640625","525.146012711103","343.608627052864","1.52832604121523","1","0","tiered","1024","4180826900","1659651000","659264300","2872350400"
|
||||||
|
"baseline","uint32","100000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","512","992.57421875","752895.3359375","704942.73828125","758.527998929551","710.216651777457","1.06802339403221","1","0","tiered","1024","3067261500","1809954400","703555800","2766929000"
|
||||||
|
"scalar","uint32","100000000","bursty_uniform","10000","bursty_uniform_edit_ppm_10000","512","810.41796875","625318.79296875","669548.45703125","771.600355719223","826.176717261058","0.933941055948941","1","0","tiered","1024","2371969800","1823804400","487798800","2027603200"
|
||||||
|
"avx2","uint32","100000000","phase","200000","phase_edit_ppm_200000","128","985.625","15014005.390625","5371329.296875","15232.9794705136","5449.66827837666","2.79521223905599","1","0","tiered","1024","1089577500","1357951600","166799100","1605346600"
|
||||||
|
"baseline","uint32","100000000","phase","200000","phase_edit_ppm_200000","128","1446.171875","12718490.625","5331040.390625","8794.59132407758","3686.31176057479","2.38574268680581","1","0","tiered","1024","1090042700","1372011600","205691900","1553853800"
|
||||||
|
"scalar","uint32","100000000","phase","200000","phase_edit_ppm_200000","64","1120.703125","6911058.984375","3367740.15625","6166.71697455559","3005.02432903451","2.0521354569322","1","0","tiered","1024","1179902700","912238400","215104200","1711967900"
|
||||||
|
"avx2","uint32","100000000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","271.538671875","19576.535546875","21308.000390625","72.094834270556","78.4713287558316","0.918741091983845","0","0","vector","512","0","681963000","109664600","1534402200"
|
||||||
|
"baseline","uint32","100000000","steady_localized","1000","steady_localized_edit_ppm_1000","1024","273.80546875","20145.150390625","21596.96171875","73.5746823560295","78.87702834186","0.932777056929051","0","0","vector","512","0","726834700","155502700","1515753300"
|
||||||
|
"scalar","uint32","100000000","steady_localized","1000","steady_localized_edit_ppm_1000","256","437.35703125","23181.1","15625.7796875","53.0026919511197","35.7277431732155","1.48351637253301","0","0","vector","512","0","804173400","150002600","1554814400"
|
||||||
|
"avx2","uint32","100000000","steady_localized","10000","steady_localized_edit_ppm_10000","256","475.90625","252670.69140625","283649.7578125","530.925348020225","596.020240987589","0.890784090051196","0","0","vector","512","0","730831600","147802900","1528139500"
|
||||||
|
"baseline","uint32","100000000","steady_localized","10000","steady_localized_edit_ppm_10000","256","469.765625","250687.640625","275366.8046875","533.644071179112","586.179128554798","0.910377127371953","0","0","vector","512","0","770655400","189874900","1452382400"
|
||||||
|
"scalar","uint32","100000000","steady_localized","10000","steady_localized_edit_ppm_10000","256","507.640625","292596.765625","152378.05078125","576.385638216012","300.1691418634","1.92020283843271","0","0","vector","512","0","877701900","119041300","1649843900"
|
||||||
|
"avx2","uint32","100000000","steady_localized","200000","steady_localized_edit_ppm_200000","256","751.171875","3827640.625","5379642.8125","5095.55902236089","7161.66697867915","0.711504603262171","1","0","tiered","1024","927943300","715759900","117204400","1488710000"
|
||||||
|
"baseline","uint32","100000000","steady_localized","200000","steady_localized_edit_ppm_200000","1024","642.65625","3770164.140625","5396195.546875","5866.53306588865","8396.70593240943","0.698670777935085","1","0","tiered","1024","903158400","756492600","160026500","1501608500"
|
||||||
|
"scalar","uint32","100000000","steady_localized","200000","steady_localized_edit_ppm_200000","64","859.375","5368527.734375","3012385.3125","6247.01409090909","3505.32109090909","1.78215174270639","1","0","tiered","1024","873780600","880785400","123957900","1761256100"
|
||||||
|
"avx2","uint32","100000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","512","1017.96875","21747149.21875","27495924.609375","21363.2778204144","27010.5782808903","0.790922637725559","0","0","vector","512","0","710572400","150973700","1607135600"
|
||||||
|
"baseline","uint32","100000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","128","900","22300206.640625","27340077.734375","24778.0073784722","30377.8641493056","0.815659957417996","0","0","vector","512","0","718137200","150654600","1550419000"
|
||||||
|
"scalar","uint32","100000000","steady_localized","1000000","steady_localized_edit_ppm_1000000","64","898.046875","27358652.34375","15783622.65625","30464.6150500217","17575.4997825141","1.73335697004366","0","0","vector","512","0","856488600","124077700","1725511400"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","271.5878","29.9988","23.4548","0.110457097115555","0.0863617585178716","1.27900472397974","0","0","vector","512","0","831217900","109924200","1590282800"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","0","steady_uniform_edit_ppm_0","512","345.7428","41.6304","25.0654","0.120408581176528","0.0724972436157745","1.66087116104271","0","0","vector","512","0","713103100","111337400","1496150900"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","0","steady_uniform_edit_ppm_0","1024","285.7076","40.5114","42.8672","0.1417932179613","0.150038710905835","0.945044229620782","0","0","vector","512","0","894582500","147114000","1592937900"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","100","steady_uniform_edit_ppm_100","1024","266.36734375","2152.123515625","2468.0117578125","8.07953214281734","9.26544419096983","0.872006994623281","0","0","vector","512","0","697034000","144237500","1499089100"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","100","steady_uniform_edit_ppm_100","1024","295.3600390625","2245.0656640625","2447.865","7.60111513794671","8.28773251713315","0.9171525652201","0","0","vector","512","0","728956100","148075200","1498911700"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","100","steady_uniform_edit_ppm_100","512","326.61125","2210.0056640625","1500.4516015625","6.76647134494755","4.59399852749255","1.47289366865356","0","0","vector","512","0","865072400","114689500","1694175600"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","1024","361.255078125","24059.5265625","26369.625","66.5998293709107","72.9944756399402","0.912395476329299","0","0","vector","512","0","723269800","152444900","1662267900"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","512","321.275","24556.43359375","26754.325390625","76.43431201852","83.275466160221","0.917849104218297","0","0","vector","512","0","732936600","191860400","1595891900"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","1000","steady_uniform_edit_ppm_1000","128","432.90234375","22441.02578125","30918.462890625","51.8385407361288","71.4213340191116","0.725813112399404","0","0","vector","512","0","911101700","139932700","1602933600"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","1024","426.984375","205646.72265625","277176.62890625","481.625873678047","649.149348629561","0.741933847264613","0","0","vector","512","0","665930500","174355700","1452619100"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","1024","455.6328125","206635.01171875","277466.53515625","453.512139709539","608.969607859948","0.744720481705613","0","0","vector","512","0","690201800","197016400","1479223700"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","10000","steady_uniform_edit_ppm_10000","512","443.14453125","137696.03125","146226.71875","310.724879897748","329.975230287805","0.941661225985761","0","0","vector","512","0","719605000","116467500","1937324300"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","474.70703125","1067578.4375","1180942.3828125","2248.92063361448","2487.728862374","0.904005523925295","0","0","vector","512","0","664947500","158861400","1523579200"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","420.8984375","1116271.8359375","1183355.234375","2652.11684454756","2811.49828306264","0.943310853335659","0","0","vector","512","0","724607100","162851000","1589604300"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","50000","steady_uniform_edit_ppm_50000","1024","1314.82421875","978151.11328125","1401950.76171875","743.940596265542","1066.2647840877","0.697707180587473","0","0","vector","512","0","859587700","118459900","1998220000"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","1024","683.4375","5207998.046875","4699057.03125","7620.29892546868","6875.6207133059","1.1083070522959","1","0","tiered","1024","1012397000","710411300","128474600","1459138100"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","512","872.5","5142311.40625","4863006.875","5893.76665472779","5573.64684813754","1.05743453349529","1","0","tiered","1024","911272200","840308600","146485300","1581189300"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","200000","steady_uniform_edit_ppm_200000","512","841.640625","3685783.671875","3239186.25","4379.28441474055","3848.65719855194","1.13787333836546","1","0","tiered","1024","829628900","852740000","125451100","1630032200"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","512","1651.3671875","9634122.265625","10305032.03125","5834.02791247782","6240.30325251331","0.934894936416455","0","0","vector","512","0","661720500","116935800","1581514900"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","1024","952.34375","9943309.5703125","10271725.1953125","10440.8828958162","10785.7327727646","0.968027218528989","0","0","vector","512","0","711086200","144818900","1488828500"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","500000","steady_uniform_edit_ppm_500000","1024","1456.0546875","16663067.3828125","7545697.265625","11443.9845741113","5182.28973843058","2.20828729224566","0","0","vector","512","0","780781800","127642400","1573266100"
|
||||||
|
"avx2","uint32","100000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","64","1266.015625","27345263.671875","25705778.90625","21599.4677568652","20304.4720765196","1.06377884022127","0","0","vector","512","0","653220500","197437300","1645607500"
|
||||||
|
"baseline","uint32","100000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","512","1386.328125","31415888.671875","21445130.078125","22661.2214708369","15469.0146520147","1.4649427892219","0","0","vector","512","0","736716500","177671800","1542731200"
|
||||||
|
"scalar","uint32","100000000","steady_uniform","1000000","steady_uniform_edit_ppm_1000000","256","1061.328125","15555603.125","14394001.5625","14656.7331615753","13562.2539565697","1.08070039158022","0","0","vector","512","0","728563100","118251700","1475767700"
|
||||||
|
@@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"run_id": "20260811-large-full-12c-v1",
|
||||||
|
"timestamp": "2026-08-11T22:45:07.3602577+03:00",
|
||||||
|
"scale": "large-full-parallel",
|
||||||
|
"profiles": [
|
||||||
|
"scalar",
|
||||||
|
"baseline",
|
||||||
|
"avx2"
|
||||||
|
],
|
||||||
|
"cpu": "AMD Ryzen 9 5900X 12-Core Processor",
|
||||||
|
"logical_processors": 24,
|
||||||
|
"windows": "Windows 10 Pro 25H2 build 26200",
|
||||||
|
"power_plan": "GUID схемы питания: 381b4222-f694-41f0-9685-ff5bb260df2e (Сбалансированная)",
|
||||||
|
"compiler": "MSVC 19.51.36248.0 x64",
|
||||||
|
"cmake": "cmake version 4.3.1-msvc1",
|
||||||
|
"release_runtime": "/MT static",
|
||||||
|
"ipo_lto": "off",
|
||||||
|
"scalar_flags": "/O2 /d2Qvec- /Qvec-report:1 /Oi-, no /arch:AVX*",
|
||||||
|
"baseline_flags": "/O2, no /Qvec disable, no /arch:AVX*",
|
||||||
|
"avx2_flags": "/O2 /arch:AVX2",
|
||||||
|
"git_head": "aea6e330e34cd64be5aedc5099df426d556146c4",
|
||||||
|
"git_dirty_entries": 5,
|
||||||
|
"source_manifest": "source-manifest.sha256",
|
||||||
|
"binary_manifest": "binary-manifest.sha256"
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
run_id=20260811-large-full-12c-v1
|
||||||
|
timestamp=2026-08-11T22:45:07.3602577+03:00
|
||||||
|
scale=large-full-parallel
|
||||||
|
profiles=scalar,baseline,avx2
|
||||||
|
cpu=AMD Ryzen 9 5900X 12-Core Processor
|
||||||
|
logical_processors=24
|
||||||
|
windows=Windows 10 Pro 25H2 build 26200
|
||||||
|
power_plan=GUID схемы питания: 381b4222-f694-41f0-9685-ff5bb260df2e (Сбалансированная)
|
||||||
|
compiler=MSVC 19.51.36248.0 x64
|
||||||
|
cmake=cmake version 4.3.1-msvc1
|
||||||
|
release_runtime=/MT static
|
||||||
|
ipo_lto=off
|
||||||
|
scalar_flags=/O2 /d2Qvec- /Qvec-report:1 /Oi-, no /arch:AVX*
|
||||||
|
baseline_flags=/O2, no /Qvec disable, no /arch:AVX*
|
||||||
|
avx2_flags=/O2 /arch:AVX2
|
||||||
|
git_head=aea6e330e34cd64be5aedc5099df426d556146c4
|
||||||
|
git_dirty_entries=5
|
||||||
|
source_manifest=source-manifest.sha256
|
||||||
|
binary_manifest=binary-manifest.sha256
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
"leaf","wins","percent"
|
||||||
|
"1024","62","36.9047619047619"
|
||||||
|
"256","33","19.6428571428571"
|
||||||
|
"512","30","17.8571428571429"
|
||||||
|
"128","27","16.0714285714286"
|
||||||
|
"64","16","9.52380952380952"
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=102400 edit_ppm=10000 pattern=bursty_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-bursty_uniform-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-bursty_uniform-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=5120 edit_ppm=200000 pattern=phase
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-phase-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-phase-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=1024000 edit_ppm=1000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm1000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm1000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=102400 edit_ppm=10000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=1024 edit_ppm=1000000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm1000000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm1000000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=5120 edit_ppm=200000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_localized-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=2000000 edit_ppm=0 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm0.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm0-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=8000000 edit_ppm=100 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm100.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm100-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=1024000 edit_ppm=1000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm1000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm1000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=102400 edit_ppm=10000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=1024 edit_ppm=1000000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm1000000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm1000000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=5120 edit_ppm=200000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=20480 edit_ppm=50000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm50000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm50000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=100000 operations=2048 edit_ppm=500000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm500000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n100000-steady_uniform-ppm500000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=102400 edit_ppm=10000 pattern=bursty_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-bursty_uniform-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-bursty_uniform-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=5120 edit_ppm=200000 pattern=phase
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-phase-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-phase-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=1024000 edit_ppm=1000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm1000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm1000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=102400 edit_ppm=10000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=1024 edit_ppm=1000000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm1000000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm1000000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=5120 edit_ppm=200000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_localized-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=2000000 edit_ppm=0 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm0.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm0-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=8000000 edit_ppm=100 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm100.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm100-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=1024000 edit_ppm=1000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm1000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm1000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=102400 edit_ppm=10000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=1024 edit_ppm=1000000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm1000000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm1000000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=5120 edit_ppm=200000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=20480 edit_ppm=50000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm50000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm50000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=1000000 operations=2048 edit_ppm=500000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 14 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm500000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n1000000-steady_uniform-ppm500000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=51200 edit_ppm=10000 pattern=bursty_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-bursty_uniform-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-bursty_uniform-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=2560 edit_ppm=200000 pattern=phase
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-phase-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-phase-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=512000 edit_ppm=1000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm1000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm1000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=51200 edit_ppm=10000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=512 edit_ppm=1000000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm1000000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm1000000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=2560 edit_ppm=200000 pattern=steady_localized
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_localized-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=1000000 edit_ppm=0 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm0.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm0-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=5120000 edit_ppm=100 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm100.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm100-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=512000 edit_ppm=1000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm1000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm1000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=51200 edit_ppm=10000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm10000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm10000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=512 edit_ppm=1000000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm1000000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm1000000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=2560 edit_ppm=200000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm200000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm200000-summary.csv"
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
+12
@@ -0,0 +1,12 @@
|
|||||||
|
UniversalContainer benchmark
|
||||||
|
profile: avx2
|
||||||
|
suite: large
|
||||||
|
scale: smoke
|
||||||
|
hardware threads: 24
|
||||||
|
steady_clock period: 1/1000000000
|
||||||
|
default tiered config: leaf=512 fanout=64 levels=4
|
||||||
|
large cell: n=10000000 operations=10240 edit_ppm=50000 pattern=steady_uniform
|
||||||
|
MSVC full version: 195136248
|
||||||
|
wrote 7 raw rows to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm50000.csv"
|
||||||
|
wrote aggregate scores to "C:\\Projects\\VisualStudio\\UniversalContainer\\results\\benchmarks\\20260811-large-full-12c-v1\\partials\\avx2-n10000000-steady_uniform-ppm50000-summary.csv"
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user