V2.0.0 hardware freeze - single SDRAM
FASE #1 hardware freeze for FPGA-Neural V2, N4/P8, single external SDRAM (Alliance Memory AS4C4M16SA-6TIN) serving weights, activations, and results through one physical sdram_controller.v instance. Removes the PSRAM dependency (hardware/v1/rtl/psram_controller.v + memory_interface.v) from the V2 physical path entirely -- V1 itself remains fully unmodified, the golden reference. New RTL: sdram_unified_backend.v (2-way W/AR arbitration over one SDRAM controller, real per-byte DQM write masking added to sdram_controller.v for correct single-byte result writes with no read-modify-write), nms_neural_multiprocessor_sdram_unified.v (the frozen top-level). Two real bugs found and fixed via full-system testing before being accepted (ERR-0023): a deadlock and an off-by-one data-shift bug in the new arbitration logic. Real results: N=4 and N=2 D-Stress bit-exact (256/256 neurons), 40 real AUTO REFRESH events interleaved with zero corruption, real Yosys+nextpnr-ecp5 synthesis/P&R for LFE5U-45F-8CABGA381 (149/245 TRELLIS_IO, a real 45-pin reduction from the prior dual-memory design). Timing is MARGINAL (1/8 P&R seeds >=80MHz), reported honestly rather than masked by the best seed. Real, sourced ball-level pinout for the SDRAM bus + clk/rst (39/149 signals, P&R-verified) using the official Lattice ECP5U-45 pinout CSV found on disk during this step's own pre-commit review -- corrects an earlier draft that wrongly assumed no real pinout data was available. Chip readiness: NO. Real, disclosed blockers remain (no physical host interface exists yet -- the RTL's own reg_* ports are a 110-pin raw test-harness bus; clock source/PLL decision; power/configuration component selection) -- see hardware/v2/docs/{HARDWARE_FREEZE, CHIP_READINESS,OPEN_ITEMS}.md for the complete, itemized status. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013xXuuRUWZScuo1DeYJxs3v
This commit is contained in:
@@ -0,0 +1,121 @@
|
||||
# NMS STEP13 — Batch/Continuous Neural Processor: Final Report
|
||||
|
||||
Full data: `hardware/v2/nms/reports/batch_processor_sweep.csv`. Full
|
||||
narrative: `hardware/v2/logs/experiments.log` (EXP-0025 through
|
||||
EXP-0028), `decisions.log` (DEC-0024, DEC-0025). Architecture:
|
||||
`hardware/v2/docs/architecture/neural_processor_batch.md`.
|
||||
|
||||
## What was actually built (and why it differs from the initial brief)
|
||||
|
||||
The governing spec framed the problem as "batch K neurons per
|
||||
dispatch" to amortize the ~68.5-cycles/neuron non-memory floor
|
||||
EXP-0024 measured for N_SLOTS=2. **Step 1's own mandatory RTL trace
|
||||
overturned that framing before any RTL was written.**
|
||||
|
||||
Tracing `nms_memory_manager_pf.v` + `neural_processor.v` with a
|
||||
zero-real-memory-latency isolated testbench (EXP-0025) showed the
|
||||
floor is **93.4% explained by a 4-cycles/tile serialization bug**
|
||||
inside the memory manager's own `ST_RUN` state (a strictly sequential
|
||||
`read_issued → read_ready → present → consumed` chain with zero
|
||||
overlap between tiles), not by per-job dispatch overhead (only 6.6% of
|
||||
the floor). Neither the local SRAMs (1-cycle read latency) nor
|
||||
`neural_processor.v` (designed for continuous 1-tile/cycle acceptance)
|
||||
require this — it's purely an artifact of the manager's own
|
||||
un-pipelined FSM.
|
||||
|
||||
**The fix built is therefore a continuous per-tile streaming redesign
|
||||
of the memory manager** (`nms_memory_manager_stream.v`), not a
|
||||
neuron-batching scheme. `neural_processor.v` was not modified — it was
|
||||
never the bottleneck.
|
||||
|
||||
## Results
|
||||
|
||||
1. **The fix works exactly as designed** (EXP-0026): a read-ahead
|
||||
pointer + 1-deep skid buffer decouples "issue next tile's read"
|
||||
from "current tile consumed," confirmed cycle-by-cycle in
|
||||
simulation.
|
||||
2. **It immediately exposed a second, previously-hidden bottleneck**
|
||||
at the *same* numeric value: `weight_prefetch_engine.v`'s own
|
||||
word-fetch rate is capped at 4 cycles/tile (P_IN=8 bytes ÷ 16-bit
|
||||
real PSRAM bus = 4 word-transactions/tile, 1 cycle/word minimum
|
||||
even at zero real latency) — a physical bus-**width** ceiling, not
|
||||
a latency or scheduling ceiling.
|
||||
3. **Net real-system benefit at today's bandwidth: ~0%** (EXP-0028:
|
||||
185270 vs. 185398 cycles at N=2/PFD=8, -0.07%, noise-level). Bit-exact
|
||||
PASS, 256/256 neurons.
|
||||
4. **The fix genuinely removes a 4× architectural ceiling** — proven
|
||||
directly (EXP-0027, a control experiment with weight-fetch
|
||||
bypassed): the new design achieves a clean **1 cycle/tile** (100%
|
||||
of `neural_processor.v`'s own theoretical per-tile acceptance
|
||||
rate), where the old design is hard-capped at 4 cycles/tile (25%)
|
||||
**regardless of bandwidth**. This ceiling is real and was
|
||||
previously invisible because a coincidentally-equal bandwidth
|
||||
ceiling was masking it.
|
||||
5. **Resource/Fmax cost is small and in the expected direction**
|
||||
(EXP-0028): N=1 Fmax +3.7% (142.92 vs 137.76 MHz), N=2 Fmax -2.8%
|
||||
(92.57 vs 95.25 MHz, still comfortably above the 80 MHz target);
|
||||
LUT4/FF/CCU2C all within ±6%. No combinational-controller blowup.
|
||||
6. **N=4 fails the 80 MHz target** (55.22 MHz) — but for a
|
||||
*different*, already-documented reason (`nms_activation_fill_ctrl.v`'s
|
||||
own priority-scan Fmax regression, first found in EXP-0022),
|
||||
unrelated to and unaffected by this STEP's own fix.
|
||||
|
||||
## The nine final-decision questions, answered directly
|
||||
|
||||
1. **Is per-neuron dispatch still acceptable?** Yes — it was never the
|
||||
dominant cost (only 6.6% of the floor). Batching neurons was not
|
||||
pursued; it would not have addressed the real bottleneck.
|
||||
2. **What batch/stream granularity is optimal?** Per-*tile* streaming
|
||||
within a job (1-deep read-ahead), not per-neuron batching.
|
||||
3. **What is the new fixed overhead?** With weight-fetch not the
|
||||
limiter, steady-state cost drops to 1 cycle/tile (down from 4) —
|
||||
the fixed per-job overhead (~17 cycles: entry, pipeline drain,
|
||||
write-back) is essentially unchanged and now the dominant residual
|
||||
cost per job.
|
||||
4. **New asymptotic utilization ceiling?** For the control-plane
|
||||
component alone: 100% (removed entirely). For the *whole system*
|
||||
at today's real bandwidth: unchanged from EXP-0024's ~11.674%
|
||||
ceiling — the weight-fetch bus-width ceiling is now the sole real
|
||||
limiter.
|
||||
5. **Does N=4 become viable?** No — blocked by a separate, pre-existing
|
||||
Fmax regression in the activation fill controller (55.22 MHz vs. 80
|
||||
MHz target), not by anything this STEP addressed.
|
||||
6. **Does N=8 become viable?** No, for the same reason (N=4 already
|
||||
fails; N=8 was not synthesized given N=4's own failure).
|
||||
7. **What memory bandwidth is actually required after this fix?** The
|
||||
same requirement EXP-0024 quantified (~36-82× today's real
|
||||
bandwidth for 90-99% targets) — this STEP's fix is *necessary but
|
||||
not sufficient*: without it, a future bandwidth increase would
|
||||
immediately hit the old 4-cycles/tile FSM ceiling and only realize
|
||||
25% of its potential benefit; with it, a future bandwidth increase
|
||||
can translate into up to 100% of its potential benefit.
|
||||
8. **Is `neural_processor.v` reusable?** Fully reusable, unmodified —
|
||||
confirmed by direct RTL trace to already support the required
|
||||
continuous 1-tile/cycle acceptance; it was never the bottleneck.
|
||||
9. **Next architectural step?** Real external memory bandwidth
|
||||
(wider bus, multiple independent PSRAM banks, or a redesigned
|
||||
weight-fetch protocol able to move more than one 16-bit word per
|
||||
cycle) — and, independently, the already-documented
|
||||
`nms_activation_fill_ctrl.v` Fmax regression that blocks N=4/N=8
|
||||
regardless of memory bandwidth. Both are flagged as future work,
|
||||
not undertaken this round.
|
||||
|
||||
## Final decision
|
||||
|
||||
**Outcome B** (STEP13's own framework: "batching/continuous execution
|
||||
helps, but another bottleneck appears"). The executed fix — continuous
|
||||
per-tile streaming inside the memory manager, not neuron-batching — is
|
||||
real, correct (bit-exact), resource-neutral, and **removes a genuine,
|
||||
previously-hidden 4× architectural ceiling** (proven via a direct
|
||||
control experiment). It delivers **zero measurable benefit today**
|
||||
because a second, independent, currently-co-dominant bottleneck
|
||||
(weight-fetch bus width) already caps the system at the identical
|
||||
rate. `nms_memory_manager_stream.v` is **adopted** as the new reference
|
||||
NMS configuration: it is required groundwork for any future bandwidth
|
||||
increase to actually pay off, and has no measured downside today. The
|
||||
old `nms_memory_manager_pf.v` and `nms_memory_manager.v` remain
|
||||
preserved for A/B/C reference. N=4/N=8 viability is now blocked by two
|
||||
*separate* issues (external bandwidth, and the activation fill
|
||||
controller's own Fmax regression) — neither of which this STEP could
|
||||
or should redesign without further dedicated evidence, per the
|
||||
project's own "no major redesign without evidence" discipline.
|
||||
@@ -0,0 +1,8 @@
|
||||
configuration,n_slots,pfd,cycles,cycles_per_tile_steady_state,sustained_mac_per_cycle,utilization_pct_theoretical,fmax_mhz,lut4,ccu2c,ff,dsp,bram,classification
|
||||
current_nms_pf_baseline,2,8,185398,4.0,0.1767,1.10,95.25,1908,362,3449,16,0,POST-P&R MEASURED + RTL SIMULATION (EXP-0024)
|
||||
isolated_trace_old_design_zero_latency,1,16,81,4.0,n/a,25.0,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION isolated (EXP-0025) -- 4 cycles/tile hard floor, independent of memory latency
|
||||
isolated_trace_new_design_zero_latency_real_wpf,1,16,80,4.0,n/a,25.0,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION isolated (EXP-0026) -- fix works but masked by weight-fetch word-rate (co-dominant 4 cyc/tile)
|
||||
isolated_trace_new_design_weightfetch_bypassed,1,16,30,1.0,n/a,100.0,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION isolated scratch (EXP-0027) -- k->infinity endpoint: PROVES 4x ceiling removed once weight-fetch is not the limiter
|
||||
nms_stream_real_dstress,1,8,n/a,n/a,n/a,n/a,142.92,1433,206,2250,8,0,POST-P&R MEASURED (EXP-0028)
|
||||
nms_stream_real_dstress,2,8,185270,4.0,0.1769,1.11,92.57,2014,371,3459,16,0,POST-P&R MEASURED + RTL SIMULATION bit-exact PASS 256/256 (EXP-0028)
|
||||
nms_stream_real_dstress,4,8,n/a,n/a,n/a,n/a,55.22,2937,705,5877,32,0,POST-P&R MEASURED -- FAILS 80MHz target (EXP-0028 N=4 check; same pre-existing nms_activation_fill_ctrl.v priority-scan regression as EXP-0022, unrelated to this STEP's own fix)
|
||||
|
@@ -0,0 +1,768 @@
|
||||
1,2,0,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,2,0,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,2,0,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,2,0,8,5130,2048,0.3992,0.3992,0.3992,3.1938
|
||||
1,2,0,16,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,0,32,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,0,64,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,0,128,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,2,1,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,2,1,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,2,1,8,5130,2048,0.3992,0.3992,0.3992,3.1938
|
||||
1,2,1,16,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,32,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,64,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,128,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,2,1,32780,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,2,2,2,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,2,2,4,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,2,2,8,6154,2048,0.3328,0.3328,0.3328,2.6623
|
||||
1,2,2,16,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,2,32,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,2,64,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,2,128,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,4,1,32782,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,2,4,2,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,2,4,4,10252,2048,0.1998,0.1998,0.1998,1.5981
|
||||
1,2,4,8,8202,2048,0.2497,0.2497,0.2497,1.9976
|
||||
1,2,4,16,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,4,32,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,4,64,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,4,128,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,8,1,32786,2048,0.0625,0.0625,0.0625,0.4997
|
||||
1,2,8,2,18448,2048,0.1110,0.1110,0.1110,0.8881
|
||||
1,2,8,4,14348,2048,0.1427,0.1427,0.1427,1.1419
|
||||
1,2,8,8,12298,2048,0.1665,0.1665,0.1665,1.3322
|
||||
1,2,8,16,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,8,32,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,8,64,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,8,128,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,16,1,34840,2048,0.0588,0.0588,0.0588,0.4703
|
||||
1,2,16,2,26640,2048,0.0769,0.0769,0.0769,0.6150
|
||||
1,2,16,4,22540,2048,0.0909,0.0909,0.0909,0.7269
|
||||
1,2,16,8,20490,2048,0.1000,0.1000,0.1000,0.7996
|
||||
1,2,16,16,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,2,16,32,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,2,16,64,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,2,16,128,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,4,0,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,4,0,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,4,0,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,4,0,8,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,4,0,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,0,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,0,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,0,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,4,1,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,4,1,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,4,1,8,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,4,1,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,2,1,32780,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,4,2,2,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,4,2,4,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,4,2,8,4108,2048,0.4985,0.4985,0.4985,3.9883
|
||||
1,4,2,16,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,2,32,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,2,64,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,2,128,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,4,1,32782,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,4,4,2,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,4,4,4,8206,2048,0.2496,0.2496,0.2496,1.9966
|
||||
1,4,4,8,4110,2048,0.4983,0.4983,0.4983,3.9864
|
||||
1,4,4,16,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,4,32,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,4,64,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,4,128,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,8,1,32786,2048,0.0625,0.0625,0.0625,0.4997
|
||||
1,4,8,2,16402,2048,0.1249,0.1249,0.1249,0.9989
|
||||
1,4,8,4,8210,2048,0.2495,0.2495,0.2495,1.9956
|
||||
1,4,8,8,6158,2048,0.3326,0.3326,0.3326,2.6606
|
||||
1,4,8,16,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,8,32,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,8,64,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,8,128,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,16,1,32794,2048,0.0624,0.0624,0.0624,0.4996
|
||||
1,4,16,2,16410,2048,0.1248,0.1248,0.1248,0.9984
|
||||
1,4,16,4,11284,2048,0.1815,0.1815,0.1815,1.4520
|
||||
1,4,16,8,10254,2048,0.1997,0.1997,0.1997,1.5978
|
||||
1,4,16,16,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,4,16,32,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,4,16,64,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,4,16,128,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,8,0,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,8,0,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,8,0,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,8,0,8,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,8,0,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,0,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,0,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,0,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,8,1,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,8,1,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,8,1,8,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,8,1,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,2,1,32780,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,8,2,2,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,8,2,4,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,8,2,8,4108,2048,0.4985,0.4985,0.4985,3.9883
|
||||
1,8,2,16,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,2,32,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,2,64,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,2,128,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,4,1,32782,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,8,4,2,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,8,4,4,8206,2048,0.2496,0.2496,0.2496,1.9966
|
||||
1,8,4,8,4110,2048,0.4983,0.4983,0.4983,3.9864
|
||||
1,8,4,16,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,4,32,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,4,64,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,4,128,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,8,1,32786,2048,0.0625,0.0625,0.0625,0.4997
|
||||
1,8,8,2,16402,2048,0.1249,0.1249,0.1249,0.9989
|
||||
1,8,8,4,8210,2048,0.2495,0.2495,0.2495,1.9956
|
||||
1,8,8,8,4114,2048,0.4978,0.4978,0.4978,3.9825
|
||||
1,8,8,16,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,8,32,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,8,64,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,8,128,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,16,1,32794,2048,0.0624,0.0624,0.0624,0.4996
|
||||
1,8,16,2,16410,2048,0.1248,0.1248,0.1248,0.9984
|
||||
1,8,16,4,8218,2048,0.2492,0.2492,0.2492,1.9937
|
||||
1,8,16,8,5142,2048,0.3983,0.3983,0.3983,3.1863
|
||||
1,8,16,16,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,8,16,32,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,8,16,64,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,8,16,128,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,16,0,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,16,0,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,16,0,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,16,0,8,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,16,0,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,0,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,0,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,0,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,1,32779,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,16,1,2,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,16,1,4,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,16,1,8,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,16,1,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,2,1,32780,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,16,2,2,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,16,2,4,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,16,2,8,4108,2048,0.4985,0.4985,0.4985,3.9883
|
||||
1,16,2,16,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,2,32,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,2,64,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,2,128,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,4,1,32782,2048,0.0625,0.0625,0.0625,0.4998
|
||||
1,16,4,2,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,16,4,4,8206,2048,0.2496,0.2496,0.2496,1.9966
|
||||
1,16,4,8,4110,2048,0.4983,0.4983,0.4983,3.9864
|
||||
1,16,4,16,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,4,32,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,4,64,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,4,128,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,8,1,32786,2048,0.0625,0.0625,0.0625,0.4997
|
||||
1,16,8,2,16402,2048,0.1249,0.1249,0.1249,0.9989
|
||||
1,16,8,4,8210,2048,0.2495,0.2495,0.2495,1.9956
|
||||
1,16,8,8,4114,2048,0.4978,0.4978,0.4978,3.9825
|
||||
1,16,8,16,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,8,32,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,8,64,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,8,128,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,16,1,32794,2048,0.0624,0.0624,0.0624,0.4996
|
||||
1,16,16,2,16410,2048,0.1248,0.1248,0.1248,0.9984
|
||||
1,16,16,4,8218,2048,0.2492,0.2492,0.2492,1.9937
|
||||
1,16,16,8,4122,2048,0.4968,0.4968,0.4968,3.9748
|
||||
1,16,16,16,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,16,16,32,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,16,16,64,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,16,16,128,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
2,2,0,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,2,0,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,2,0,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,2,0,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,2,0,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,2,0,32,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,0,64,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,0,128,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,1,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,2,1,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,2,1,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,2,1,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,2,1,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,2,1,32,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,1,64,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,1,128,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,2,1,65548,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,2,2,2,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,2,2,4,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,2,2,8,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,2,2,16,5131,2048,0.3991,0.3992,0.3992,6.3863
|
||||
2,2,2,32,5129,2048,0.3993,0.3993,0.3993,6.3888
|
||||
2,2,2,64,5129,2048,0.3993,0.3993,0.3993,6.3888
|
||||
2,2,2,128,5129,2048,0.3993,0.3993,0.3993,6.3888
|
||||
2,2,4,1,65550,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,2,4,2,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,2,4,4,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,2,4,8,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,2,4,16,7179,2048,0.2853,0.2853,0.2853,4.5644
|
||||
2,2,4,32,7177,2048,0.2854,0.2854,0.2854,4.5657
|
||||
2,2,4,64,7177,2048,0.2854,0.2854,0.2854,4.5657
|
||||
2,2,4,128,7177,2048,0.2854,0.2854,0.2854,4.5657
|
||||
2,2,8,1,65554,2048,0.0312,0.0312,0.0312,0.4999
|
||||
2,2,8,2,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,2,8,4,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,2,8,8,12302,2048,0.1665,0.1665,0.1665,2.6636
|
||||
2,2,8,16,11275,2048,0.1816,0.1817,0.1816,2.9063
|
||||
2,2,8,32,11273,2048,0.1817,0.1817,0.1817,2.9068
|
||||
2,2,8,64,11273,2048,0.1817,0.1817,0.1817,2.9068
|
||||
2,2,8,128,11273,2048,0.1817,0.1817,0.1817,2.9068
|
||||
2,2,16,1,65562,2048,0.0312,0.0312,0.0312,0.4998
|
||||
2,2,16,2,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,2,16,4,22548,2048,0.0908,0.0908,0.0908,1.4533
|
||||
2,2,16,8,20494,2048,0.0999,0.0999,0.0999,1.5989
|
||||
2,2,16,16,19467,2048,0.1052,0.1052,0.1052,1.6833
|
||||
2,2,16,32,19465,2048,0.1052,0.1052,0.1052,1.6834
|
||||
2,2,16,64,19465,2048,0.1052,0.1052,0.1052,1.6834
|
||||
2,2,16,128,19465,2048,0.1052,0.1052,0.1052,1.6834
|
||||
2,4,0,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,4,0,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,4,0,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,4,0,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,4,0,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,4,0,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,0,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,0,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,1,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,4,1,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,4,1,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,4,1,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,4,1,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,4,1,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,1,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,1,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,2,1,65548,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,4,2,2,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,4,2,4,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,4,2,8,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,4,2,16,4108,2048,0.4985,0.4987,0.4986,7.9766
|
||||
2,4,2,32,2571,2048,0.7966,0.7966,0.7966,12.7452
|
||||
2,4,2,64,2571,2048,0.7966,0.7966,0.7966,12.7452
|
||||
2,4,2,128,2571,2048,0.7966,0.7966,0.7966,12.7452
|
||||
2,4,4,1,65550,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,4,4,2,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,4,4,4,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,4,4,8,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,4,4,16,4110,2048,0.4983,0.4984,0.4984,7.9727
|
||||
2,4,4,32,3595,2048,0.5697,0.5697,0.5697,9.1149
|
||||
2,4,4,64,3595,2048,0.5697,0.5697,0.5697,9.1149
|
||||
2,4,4,128,3595,2048,0.5697,0.5697,0.5697,9.1149
|
||||
2,4,8,1,65554,2048,0.0312,0.0312,0.0312,0.4999
|
||||
2,4,8,2,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,4,8,4,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,4,8,8,8210,2048,0.2495,0.2495,0.2495,3.9912
|
||||
2,4,8,16,5647,2048,0.3627,0.3627,0.3627,5.8027
|
||||
2,4,8,32,5643,2048,0.3629,0.3629,0.3629,5.8068
|
||||
2,4,8,64,5643,2048,0.3629,0.3629,0.3629,5.8068
|
||||
2,4,8,128,5643,2048,0.3629,0.3629,0.3629,5.8068
|
||||
2,4,16,1,65562,2048,0.0312,0.0312,0.0312,0.4998
|
||||
2,4,16,2,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,4,16,4,16410,2048,0.1248,0.1248,0.1248,1.9968
|
||||
2,4,16,8,10262,2048,0.1996,0.1996,0.1996,3.1931
|
||||
2,4,16,16,9743,2048,0.2102,0.2102,0.2102,3.3632
|
||||
2,4,16,32,9739,2048,0.2103,0.2103,0.2103,3.3646
|
||||
2,4,16,64,9739,2048,0.2103,0.2103,0.2103,3.3646
|
||||
2,4,16,128,9739,2048,0.2103,0.2103,0.2103,3.3646
|
||||
2,8,0,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,8,0,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,8,0,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,8,0,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,8,0,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,8,0,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,0,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,0,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,1,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,8,1,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,8,1,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,8,1,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,8,1,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,8,1,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,1,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,1,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,2,1,65548,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,8,2,2,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,8,2,4,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,8,2,8,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,8,2,16,4108,2048,0.4985,0.4987,0.4986,7.9766
|
||||
2,8,2,32,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,8,2,64,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,8,2,128,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,8,4,1,65550,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,8,4,2,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,8,4,4,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,8,4,8,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,8,4,16,4110,2048,0.4983,0.4984,0.4984,7.9727
|
||||
2,8,4,32,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,8,4,64,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,8,4,128,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,8,8,1,65554,2048,0.0312,0.0312,0.0312,0.4999
|
||||
2,8,8,2,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,8,8,4,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,8,8,8,8210,2048,0.2495,0.2495,0.2495,3.9912
|
||||
2,8,8,16,4114,2048,0.4978,0.4979,0.4979,7.9650
|
||||
2,8,8,32,2831,2048,0.7234,0.7234,0.7234,11.5747
|
||||
2,8,8,64,2831,2048,0.7234,0.7234,0.7234,11.5747
|
||||
2,8,8,128,2831,2048,0.7234,0.7234,0.7234,11.5747
|
||||
2,8,16,1,65562,2048,0.0312,0.0312,0.0312,0.4998
|
||||
2,8,16,2,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,8,16,4,16410,2048,0.1248,0.1248,0.1248,1.9968
|
||||
2,8,16,8,8218,2048,0.2492,0.2493,0.2492,3.9873
|
||||
2,8,16,16,4887,2048,0.4191,0.4192,0.4191,6.7051
|
||||
2,8,16,32,4879,2048,0.4198,0.4198,0.4198,6.7161
|
||||
2,8,16,64,4879,2048,0.4198,0.4198,0.4198,6.7161
|
||||
2,8,16,128,4879,2048,0.4198,0.4198,0.4198,6.7161
|
||||
2,16,0,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,16,0,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,16,0,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,16,0,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,16,0,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,16,0,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,0,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,0,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,1,1,65547,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,16,1,2,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,16,1,4,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,16,1,8,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,16,1,16,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,16,1,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,1,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,1,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,2,1,65548,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,16,2,2,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,16,2,4,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,16,2,8,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,16,2,16,4108,2048,0.4985,0.4987,0.4986,7.9766
|
||||
2,16,2,32,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,16,2,64,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,16,2,128,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,16,4,1,65550,2048,0.0312,0.0313,0.0312,0.4999
|
||||
2,16,4,2,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,16,4,4,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,16,4,8,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,16,4,16,4110,2048,0.4983,0.4984,0.4984,7.9727
|
||||
2,16,4,32,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,16,4,64,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,16,4,128,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,16,8,1,65554,2048,0.0312,0.0312,0.0312,0.4999
|
||||
2,16,8,2,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,16,8,4,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,16,8,8,8210,2048,0.2495,0.2495,0.2495,3.9912
|
||||
2,16,8,16,4114,2048,0.4978,0.4979,0.4979,7.9650
|
||||
2,16,8,32,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,16,8,64,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,16,8,128,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,16,16,1,65562,2048,0.0312,0.0312,0.0312,0.4998
|
||||
2,16,16,2,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,16,16,4,16410,2048,0.1248,0.1248,0.1248,1.9968
|
||||
2,16,16,8,8218,2048,0.2492,0.2493,0.2492,3.9873
|
||||
2,16,16,16,4122,2048,0.4968,0.4970,0.4969,7.9495
|
||||
2,16,16,32,2455,2048,0.8342,0.8342,0.8342,13.3475
|
||||
2,16,16,64,2455,2048,0.8342,0.8342,0.8342,13.3475
|
||||
2,16,16,128,2455,2048,0.8342,0.8342,0.8342,13.3475
|
||||
4,2,0,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,2,0,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,2,0,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,2,0,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,2,0,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,2,0,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,2,0,64,4105,2048,0.4989,0.4989,0.4989,15.9649
|
||||
4,2,0,128,4105,2048,0.4989,0.4989,0.4989,15.9649
|
||||
4,2,1,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,2,1,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,2,1,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,2,1,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,2,1,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,2,1,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,2,1,64,4105,2048,0.4989,0.4989,0.4989,15.9649
|
||||
4,2,1,128,4105,2048,0.4989,0.4989,0.4989,15.9649
|
||||
4,2,2,1,131084,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,2,2,2,65548,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,2,2,4,32780,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,2,2,8,16396,2048,0.1249,0.1250,0.1249,3.9971
|
||||
4,2,2,16,8204,2048,0.2496,0.2497,0.2497,7.9883
|
||||
4,2,2,32,5131,2048,0.3991,0.3992,0.3992,12.7726
|
||||
4,2,2,64,5129,2048,0.3993,0.3993,0.3993,12.7775
|
||||
4,2,2,128,5129,2048,0.3993,0.3993,0.3993,12.7775
|
||||
4,2,4,1,131086,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,2,4,2,65550,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,2,4,4,32782,2048,0.0625,0.0625,0.0625,1.9991
|
||||
4,2,4,8,16398,2048,0.1249,0.1249,0.1249,3.9966
|
||||
4,2,4,16,8206,2048,0.2496,0.2497,0.2496,7.9864
|
||||
4,2,4,32,7179,2048,0.2853,0.2853,0.2853,9.1288
|
||||
4,2,4,64,7177,2048,0.2854,0.2854,0.2854,9.1314
|
||||
4,2,4,128,7177,2048,0.2854,0.2854,0.2854,9.1314
|
||||
4,2,8,1,131090,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,2,8,2,65554,2048,0.0312,0.0313,0.0312,0.9997
|
||||
4,2,8,4,32786,2048,0.0625,0.0625,0.0625,1.9989
|
||||
4,2,8,8,16402,2048,0.1249,0.1249,0.1249,3.9956
|
||||
4,2,8,16,11279,2048,0.1816,0.1816,0.1816,5.8104
|
||||
4,2,8,32,11275,2048,0.1816,0.1817,0.1816,5.8125
|
||||
4,2,8,64,11273,2048,0.1817,0.1817,0.1817,5.8135
|
||||
4,2,8,128,11273,2048,0.1817,0.1817,0.1817,5.8135
|
||||
4,2,16,1,131098,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,2,16,2,65562,2048,0.0312,0.0312,0.0312,0.9996
|
||||
4,2,16,4,32794,2048,0.0624,0.0625,0.0625,1.9984
|
||||
4,2,16,8,20502,2048,0.0999,0.0999,0.0999,3.1966
|
||||
4,2,16,16,19471,2048,0.1052,0.1052,0.1052,3.3658
|
||||
4,2,16,32,19467,2048,0.1052,0.1052,0.1052,3.3665
|
||||
4,2,16,64,19465,2048,0.1052,0.1052,0.1052,3.3669
|
||||
4,2,16,128,19465,2048,0.1052,0.1052,0.1052,3.3669
|
||||
4,4,0,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,4,0,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,4,0,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,4,0,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,4,0,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,4,0,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,4,0,64,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,4,0,128,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,4,1,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,4,1,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,4,1,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,4,1,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,4,1,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,4,1,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,4,1,64,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,4,1,128,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,4,2,1,131084,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,4,2,2,65548,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,4,2,4,32780,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,4,2,8,16396,2048,0.1249,0.1250,0.1249,3.9971
|
||||
4,4,2,16,8204,2048,0.2496,0.2497,0.2497,7.9883
|
||||
4,4,2,32,4108,2048,0.4985,0.4987,0.4986,15.9533
|
||||
4,4,2,64,2571,2048,0.7966,0.7966,0.7966,25.4905
|
||||
4,4,2,128,2571,2048,0.7966,0.7966,0.7966,25.4905
|
||||
4,4,4,1,131086,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,4,4,2,65550,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,4,4,4,32782,2048,0.0625,0.0625,0.0625,1.9991
|
||||
4,4,4,8,16398,2048,0.1249,0.1249,0.1249,3.9966
|
||||
4,4,4,16,8206,2048,0.2496,0.2497,0.2496,7.9864
|
||||
4,4,4,32,4110,2048,0.4983,0.4984,0.4984,15.9455
|
||||
4,4,4,64,3595,2048,0.5697,0.5697,0.5697,18.2298
|
||||
4,4,4,128,3595,2048,0.5697,0.5697,0.5697,18.2298
|
||||
4,4,8,1,131090,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,4,8,2,65554,2048,0.0312,0.0313,0.0312,0.9997
|
||||
4,4,8,4,32786,2048,0.0625,0.0625,0.0625,1.9989
|
||||
4,4,8,8,16402,2048,0.1249,0.1249,0.1249,3.9956
|
||||
4,4,8,16,8210,2048,0.2495,0.2495,0.2495,7.9825
|
||||
4,4,8,32,5647,2048,0.3627,0.3627,0.3627,11.6055
|
||||
4,4,8,64,5643,2048,0.3629,0.3629,0.3629,11.6137
|
||||
4,4,8,128,5643,2048,0.3629,0.3629,0.3629,11.6137
|
||||
4,4,16,1,131098,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,4,16,2,65562,2048,0.0312,0.0312,0.0312,0.9996
|
||||
4,4,16,4,32794,2048,0.0624,0.0625,0.0625,1.9984
|
||||
4,4,16,8,16410,2048,0.1248,0.1248,0.1248,3.9937
|
||||
4,4,16,16,9751,2048,0.2100,0.2101,0.2101,6.7210
|
||||
4,4,16,32,9743,2048,0.2102,0.2102,0.2102,6.7265
|
||||
4,4,16,64,9739,2048,0.2103,0.2103,0.2103,6.7292
|
||||
4,4,16,128,9739,2048,0.2103,0.2103,0.2103,6.7292
|
||||
4,8,0,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,8,0,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,8,0,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,8,0,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,8,0,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,8,0,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,8,0,64,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,8,0,128,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,8,1,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,8,1,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,8,1,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,8,1,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,8,1,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,8,1,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,8,1,64,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,8,1,128,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,8,2,1,131084,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,8,2,2,65548,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,8,2,4,32780,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,8,2,8,16396,2048,0.1249,0.1250,0.1249,3.9971
|
||||
4,8,2,16,8204,2048,0.2496,0.2497,0.2497,7.9883
|
||||
4,8,2,32,4108,2048,0.4985,0.4987,0.4986,15.9533
|
||||
4,8,2,64,2060,2048,0.9942,0.9942,0.9942,31.8136
|
||||
4,8,2,128,2060,2048,0.9942,0.9942,0.9942,31.8136
|
||||
4,8,4,1,131086,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,8,4,2,65550,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,8,4,4,32782,2048,0.0625,0.0625,0.0625,1.9991
|
||||
4,8,4,8,16398,2048,0.1249,0.1249,0.1249,3.9966
|
||||
4,8,4,16,8206,2048,0.2496,0.2497,0.2496,7.9864
|
||||
4,8,4,32,4110,2048,0.4983,0.4984,0.4984,15.9455
|
||||
4,8,4,64,2062,2048,0.9932,0.9932,0.9932,31.7827
|
||||
4,8,4,128,2062,2048,0.9932,0.9932,0.9932,31.7827
|
||||
4,8,8,1,131090,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,8,8,2,65554,2048,0.0312,0.0313,0.0312,0.9997
|
||||
4,8,8,4,32786,2048,0.0625,0.0625,0.0625,1.9989
|
||||
4,8,8,8,16402,2048,0.1249,0.1249,0.1249,3.9956
|
||||
4,8,8,16,8210,2048,0.2495,0.2495,0.2495,7.9825
|
||||
4,8,8,32,4114,2048,0.4978,0.4979,0.4979,15.9300
|
||||
4,8,8,64,2831,2048,0.7234,0.7234,0.7234,23.1494
|
||||
4,8,8,128,2831,2048,0.7234,0.7234,0.7234,23.1494
|
||||
4,8,16,1,131098,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,8,16,2,65562,2048,0.0312,0.0312,0.0312,0.9996
|
||||
4,8,16,4,32794,2048,0.0624,0.0625,0.0625,1.9984
|
||||
4,8,16,8,16410,2048,0.1248,0.1248,0.1248,3.9937
|
||||
4,8,16,16,8218,2048,0.2492,0.2493,0.2493,7.9747
|
||||
4,8,16,32,4887,2048,0.4191,0.4192,0.4191,13.4103
|
||||
4,8,16,64,4879,2048,0.4198,0.4198,0.4198,13.4323
|
||||
4,8,16,128,4879,2048,0.4198,0.4198,0.4198,13.4323
|
||||
4,16,0,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,16,0,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,16,0,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,16,0,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,16,0,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,16,0,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,16,0,64,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,16,0,128,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,16,1,1,131083,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,16,1,2,65547,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,16,1,4,32779,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,16,1,8,16395,2048,0.1249,0.1250,0.1249,3.9973
|
||||
4,16,1,16,8203,2048,0.2497,0.2498,0.2497,7.9893
|
||||
4,16,1,32,4107,2048,0.4987,0.4988,0.4987,15.9571
|
||||
4,16,1,64,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,16,1,128,2059,2048,0.9947,0.9947,0.9947,31.8290
|
||||
4,16,2,1,131084,2048,0.0156,0.0156,0.0156,0.5000
|
||||
4,16,2,2,65548,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,16,2,4,32780,2048,0.0625,0.0625,0.0625,1.9993
|
||||
4,16,2,8,16396,2048,0.1249,0.1250,0.1249,3.9971
|
||||
4,16,2,16,8204,2048,0.2496,0.2497,0.2497,7.9883
|
||||
4,16,2,32,4108,2048,0.4985,0.4987,0.4986,15.9533
|
||||
4,16,2,64,2060,2048,0.9942,0.9942,0.9942,31.8136
|
||||
4,16,2,128,2060,2048,0.9942,0.9942,0.9942,31.8136
|
||||
4,16,4,1,131086,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,16,4,2,65550,2048,0.0312,0.0313,0.0312,0.9998
|
||||
4,16,4,4,32782,2048,0.0625,0.0625,0.0625,1.9991
|
||||
4,16,4,8,16398,2048,0.1249,0.1249,0.1249,3.9966
|
||||
4,16,4,16,8206,2048,0.2496,0.2497,0.2496,7.9864
|
||||
4,16,4,32,4110,2048,0.4983,0.4984,0.4984,15.9455
|
||||
4,16,4,64,2062,2048,0.9932,0.9932,0.9932,31.7827
|
||||
4,16,4,128,2062,2048,0.9932,0.9932,0.9932,31.7827
|
||||
4,16,8,1,131090,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,16,8,2,65554,2048,0.0312,0.0313,0.0312,0.9997
|
||||
4,16,8,4,32786,2048,0.0625,0.0625,0.0625,1.9989
|
||||
4,16,8,8,16402,2048,0.1249,0.1249,0.1249,3.9956
|
||||
4,16,8,16,8210,2048,0.2495,0.2495,0.2495,7.9825
|
||||
4,16,8,32,4114,2048,0.4978,0.4979,0.4979,15.9300
|
||||
4,16,8,64,2066,2048,0.9913,0.9913,0.9913,31.7212
|
||||
4,16,8,128,2066,2048,0.9913,0.9913,0.9913,31.7212
|
||||
4,16,16,1,131098,2048,0.0156,0.0156,0.0156,0.4999
|
||||
4,16,16,2,65562,2048,0.0312,0.0312,0.0312,0.9996
|
||||
4,16,16,4,32794,2048,0.0624,0.0625,0.0625,1.9984
|
||||
4,16,16,8,16410,2048,0.1248,0.1248,0.1248,3.9937
|
||||
4,16,16,16,8218,2048,0.2492,0.2493,0.2493,7.9747
|
||||
4,16,16,32,4122,2048,0.4968,0.4970,0.4969,15.8991
|
||||
4,16,16,64,2455,2048,0.8342,0.8342,0.8342,26.6949
|
||||
4,16,16,128,2455,2048,0.8342,0.8342,0.8342,26.6949
|
||||
8,2,0,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,2,0,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,2,0,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,2,0,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,2,0,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,2,0,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,2,0,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,2,0,128,4105,2048,0.4989,0.4989,0.4989,31.9298
|
||||
8,2,1,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,2,1,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,2,1,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,2,1,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,2,1,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,2,1,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,2,1,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,2,1,128,4105,2048,0.4989,0.4989,0.4989,31.9298
|
||||
8,2,2,1,262156,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,2,2,2,131084,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,2,2,4,65548,2048,0.0312,0.0313,0.0313,1.9996
|
||||
8,2,2,8,32780,2048,0.0625,0.0625,0.0625,3.9985
|
||||
8,2,2,16,16396,2048,0.1249,0.1250,0.1249,7.9941
|
||||
8,2,2,32,8204,2048,0.2496,0.2497,0.2497,15.9766
|
||||
8,2,2,64,5131,2048,0.3991,0.3992,0.3992,25.5451
|
||||
8,2,2,128,5129,2048,0.3993,0.3993,0.3993,25.5551
|
||||
8,2,4,1,262158,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,2,4,2,131086,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,2,4,4,65550,2048,0.0312,0.0313,0.0312,1.9996
|
||||
8,2,4,8,32782,2048,0.0625,0.0625,0.0625,3.9983
|
||||
8,2,4,16,16398,2048,0.1249,0.1249,0.1249,7.9932
|
||||
8,2,4,32,8206,2048,0.2496,0.2497,0.2496,15.9727
|
||||
8,2,4,64,7179,2048,0.2853,0.2853,0.2853,18.2577
|
||||
8,2,4,128,7177,2048,0.2854,0.2854,0.2854,18.2628
|
||||
8,2,8,1,262162,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,2,8,2,131090,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,2,8,4,65554,2048,0.0312,0.0313,0.0312,1.9995
|
||||
8,2,8,8,32786,2048,0.0625,0.0625,0.0625,3.9978
|
||||
8,2,8,16,16402,2048,0.1249,0.1249,0.1249,7.9912
|
||||
8,2,8,32,11279,2048,0.1816,0.1816,0.1816,11.6209
|
||||
8,2,8,64,11275,2048,0.1816,0.1817,0.1816,11.6250
|
||||
8,2,8,128,11273,2048,0.1817,0.1817,0.1817,11.6271
|
||||
8,2,16,1,262170,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,2,16,2,131098,2048,0.0156,0.0156,0.0156,0.9998
|
||||
8,2,16,4,65562,2048,0.0312,0.0313,0.0312,1.9992
|
||||
8,2,16,8,32794,2048,0.0624,0.0625,0.0625,3.9968
|
||||
8,2,16,16,19479,2048,0.1051,0.1052,0.1052,6.7289
|
||||
8,2,16,32,19471,2048,0.1052,0.1052,0.1052,6.7317
|
||||
8,2,16,64,19467,2048,0.1052,0.1052,0.1052,6.7330
|
||||
8,2,16,128,19465,2048,0.1052,0.1052,0.1052,6.7337
|
||||
8,4,0,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,4,0,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,4,0,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,4,0,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,4,0,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,4,0,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,4,0,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,4,0,128,2059,2048,0.9947,0.9947,0.9947,63.6581
|
||||
8,4,1,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,4,1,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,4,1,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,4,1,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,4,1,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,4,1,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,4,1,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,4,1,128,2059,2048,0.9947,0.9947,0.9947,63.6581
|
||||
8,4,2,1,262156,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,4,2,2,131084,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,4,2,4,65548,2048,0.0312,0.0313,0.0313,1.9996
|
||||
8,4,2,8,32780,2048,0.0625,0.0625,0.0625,3.9985
|
||||
8,4,2,16,16396,2048,0.1249,0.1250,0.1249,7.9941
|
||||
8,4,2,32,8204,2048,0.2496,0.2497,0.2497,15.9766
|
||||
8,4,2,64,4108,2048,0.4985,0.4987,0.4986,31.9065
|
||||
8,4,2,128,2571,2048,0.7966,0.7966,0.7966,50.9809
|
||||
8,4,4,1,262158,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,4,4,2,131086,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,4,4,4,65550,2048,0.0312,0.0313,0.0312,1.9996
|
||||
8,4,4,8,32782,2048,0.0625,0.0625,0.0625,3.9983
|
||||
8,4,4,16,16398,2048,0.1249,0.1249,0.1249,7.9932
|
||||
8,4,4,32,8206,2048,0.2496,0.2497,0.2496,15.9727
|
||||
8,4,4,64,4110,2048,0.4983,0.4984,0.4984,31.8910
|
||||
8,4,4,128,3595,2048,0.5697,0.5697,0.5697,36.4595
|
||||
8,4,8,1,262162,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,4,8,2,131090,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,4,8,4,65554,2048,0.0312,0.0313,0.0312,1.9995
|
||||
8,4,8,8,32786,2048,0.0625,0.0625,0.0625,3.9978
|
||||
8,4,8,16,16402,2048,0.1249,0.1249,0.1249,7.9912
|
||||
8,4,8,32,8210,2048,0.2495,0.2495,0.2495,15.9649
|
||||
8,4,8,64,5647,2048,0.3627,0.3627,0.3627,23.2109
|
||||
8,4,8,128,5643,2048,0.3629,0.3629,0.3629,23.2274
|
||||
8,4,16,1,262170,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,4,16,2,131098,2048,0.0156,0.0156,0.0156,0.9998
|
||||
8,4,16,4,65562,2048,0.0312,0.0313,0.0312,1.9992
|
||||
8,4,16,8,32794,2048,0.0624,0.0625,0.0625,3.9968
|
||||
8,4,16,16,16410,2048,0.1248,0.1249,0.1248,7.9873
|
||||
8,4,16,32,9751,2048,0.2100,0.2101,0.2101,13.4419
|
||||
8,4,16,64,9743,2048,0.2102,0.2102,0.2102,13.4529
|
||||
8,4,16,128,9739,2048,0.2103,0.2103,0.2103,13.4585
|
||||
8,8,0,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,8,0,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,8,0,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,8,0,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,8,0,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,8,0,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,8,0,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,8,0,128,2059,2048,0.9947,0.9947,0.9947,63.6581
|
||||
8,8,1,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,8,1,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,8,1,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,8,1,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,8,1,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,8,1,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,8,1,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,8,1,128,2059,2048,0.9947,0.9947,0.9947,63.6581
|
||||
8,8,2,1,262156,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,8,2,2,131084,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,8,2,4,65548,2048,0.0312,0.0313,0.0313,1.9996
|
||||
8,8,2,8,32780,2048,0.0625,0.0625,0.0625,3.9985
|
||||
8,8,2,16,16396,2048,0.1249,0.1250,0.1249,7.9941
|
||||
8,8,2,32,8204,2048,0.2496,0.2497,0.2497,15.9766
|
||||
8,8,2,64,4108,2048,0.4985,0.4987,0.4986,31.9065
|
||||
8,8,2,128,2060,2048,0.9942,0.9942,0.9942,63.6272
|
||||
8,8,4,1,262158,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,8,4,2,131086,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,8,4,4,65550,2048,0.0312,0.0313,0.0312,1.9996
|
||||
8,8,4,8,32782,2048,0.0625,0.0625,0.0625,3.9983
|
||||
8,8,4,16,16398,2048,0.1249,0.1249,0.1249,7.9932
|
||||
8,8,4,32,8206,2048,0.2496,0.2497,0.2496,15.9727
|
||||
8,8,4,64,4110,2048,0.4983,0.4984,0.4984,31.8910
|
||||
8,8,4,128,2062,2048,0.9932,0.9932,0.9932,63.5655
|
||||
8,8,8,1,262162,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,8,8,2,131090,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,8,8,4,65554,2048,0.0312,0.0313,0.0312,1.9995
|
||||
8,8,8,8,32786,2048,0.0625,0.0625,0.0625,3.9978
|
||||
8,8,8,16,16402,2048,0.1249,0.1249,0.1249,7.9912
|
||||
8,8,8,32,8210,2048,0.2495,0.2495,0.2495,15.9649
|
||||
8,8,8,64,4114,2048,0.4978,0.4979,0.4979,31.8600
|
||||
8,8,8,128,2831,2048,0.7234,0.7234,0.7234,46.2988
|
||||
8,8,16,1,262170,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,8,16,2,131098,2048,0.0156,0.0156,0.0156,0.9998
|
||||
8,8,16,4,65562,2048,0.0312,0.0313,0.0312,1.9992
|
||||
8,8,16,8,32794,2048,0.0624,0.0625,0.0625,3.9968
|
||||
8,8,16,16,16410,2048,0.1248,0.1249,0.1248,7.9873
|
||||
8,8,16,32,8218,2048,0.2492,0.2493,0.2493,15.9494
|
||||
8,8,16,64,4887,2048,0.4191,0.4192,0.4191,26.8205
|
||||
8,8,16,128,4879,2048,0.4198,0.4198,0.4198,26.8645
|
||||
8,16,0,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,16,0,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,16,0,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,16,0,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,16,0,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,16,0,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,16,0,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,16,0,128,2059,2048,0.9947,0.9947,0.9947,63.6581
|
||||
8,16,1,1,262155,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,16,1,2,131083,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,16,1,4,65547,2048,0.0312,0.0313,0.0313,1.9997
|
||||
8,16,1,8,32779,2048,0.0625,0.0625,0.0625,3.9987
|
||||
8,16,1,16,16395,2048,0.1249,0.1250,0.1249,7.9946
|
||||
8,16,1,32,8203,2048,0.2497,0.2498,0.2497,15.9785
|
||||
8,16,1,64,4107,2048,0.4987,0.4988,0.4987,31.9143
|
||||
8,16,1,128,2059,2048,0.9947,0.9947,0.9947,63.6581
|
||||
8,16,2,1,262156,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,16,2,2,131084,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,16,2,4,65548,2048,0.0312,0.0313,0.0313,1.9996
|
||||
8,16,2,8,32780,2048,0.0625,0.0625,0.0625,3.9985
|
||||
8,16,2,16,16396,2048,0.1249,0.1250,0.1249,7.9941
|
||||
8,16,2,32,8204,2048,0.2496,0.2497,0.2497,15.9766
|
||||
8,16,2,64,4108,2048,0.4985,0.4987,0.4986,31.9065
|
||||
8,16,2,128,2060,2048,0.9942,0.9942,0.9942,63.6272
|
||||
8,16,4,1,262158,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,16,4,2,131086,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,16,4,4,65550,2048,0.0312,0.0313,0.0312,1.9996
|
||||
8,16,4,8,32782,2048,0.0625,0.0625,0.0625,3.9983
|
||||
8,16,4,16,16398,2048,0.1249,0.1249,0.1249,7.9932
|
||||
8,16,4,32,8206,2048,0.2496,0.2497,0.2496,15.9727
|
||||
8,16,4,64,4110,2048,0.4983,0.4984,0.4984,31.8910
|
||||
8,16,4,128,2062,2048,0.9932,0.9932,0.9932,63.5655
|
||||
8,16,8,1,262162,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,16,8,2,131090,2048,0.0156,0.0156,0.0156,0.9999
|
||||
8,16,8,4,65554,2048,0.0312,0.0313,0.0312,1.9995
|
||||
8,16,8,8,32786,2048,0.0625,0.0625,0.0625,3.9978
|
||||
8,16,8,16,16402,2048,0.1249,0.1249,0.1249,7.9912
|
||||
8,16,8,32,8210,2048,0.2495,0.2495,0.2495,15.9649
|
||||
8,16,8,64,4114,2048,0.4978,0.4979,0.4979,31.8600
|
||||
8,16,8,128,2066,2048,0.9913,0.9913,0.9913,63.4424
|
||||
8,16,16,1,262170,2048,0.0078,0.0078,0.0078,0.5000
|
||||
8,16,16,2,131098,2048,0.0156,0.0156,0.0156,0.9998
|
||||
8,16,16,4,65562,2048,0.0312,0.0313,0.0312,1.9992
|
||||
8,16,16,8,32794,2048,0.0624,0.0625,0.0625,3.9968
|
||||
8,16,16,16,16410,2048,0.1248,0.1249,0.1248,7.9873
|
||||
8,16,16,32,8218,2048,0.2492,0.2493,0.2493,15.9494
|
||||
8,16,16,64,4122,2048,0.4968,0.4970,0.4969,31.7982
|
||||
8,16,16,128,2455,2048,0.8342,0.8342,0.8342,53.3898
|
||||
|
@@ -0,0 +1,80 @@
|
||||
1,1,0,1034,1024,0.9903,0.9903,0.9903
|
||||
1,1,1,1034,1024,0.9903,0.9903,0.9903
|
||||
1,1,2,1034,1024,0.9903,0.9903,0.9903
|
||||
1,1,4,1034,1024,0.9903,0.9903,0.9903
|
||||
1,1,8,1034,1024,0.9903,0.9903,0.9903
|
||||
1,2,0,1034,1024,0.9903,0.9903,0.9903
|
||||
1,2,1,1034,1024,0.9903,0.9903,0.9903
|
||||
1,2,2,1034,1024,0.9903,0.9903,0.9903
|
||||
1,2,4,1034,1024,0.9903,0.9903,0.9903
|
||||
1,2,8,1034,1024,0.9903,0.9903,0.9903
|
||||
1,4,0,1034,1024,0.9903,0.9903,0.9903
|
||||
1,4,1,1034,1024,0.9903,0.9903,0.9903
|
||||
1,4,2,1034,1024,0.9903,0.9903,0.9903
|
||||
1,4,4,1034,1024,0.9903,0.9903,0.9903
|
||||
1,4,8,1034,1024,0.9903,0.9903,0.9903
|
||||
1,8,0,1034,1024,0.9903,0.9903,0.9903
|
||||
1,8,1,1034,1024,0.9903,0.9903,0.9903
|
||||
1,8,2,1034,1024,0.9903,0.9903,0.9903
|
||||
1,8,4,1034,1024,0.9903,0.9903,0.9903
|
||||
1,8,8,1034,1024,0.9903,0.9903,0.9903
|
||||
2,1,0,1034,1024,0.9903,0.9903,0.9903
|
||||
2,1,1,2059,1024,0.4973,0.4981,0.4977
|
||||
2,1,2,2060,1024,0.4971,0.4978,0.4974
|
||||
2,1,4,2062,1024,0.4966,0.4983,0.4975
|
||||
2,1,8,2063,1024,0.4964,0.4993,0.4978
|
||||
2,2,0,1034,1024,0.9903,0.9903,0.9903
|
||||
2,2,1,1035,1024,0.9894,0.9903,0.9899
|
||||
2,2,2,1037,1024,0.9875,0.9903,0.9889
|
||||
2,2,4,1039,1024,0.9856,0.9903,0.9879
|
||||
2,2,8,1043,1024,0.9818,0.9903,0.9861
|
||||
2,4,0,1034,1024,0.9903,0.9903,0.9903
|
||||
2,4,1,1035,1024,0.9894,0.9903,0.9899
|
||||
2,4,2,1036,1024,0.9884,0.9903,0.9894
|
||||
2,4,4,1039,1024,0.9856,0.9903,0.9879
|
||||
2,4,8,1043,1024,0.9818,0.9903,0.9861
|
||||
2,8,0,1034,1024,0.9903,0.9903,0.9903
|
||||
2,8,1,1035,1024,0.9894,0.9903,0.9899
|
||||
2,8,2,1036,1024,0.9884,0.9903,0.9894
|
||||
2,8,4,1038,1024,0.9865,0.9903,0.9884
|
||||
2,8,8,1043,1024,0.9818,0.9903,0.9861
|
||||
4,1,0,1034,1024,0.9903,0.9903,0.9903
|
||||
4,1,1,2066,1024,0.4956,0.7442,0.6821
|
||||
4,1,2,2071,1024,0.4944,0.7415,0.6797
|
||||
4,1,4,4112,1024,0.2490,0.2502,0.2495
|
||||
4,1,8,4116,1024,0.2488,0.2513,0.2498
|
||||
4,2,0,1034,1024,0.9903,0.9903,0.9903
|
||||
4,2,1,1041,1024,0.9837,0.9884,0.9872
|
||||
4,2,2,1554,1024,0.6589,0.6628,0.6610
|
||||
4,2,4,2066,1024,0.4956,0.4998,0.4974
|
||||
4,2,8,2072,1024,0.4942,0.5020,0.4976
|
||||
4,4,0,1034,1024,0.9903,0.9903,0.9903
|
||||
4,4,1,1037,1024,0.9875,0.9903,0.9889
|
||||
4,4,2,1040,1024,0.9846,0.9903,0.9870
|
||||
4,4,4,1049,1024,0.9762,0.9903,0.9832
|
||||
4,4,8,1061,1024,0.9651,0.9903,0.9777
|
||||
4,8,0,1034,1024,0.9903,0.9903,0.9903
|
||||
4,8,1,1037,1024,0.9875,0.9903,0.9889
|
||||
4,8,2,1040,1024,0.9846,0.9903,0.9875
|
||||
4,8,4,1047,1024,0.9780,0.9903,0.9842
|
||||
4,8,8,1061,1024,0.9651,0.9903,0.9777
|
||||
8,1,0,1034,1024,0.9903,0.9903,0.9903
|
||||
8,1,1,2072,1024,0.4942,0.8634,0.8173
|
||||
8,1,2,4126,1024,0.2482,0.3730,0.3130
|
||||
8,1,4,2101,1024,0.4874,0.8421,0.7978
|
||||
8,1,8,8213,1024,0.1247,0.1264,0.1252
|
||||
8,2,0,1034,1024,0.9903,0.9903,0.9903
|
||||
8,2,1,1049,1024,0.9762,0.9846,0.9836
|
||||
8,2,2,2072,1024,0.4942,0.4983,0.4958
|
||||
8,2,4,3608,1024,0.2838,0.2872,0.2851
|
||||
8,2,8,4122,1024,0.2484,0.2540,0.2503
|
||||
8,4,0,1034,1024,0.9903,0.9903,0.9903
|
||||
8,4,1,1049,1024,0.9762,0.9865,0.9849
|
||||
8,4,2,1056,1024,0.9697,0.9884,0.9801
|
||||
8,4,4,1568,1024,0.6531,0.6662,0.6583
|
||||
8,4,8,2086,1024,0.4909,0.5077,0.4976
|
||||
8,8,0,1034,1024,0.9903,0.9903,0.9903
|
||||
8,8,1,1041,1024,0.9837,0.9903,0.9870
|
||||
8,8,2,1048,1024,0.9771,0.9903,0.9830
|
||||
8,8,4,1062,1024,0.9642,0.9903,0.9753
|
||||
8,8,8,1097,1024,0.9335,0.9903,0.9614
|
||||
|
@@ -0,0 +1,576 @@
|
||||
1,1,0,1,22536,2048,0.0909,0.0909,0.0909,0.7270
|
||||
1,1,0,2,14344,2048,0.1428,0.1428,0.1428,1.1422
|
||||
1,1,0,4,10248,2048,0.1998,0.1998,0.1998,1.5988
|
||||
1,1,0,8,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,0,16,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,0,32,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,0,64,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,0,128,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,1,1,22536,2048,0.0909,0.0909,0.0909,0.7270
|
||||
1,1,1,2,14344,2048,0.1428,0.1428,0.1428,1.1422
|
||||
1,1,1,4,10248,2048,0.1998,0.1998,0.1998,1.5988
|
||||
1,1,1,8,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,1,16,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,1,32,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,1,64,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,1,128,8200,2048,0.2498,0.2498,0.2498,1.9980
|
||||
1,1,2,1,24584,2048,0.0833,0.0833,0.0833,0.6664
|
||||
1,1,2,2,16392,2048,0.1249,0.1249,0.1249,0.9995
|
||||
1,1,2,4,12296,2048,0.1666,0.1666,0.1666,1.3325
|
||||
1,1,2,8,10248,2048,0.1998,0.1998,0.1998,1.5988
|
||||
1,1,2,16,10248,2048,0.1998,0.1998,0.1998,1.5988
|
||||
1,1,2,32,10248,2048,0.1998,0.1998,0.1998,1.5988
|
||||
1,1,2,64,10248,2048,0.1998,0.1998,0.1998,1.5988
|
||||
1,1,2,128,10248,2048,0.1998,0.1998,0.1998,1.5988
|
||||
1,1,4,1,28680,2048,0.0714,0.0714,0.0714,0.5713
|
||||
1,1,4,2,20488,2048,0.1000,0.1000,0.1000,0.7997
|
||||
1,1,4,4,16392,2048,0.1249,0.1249,0.1249,0.9995
|
||||
1,1,4,8,14344,2048,0.1428,0.1428,0.1428,1.1422
|
||||
1,1,4,16,14344,2048,0.1428,0.1428,0.1428,1.1422
|
||||
1,1,4,32,14344,2048,0.1428,0.1428,0.1428,1.1422
|
||||
1,1,4,64,14344,2048,0.1428,0.1428,0.1428,1.1422
|
||||
1,1,4,128,14344,2048,0.1428,0.1428,0.1428,1.1422
|
||||
1,1,8,1,36872,2048,0.0555,0.0555,0.0555,0.4443
|
||||
1,1,8,2,28680,2048,0.0714,0.0714,0.0714,0.5713
|
||||
1,1,8,4,24584,2048,0.0833,0.0833,0.0833,0.6664
|
||||
1,1,8,8,22536,2048,0.0909,0.0909,0.0909,0.7270
|
||||
1,1,8,16,22536,2048,0.0909,0.0909,0.0909,0.7270
|
||||
1,1,8,32,22536,2048,0.0909,0.0909,0.0909,0.7270
|
||||
1,1,8,64,22536,2048,0.0909,0.0909,0.0909,0.7270
|
||||
1,1,8,128,22536,2048,0.0909,0.0909,0.0909,0.7270
|
||||
1,1,16,1,53256,2048,0.0385,0.0385,0.0385,0.3076
|
||||
1,1,16,2,45064,2048,0.0454,0.0454,0.0454,0.3636
|
||||
1,1,16,4,40968,2048,0.0500,0.0500,0.0500,0.3999
|
||||
1,1,16,8,38920,2048,0.0526,0.0526,0.0526,0.4210
|
||||
1,1,16,16,38920,2048,0.0526,0.0526,0.0526,0.4210
|
||||
1,1,16,32,38920,2048,0.0526,0.0526,0.0526,0.4210
|
||||
1,1,16,64,38920,2048,0.0526,0.0526,0.0526,0.4210
|
||||
1,1,16,128,38920,2048,0.0526,0.0526,0.0526,0.4210
|
||||
1,2,0,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,2,0,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,2,0,4,5130,2048,0.3992,0.3992,0.3992,3.1938
|
||||
1,2,0,8,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,0,16,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,0,32,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,0,64,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,0,128,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,2,1,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,2,1,4,5130,2048,0.3992,0.3992,0.3992,3.1938
|
||||
1,2,1,8,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,16,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,32,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,64,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,1,128,4105,2048,0.4989,0.4989,0.4989,3.9912
|
||||
1,2,2,1,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,2,2,2,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,2,2,4,6154,2048,0.3328,0.3328,0.3328,2.6623
|
||||
1,2,2,8,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,2,16,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,2,32,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,2,64,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,2,128,5129,2048,0.3993,0.3993,0.3993,3.1944
|
||||
1,2,4,1,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,2,4,2,10252,2048,0.1998,0.1998,0.1998,1.5981
|
||||
1,2,4,4,8202,2048,0.2497,0.2497,0.2497,1.9976
|
||||
1,2,4,8,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,4,16,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,4,32,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,4,64,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,4,128,7177,2048,0.2854,0.2854,0.2854,2.2828
|
||||
1,2,8,1,18448,2048,0.1110,0.1110,0.1110,0.8881
|
||||
1,2,8,2,14348,2048,0.1427,0.1427,0.1427,1.1419
|
||||
1,2,8,4,12298,2048,0.1665,0.1665,0.1665,1.3322
|
||||
1,2,8,8,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,8,16,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,8,32,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,8,64,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,8,128,11273,2048,0.1817,0.1817,0.1817,1.4534
|
||||
1,2,16,1,26640,2048,0.0769,0.0769,0.0769,0.6150
|
||||
1,2,16,2,22540,2048,0.0909,0.0909,0.0909,0.7269
|
||||
1,2,16,4,20490,2048,0.1000,0.1000,0.1000,0.7996
|
||||
1,2,16,8,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,2,16,16,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,2,16,32,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,2,16,64,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,2,16,128,19465,2048,0.1052,0.1052,0.1052,0.8417
|
||||
1,4,0,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,4,0,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,4,0,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,4,0,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,0,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,0,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,0,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,0,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,4,1,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,4,1,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,4,1,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,1,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,4,2,1,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,4,2,2,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,4,2,4,4108,2048,0.4985,0.4985,0.4985,3.9883
|
||||
1,4,2,8,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,2,16,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,2,32,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,2,64,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,2,128,2571,2048,0.7966,0.7966,0.7966,6.3726
|
||||
1,4,4,1,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,4,4,2,8206,2048,0.2496,0.2496,0.2496,1.9966
|
||||
1,4,4,4,4110,2048,0.4983,0.4983,0.4983,3.9864
|
||||
1,4,4,8,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,4,16,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,4,32,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,4,64,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,4,128,3595,2048,0.5697,0.5697,0.5697,4.5574
|
||||
1,4,8,1,16402,2048,0.1249,0.1249,0.1249,0.9989
|
||||
1,4,8,2,8210,2048,0.2495,0.2495,0.2495,1.9956
|
||||
1,4,8,4,6158,2048,0.3326,0.3326,0.3326,2.6606
|
||||
1,4,8,8,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,8,16,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,8,32,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,8,64,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,8,128,5643,2048,0.3629,0.3629,0.3629,2.9034
|
||||
1,4,16,1,16410,2048,0.1248,0.1248,0.1248,0.9984
|
||||
1,4,16,2,11284,2048,0.1815,0.1815,0.1815,1.4520
|
||||
1,4,16,4,10254,2048,0.1997,0.1997,0.1997,1.5978
|
||||
1,4,16,8,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,4,16,16,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,4,16,32,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,4,16,64,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,4,16,128,9739,2048,0.2103,0.2103,0.2103,1.6823
|
||||
1,8,0,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,8,0,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,8,0,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,8,0,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,0,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,0,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,0,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,0,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,8,1,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,8,1,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,8,1,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,1,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,8,2,1,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,8,2,2,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,8,2,4,4108,2048,0.4985,0.4985,0.4985,3.9883
|
||||
1,8,2,8,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,2,16,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,2,32,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,2,64,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,2,128,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,8,4,1,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,8,4,2,8206,2048,0.2496,0.2496,0.2496,1.9966
|
||||
1,8,4,4,4110,2048,0.4983,0.4983,0.4983,3.9864
|
||||
1,8,4,8,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,4,16,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,4,32,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,4,64,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,4,128,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,8,8,1,16402,2048,0.1249,0.1249,0.1249,0.9989
|
||||
1,8,8,2,8210,2048,0.2495,0.2495,0.2495,1.9956
|
||||
1,8,8,4,4114,2048,0.4978,0.4978,0.4978,3.9825
|
||||
1,8,8,8,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,8,16,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,8,32,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,8,64,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,8,128,2831,2048,0.7234,0.7234,0.7234,5.7874
|
||||
1,8,16,1,16410,2048,0.1248,0.1248,0.1248,0.9984
|
||||
1,8,16,2,8218,2048,0.2492,0.2492,0.2492,1.9937
|
||||
1,8,16,4,5142,2048,0.3983,0.3983,0.3983,3.1863
|
||||
1,8,16,8,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,8,16,16,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,8,16,32,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,8,16,64,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,8,16,128,4879,2048,0.4198,0.4198,0.4198,3.3581
|
||||
1,16,0,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,16,0,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,16,0,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,16,0,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,0,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,0,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,0,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,0,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,16,1,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,16,1,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,16,1,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,1,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,16,2,1,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,16,2,2,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,16,2,4,4108,2048,0.4985,0.4985,0.4985,3.9883
|
||||
1,16,2,8,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,2,16,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,2,32,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,2,64,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,2,128,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,16,4,1,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,16,4,2,8206,2048,0.2496,0.2496,0.2496,1.9966
|
||||
1,16,4,4,4110,2048,0.4983,0.4983,0.4983,3.9864
|
||||
1,16,4,8,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,4,16,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,4,32,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,4,64,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,4,128,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,16,8,1,16402,2048,0.1249,0.1249,0.1249,0.9989
|
||||
1,16,8,2,8210,2048,0.2495,0.2495,0.2495,1.9956
|
||||
1,16,8,4,4114,2048,0.4978,0.4978,0.4978,3.9825
|
||||
1,16,8,8,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,8,16,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,8,32,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,8,64,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,8,128,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,16,16,1,16410,2048,0.1248,0.1248,0.1248,0.9984
|
||||
1,16,16,2,8218,2048,0.2492,0.2492,0.2492,1.9937
|
||||
1,16,16,4,4122,2048,0.4968,0.4968,0.4968,3.9748
|
||||
1,16,16,8,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,16,16,16,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,16,16,32,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,16,16,64,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,16,16,128,2455,2048,0.8342,0.8342,0.8342,6.6737
|
||||
1,32,0,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,32,0,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,32,0,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,32,0,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,0,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,0,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,0,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,0,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,1,1,16395,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,32,1,2,8203,2048,0.2497,0.2497,0.2497,1.9973
|
||||
1,32,1,4,4107,2048,0.4987,0.4987,0.4987,3.9893
|
||||
1,32,1,8,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,1,16,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,1,32,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,1,64,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,1,128,2059,2048,0.9947,0.9947,0.9947,7.9573
|
||||
1,32,2,1,16396,2048,0.1249,0.1249,0.1249,0.9993
|
||||
1,32,2,2,8204,2048,0.2496,0.2496,0.2496,1.9971
|
||||
1,32,2,4,4108,2048,0.4985,0.4985,0.4985,3.9883
|
||||
1,32,2,8,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,32,2,16,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,32,2,32,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,32,2,64,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,32,2,128,2060,2048,0.9942,0.9942,0.9942,7.9534
|
||||
1,32,4,1,16398,2048,0.1249,0.1249,0.1249,0.9991
|
||||
1,32,4,2,8206,2048,0.2496,0.2496,0.2496,1.9966
|
||||
1,32,4,4,4110,2048,0.4983,0.4983,0.4983,3.9864
|
||||
1,32,4,8,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,32,4,16,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,32,4,32,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,32,4,64,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,32,4,128,2062,2048,0.9932,0.9932,0.9932,7.9457
|
||||
1,32,8,1,16402,2048,0.1249,0.1249,0.1249,0.9989
|
||||
1,32,8,2,8210,2048,0.2495,0.2495,0.2495,1.9956
|
||||
1,32,8,4,4114,2048,0.4978,0.4978,0.4978,3.9825
|
||||
1,32,8,8,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,32,8,16,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,32,8,32,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,32,8,64,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,32,8,128,2066,2048,0.9913,0.9913,0.9913,7.9303
|
||||
1,32,16,1,16410,2048,0.1248,0.1248,0.1248,0.9984
|
||||
1,32,16,2,8218,2048,0.2492,0.2492,0.2492,1.9937
|
||||
1,32,16,4,4122,2048,0.4968,0.4968,0.4968,3.9748
|
||||
1,32,16,8,2074,2048,0.9875,0.9875,0.9875,7.8997
|
||||
1,32,16,16,2074,2048,0.9875,0.9875,0.9875,7.8997
|
||||
1,32,16,32,2074,2048,0.9875,0.9875,0.9875,7.8997
|
||||
1,32,16,64,2074,2048,0.9875,0.9875,0.9875,7.8997
|
||||
1,32,16,128,2074,2048,0.9875,0.9875,0.9875,7.8997
|
||||
2,1,0,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,1,0,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,1,0,4,10250,2048,0.1998,0.1998,0.1998,3.1969
|
||||
2,1,0,8,8201,2048,0.2497,0.2498,0.2497,3.9956
|
||||
2,1,0,16,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,0,32,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,0,64,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,0,128,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,1,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,1,1,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,1,1,4,10250,2048,0.1998,0.1998,0.1998,3.1969
|
||||
2,1,1,8,8201,2048,0.2497,0.2498,0.2497,3.9956
|
||||
2,1,1,16,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,1,32,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,1,64,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,1,128,8200,2048,0.2498,0.2498,0.2498,3.9961
|
||||
2,1,2,1,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,1,2,2,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,1,2,4,12298,2048,0.1665,0.1666,0.1665,2.6645
|
||||
2,1,2,8,10249,2048,0.1998,0.1998,0.1998,3.1972
|
||||
2,1,2,16,10248,2048,0.1998,0.1998,0.1998,3.1975
|
||||
2,1,2,32,10248,2048,0.1998,0.1998,0.1998,3.1975
|
||||
2,1,2,64,10248,2048,0.1998,0.1998,0.1998,3.1975
|
||||
2,1,2,128,10248,2048,0.1998,0.1998,0.1998,3.1975
|
||||
2,1,4,1,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,1,4,2,20492,2048,0.0999,0.1000,0.1000,1.5991
|
||||
2,1,4,4,16394,2048,0.1249,0.1249,0.1249,1.9988
|
||||
2,1,4,8,14345,2048,0.1428,0.1428,0.1428,2.2843
|
||||
2,1,4,16,14344,2048,0.1428,0.1428,0.1428,2.2844
|
||||
2,1,4,32,14344,2048,0.1428,0.1428,0.1428,2.2844
|
||||
2,1,4,64,14344,2048,0.1428,0.1428,0.1428,2.2844
|
||||
2,1,4,128,14344,2048,0.1428,0.1428,0.1428,2.2844
|
||||
2,1,8,1,36880,2048,0.0555,0.0555,0.0555,0.8885
|
||||
2,1,8,2,28684,2048,0.0714,0.0714,0.0714,1.1424
|
||||
2,1,8,4,24586,2048,0.0833,0.0833,0.0833,1.3328
|
||||
2,1,8,8,22537,2048,0.0909,0.0909,0.0909,1.4540
|
||||
2,1,8,16,22536,2048,0.0909,0.0909,0.0909,1.4540
|
||||
2,1,8,32,22536,2048,0.0909,0.0909,0.0909,1.4540
|
||||
2,1,8,64,22536,2048,0.0909,0.0909,0.0909,1.4540
|
||||
2,1,8,128,22536,2048,0.0909,0.0909,0.0909,1.4540
|
||||
2,1,16,1,53264,2048,0.0384,0.0385,0.0385,0.6152
|
||||
2,1,16,2,45068,2048,0.0454,0.0454,0.0454,0.7271
|
||||
2,1,16,4,40970,2048,0.0500,0.0500,0.0500,0.7998
|
||||
2,1,16,8,38921,2048,0.0526,0.0526,0.0526,0.8419
|
||||
2,1,16,16,38920,2048,0.0526,0.0526,0.0526,0.8419
|
||||
2,1,16,32,38920,2048,0.0526,0.0526,0.0526,0.8419
|
||||
2,1,16,64,38920,2048,0.0526,0.0526,0.0526,0.8419
|
||||
2,1,16,128,38920,2048,0.0526,0.0526,0.0526,0.8419
|
||||
2,2,0,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,2,0,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,2,0,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,2,0,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,2,0,16,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,0,32,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,0,64,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,0,128,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,1,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,2,1,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,2,1,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,2,1,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,2,1,16,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,1,32,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,1,64,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,1,128,4105,2048,0.4989,0.4989,0.4989,7.9825
|
||||
2,2,2,1,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,2,2,2,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,2,2,4,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,2,2,8,5131,2048,0.3991,0.3992,0.3992,6.3863
|
||||
2,2,2,16,5129,2048,0.3993,0.3993,0.3993,6.3888
|
||||
2,2,2,32,5129,2048,0.3993,0.3993,0.3993,6.3888
|
||||
2,2,2,64,5129,2048,0.3993,0.3993,0.3993,6.3888
|
||||
2,2,2,128,5129,2048,0.3993,0.3993,0.3993,6.3888
|
||||
2,2,4,1,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,2,4,2,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,2,4,4,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,2,4,8,7179,2048,0.2853,0.2853,0.2853,4.5644
|
||||
2,2,4,16,7177,2048,0.2854,0.2854,0.2854,4.5657
|
||||
2,2,4,32,7177,2048,0.2854,0.2854,0.2854,4.5657
|
||||
2,2,4,64,7177,2048,0.2854,0.2854,0.2854,4.5657
|
||||
2,2,4,128,7177,2048,0.2854,0.2854,0.2854,4.5657
|
||||
2,2,8,1,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,2,8,2,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,2,8,4,12302,2048,0.1665,0.1665,0.1665,2.6636
|
||||
2,2,8,8,11275,2048,0.1816,0.1817,0.1816,2.9063
|
||||
2,2,8,16,11273,2048,0.1817,0.1817,0.1817,2.9068
|
||||
2,2,8,32,11273,2048,0.1817,0.1817,0.1817,2.9068
|
||||
2,2,8,64,11273,2048,0.1817,0.1817,0.1817,2.9068
|
||||
2,2,8,128,11273,2048,0.1817,0.1817,0.1817,2.9068
|
||||
2,2,16,1,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,2,16,2,22548,2048,0.0908,0.0908,0.0908,1.4533
|
||||
2,2,16,4,20494,2048,0.0999,0.0999,0.0999,1.5989
|
||||
2,2,16,8,19467,2048,0.1052,0.1052,0.1052,1.6833
|
||||
2,2,16,16,19465,2048,0.1052,0.1052,0.1052,1.6834
|
||||
2,2,16,32,19465,2048,0.1052,0.1052,0.1052,1.6834
|
||||
2,2,16,64,19465,2048,0.1052,0.1052,0.1052,1.6834
|
||||
2,2,16,128,19465,2048,0.1052,0.1052,0.1052,1.6834
|
||||
2,4,0,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,4,0,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,4,0,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,4,0,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,4,0,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,0,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,0,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,0,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,1,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,4,1,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,4,1,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,4,1,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,4,1,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,1,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,1,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,1,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,4,2,1,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,4,2,2,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,4,2,4,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,4,2,8,4108,2048,0.4985,0.4987,0.4986,7.9766
|
||||
2,4,2,16,2571,2048,0.7966,0.7966,0.7966,12.7452
|
||||
2,4,2,32,2571,2048,0.7966,0.7966,0.7966,12.7452
|
||||
2,4,2,64,2571,2048,0.7966,0.7966,0.7966,12.7452
|
||||
2,4,2,128,2571,2048,0.7966,0.7966,0.7966,12.7452
|
||||
2,4,4,1,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,4,4,2,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,4,4,4,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,4,4,8,4110,2048,0.4983,0.4984,0.4984,7.9727
|
||||
2,4,4,16,3595,2048,0.5697,0.5697,0.5697,9.1149
|
||||
2,4,4,32,3595,2048,0.5697,0.5697,0.5697,9.1149
|
||||
2,4,4,64,3595,2048,0.5697,0.5697,0.5697,9.1149
|
||||
2,4,4,128,3595,2048,0.5697,0.5697,0.5697,9.1149
|
||||
2,4,8,1,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,4,8,2,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,4,8,4,8210,2048,0.2495,0.2495,0.2495,3.9912
|
||||
2,4,8,8,5647,2048,0.3627,0.3627,0.3627,5.8027
|
||||
2,4,8,16,5643,2048,0.3629,0.3629,0.3629,5.8068
|
||||
2,4,8,32,5643,2048,0.3629,0.3629,0.3629,5.8068
|
||||
2,4,8,64,5643,2048,0.3629,0.3629,0.3629,5.8068
|
||||
2,4,8,128,5643,2048,0.3629,0.3629,0.3629,5.8068
|
||||
2,4,16,1,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,4,16,2,16410,2048,0.1248,0.1248,0.1248,1.9968
|
||||
2,4,16,4,10262,2048,0.1996,0.1996,0.1996,3.1931
|
||||
2,4,16,8,9743,2048,0.2102,0.2102,0.2102,3.3632
|
||||
2,4,16,16,9739,2048,0.2103,0.2103,0.2103,3.3646
|
||||
2,4,16,32,9739,2048,0.2103,0.2103,0.2103,3.3646
|
||||
2,4,16,64,9739,2048,0.2103,0.2103,0.2103,3.3646
|
||||
2,4,16,128,9739,2048,0.2103,0.2103,0.2103,3.3646
|
||||
2,8,0,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,8,0,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,8,0,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,8,0,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,8,0,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,0,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,0,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,0,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,1,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,8,1,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,8,1,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,8,1,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,8,1,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,1,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,1,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,1,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,8,2,1,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,8,2,2,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,8,2,4,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,8,2,8,4108,2048,0.4985,0.4987,0.4986,7.9766
|
||||
2,8,2,16,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,8,2,32,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,8,2,64,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,8,2,128,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,8,4,1,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,8,4,2,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,8,4,4,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,8,4,8,4110,2048,0.4983,0.4984,0.4984,7.9727
|
||||
2,8,4,16,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,8,4,32,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,8,4,64,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,8,4,128,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,8,8,1,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,8,8,2,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,8,8,4,8210,2048,0.2495,0.2495,0.2495,3.9912
|
||||
2,8,8,8,4114,2048,0.4978,0.4979,0.4979,7.9650
|
||||
2,8,8,16,2831,2048,0.7234,0.7234,0.7234,11.5747
|
||||
2,8,8,32,2831,2048,0.7234,0.7234,0.7234,11.5747
|
||||
2,8,8,64,2831,2048,0.7234,0.7234,0.7234,11.5747
|
||||
2,8,8,128,2831,2048,0.7234,0.7234,0.7234,11.5747
|
||||
2,8,16,1,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,8,16,2,16410,2048,0.1248,0.1248,0.1248,1.9968
|
||||
2,8,16,4,8218,2048,0.2492,0.2493,0.2492,3.9873
|
||||
2,8,16,8,4887,2048,0.4191,0.4192,0.4191,6.7051
|
||||
2,8,16,16,4879,2048,0.4198,0.4198,0.4198,6.7161
|
||||
2,8,16,32,4879,2048,0.4198,0.4198,0.4198,6.7161
|
||||
2,8,16,64,4879,2048,0.4198,0.4198,0.4198,6.7161
|
||||
2,8,16,128,4879,2048,0.4198,0.4198,0.4198,6.7161
|
||||
2,16,0,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,16,0,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,16,0,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,16,0,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,16,0,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,0,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,0,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,0,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,1,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,16,1,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,16,1,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,16,1,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,16,1,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,1,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,1,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,1,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,16,2,1,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,16,2,2,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,16,2,4,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,16,2,8,4108,2048,0.4985,0.4987,0.4986,7.9766
|
||||
2,16,2,16,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,16,2,32,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,16,2,64,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,16,2,128,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,16,4,1,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,16,4,2,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,16,4,4,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,16,4,8,4110,2048,0.4983,0.4984,0.4984,7.9727
|
||||
2,16,4,16,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,16,4,32,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,16,4,64,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,16,4,128,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,16,8,1,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,16,8,2,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,16,8,4,8210,2048,0.2495,0.2495,0.2495,3.9912
|
||||
2,16,8,8,4114,2048,0.4978,0.4979,0.4979,7.9650
|
||||
2,16,8,16,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,16,8,32,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,16,8,64,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,16,8,128,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,16,16,1,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,16,16,2,16410,2048,0.1248,0.1248,0.1248,1.9968
|
||||
2,16,16,4,8218,2048,0.2492,0.2493,0.2492,3.9873
|
||||
2,16,16,8,4122,2048,0.4968,0.4970,0.4969,7.9495
|
||||
2,16,16,16,2455,2048,0.8342,0.8342,0.8342,13.3475
|
||||
2,16,16,32,2455,2048,0.8342,0.8342,0.8342,13.3475
|
||||
2,16,16,64,2455,2048,0.8342,0.8342,0.8342,13.3475
|
||||
2,16,16,128,2455,2048,0.8342,0.8342,0.8342,13.3475
|
||||
2,32,0,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,32,0,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,32,0,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,32,0,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,32,0,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,0,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,0,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,0,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,1,1,32779,2048,0.0625,0.0625,0.0625,0.9997
|
||||
2,32,1,2,16395,2048,0.1249,0.1249,0.1249,1.9987
|
||||
2,32,1,4,8203,2048,0.2497,0.2497,0.2497,3.9946
|
||||
2,32,1,8,4107,2048,0.4987,0.4988,0.4987,7.9786
|
||||
2,32,1,16,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,1,32,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,1,64,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,1,128,2059,2048,0.9947,0.9947,0.9947,15.9145
|
||||
2,32,2,1,32780,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,32,2,2,16396,2048,0.1249,0.1249,0.1249,1.9985
|
||||
2,32,2,4,8204,2048,0.2496,0.2497,0.2497,3.9941
|
||||
2,32,2,8,4108,2048,0.4985,0.4987,0.4986,7.9766
|
||||
2,32,2,16,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,32,2,32,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,32,2,64,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,32,2,128,2060,2048,0.9942,0.9942,0.9942,15.9068
|
||||
2,32,4,1,32782,2048,0.0625,0.0625,0.0625,0.9996
|
||||
2,32,4,2,16398,2048,0.1249,0.1249,0.1249,1.9983
|
||||
2,32,4,4,8206,2048,0.2496,0.2496,0.2496,3.9932
|
||||
2,32,4,8,4110,2048,0.4983,0.4984,0.4984,7.9727
|
||||
2,32,4,16,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,32,4,32,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,32,4,64,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,32,4,128,2062,2048,0.9932,0.9932,0.9932,15.8914
|
||||
2,32,8,1,32786,2048,0.0625,0.0625,0.0625,0.9995
|
||||
2,32,8,2,16402,2048,0.1249,0.1249,0.1249,1.9978
|
||||
2,32,8,4,8210,2048,0.2495,0.2495,0.2495,3.9912
|
||||
2,32,8,8,4114,2048,0.4978,0.4979,0.4979,7.9650
|
||||
2,32,8,16,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,32,8,32,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,32,8,64,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,32,8,128,2066,2048,0.9913,0.9913,0.9913,15.8606
|
||||
2,32,16,1,32794,2048,0.0624,0.0625,0.0625,0.9992
|
||||
2,32,16,2,16410,2048,0.1248,0.1248,0.1248,1.9968
|
||||
2,32,16,4,8218,2048,0.2492,0.2493,0.2492,3.9873
|
||||
2,32,16,8,4122,2048,0.4968,0.4970,0.4969,7.9495
|
||||
2,32,16,16,2074,2048,0.9875,0.9875,0.9875,15.7994
|
||||
2,32,16,32,2074,2048,0.9875,0.9875,0.9875,15.7994
|
||||
2,32,16,64,2074,2048,0.9875,0.9875,0.9875,15.7994
|
||||
2,32,16,128,2074,2048,0.9875,0.9875,0.9875,15.7994
|
||||
|
@@ -0,0 +1,85 @@
|
||||
# NMS STEP11 — Real Weight Prefetch & Latency Hiding: Final Report
|
||||
|
||||
Full raw data: `nms_prefetch_sweep.csv` (this dir),
|
||||
`experiments/EXP-0023/weight_prefetch_ideal_sweep.csv`. Full narrative:
|
||||
`hardware/v2/logs/experiments.log` (EXP-0023, EXP-0024),
|
||||
`decisions.log` (DEC-0023), `errors.log` (ERR-0015).
|
||||
|
||||
## Final comparison table
|
||||
|
||||
All rows below are the real, official D-Stress workload (256
|
||||
independent neurons, 128 inputs / 16 tiles each, one shared input
|
||||
activation vector) through the real, unmodified V1 PSRAM chain.
|
||||
Classification: RTL SIMULATION cycles + POST-P&R MEASURED Fmax/resources,
|
||||
never mixed with a theoretical or ideal-memory number.
|
||||
|
||||
| Configuration | N_SLOTS | PFD | Cycles | Weight stall | Prefetch effectiveness | Sustained MAC/cycle | Utilization (% of theoretical) | LUT4 | FF | BRAM | Fmax |
|
||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||
| Current NMS (baseline, no prefetch engine) | 2 | n/a | 185645 | 92.5% | 0.0% | 0.1765 | 1.10% | 1948 | 3522 | 0 | 93.10 MHz |
|
||||
| NMS + weight prefetch | 1 | 1 (control) | 181489 | 87.91% | 0.02% | 0.1806 | 2.26% | — | — | — | — |
|
||||
| NMS + weight prefetch | 1 | **2** | 162876 | 86.44% | 0.39% | 0.2012 | 2.52% | 1333 | 2245 | 0 | 132.26 MHz |
|
||||
| NMS + weight prefetch | 1 | 8 | 162876 | 86.44% | 0.39% | 0.2012 | 2.52% | 1464 | 2245 | 0 | 137.76 MHz |
|
||||
| NMS + weight prefetch | 2 | 1 (control) | 185410 | 93.32% | 0.78% | 0.1767 | 1.10% | — | — | — | — |
|
||||
| NMS + weight prefetch | 2 | **2** | 185408 | 93.32% | 0.78% | 0.1767 | 1.10% | 1941 | 3449 | 0 | 97.16 MHz |
|
||||
| NMS + weight prefetch | 2 | 8 | 185398 | 93.32% | 0.78% | 0.1767 | 1.10% | 1908 | 3449 | 0 | 95.25 MHz |
|
||||
| NMS + weight prefetch | 2 | 16 | 185390 | 93.33% | 0.78% | 0.1768 | 1.11% | — | — | — | — |
|
||||
|
||||
(Theoretical MAC/cycle: 8 for N_SLOTS=1, 16 for N_SLOTS=2. PFD=4 and
|
||||
PFD=16 rows at N_SLOTS=1, and PFD=4 at N_SLOTS=2, are omitted here
|
||||
since they are measurement-identical to their neighbors — see the full
|
||||
CSV for every point actually run.)
|
||||
|
||||
## The nine questions, answered directly
|
||||
|
||||
1. **Minimum useful PREFETCH_DISTANCE**: **PFD=2**. Every PFD from 2
|
||||
to 16 is measurement-identical at both N_SLOTS=1 and N_SLOTS=2 —
|
||||
there is no additional benefit from buffering deeper. PFD=1 is
|
||||
measurably worse (see the N_SLOTS=1 rows above).
|
||||
2. **Maximum sustained MAC/cycle achieved**: 0.2012 (N_SLOTS=1,
|
||||
PFD≥2) and 0.1768 (N_SLOTS=2, PFD=16) — essentially unchanged from
|
||||
the pre-STEP11 baseline (0.1765 at N_SLOTS=2).
|
||||
3. **Processor utilization**: 2.5% (N=1) / 1.1% (N=2) of theoretical
|
||||
peak — far below the 90% target at both configurations.
|
||||
4. **Remaining weight stall**: 86.4% (N=1) / 93.3% (N=2) of total
|
||||
execution cycles — barely moved from the baseline's 92.5%.
|
||||
5. **Is PSRAM bandwidth now sufficient?** **No.** Reaching the 90%
|
||||
target would require roughly **36×** (N=1) to **82×** (N=2) more
|
||||
real PSRAM bandwidth than is currently achieved. This is a hard,
|
||||
physical ceiling, not a scheduling artifact.
|
||||
6. **Is PSRAM latency now sufficiently hidden?** **Partially, only at
|
||||
N_SLOTS=1** — the engine measurably eliminates the old per-tile
|
||||
control-plane restart gap (−10.3% cycles). **No, at N_SLOTS=2** —
|
||||
the shared port is already saturated (90.5% busy, identical to the
|
||||
baseline) by natural two-slot contention before any lookahead
|
||||
scheme gets a chance to act; there is no idle time left to hide
|
||||
latency into.
|
||||
7. **Resource cost**: resource-neutral to slightly cheaper than the
|
||||
baseline (LUT4 −2.1%, FF −2.1% at N=2/PFD=8) — the new engine does
|
||||
not trade memory-bandwidth problems for a combinational-controller
|
||||
problem.
|
||||
8. **Fmax post-P&R**: 132–138 MHz (N=1), 95–97 MHz (N=2) — all PASS at
|
||||
the 80 MHz target, and slightly *higher* than the baseline's 93.10
|
||||
MHz at N=2 (+2.3% to +4.4%).
|
||||
9. **Has NMS achieved the original memory-system objective?** **No,
|
||||
not at N_SLOTS=2**, this project's own primary reference
|
||||
configuration. **Partially, at N_SLOTS=1**, where a real (if small)
|
||||
improvement was proven, bounded by real PSRAM bandwidth rather than
|
||||
latency.
|
||||
|
||||
## Final decision
|
||||
|
||||
**Outcome B (N_SLOTS=1, partial success) / Outcome C (N_SLOTS=2,
|
||||
failure against the 90% criterion).** See DEC-0023 for full reasoning.
|
||||
The mechanism is proven correct (bit-exact throughout, continuous
|
||||
cross-tile-boundary word streaming verified in isolation and in the
|
||||
real integration) and measurably helps when the PSRAM port has spare
|
||||
capacity (N_SLOTS=1). It provides **no measurable benefit** at
|
||||
N_SLOTS=2 because the single physical PSRAM port is already saturated
|
||||
by cross-slot contention before latency-hiding can act — the honest
|
||||
architectural finding STEP11 was designed to surface. Both
|
||||
`nms_neural_multiprocessor.v` (Current NMS) and
|
||||
`nms_neural_multiprocessor_pf.v` (+ weight prefetch) are preserved
|
||||
side by side; neither supersedes the other. The evidence-backed next
|
||||
step is real PSRAM bandwidth (wider bus / multiple banks / faster
|
||||
memory), not a further on-chip scheduling redesign — explicitly
|
||||
flagged as future work, not undertaken this round.
|
||||
@@ -0,0 +1,16 @@
|
||||
configuration,n_slots,pfd,latency_class,cycles,psram_util_pct,weight_stall_pct,prefetch_effectiveness_pct,sustained_mac_per_cycle,theoretical_mac_per_cycle,utilization_pct_of_theoretical,fmax_mhz,lut4,ccu2c,ff,dsp,bram,classification
|
||||
current_nms_baseline,2,n/a,real_v1_psram,185645,90.4,92.5,0.0,0.1765,16,1.10,93.10,1948,266,3522,16,0,POST-P&R MEASURED Fmax/resources + RTL SIMULATION cycles (EXP-0022)
|
||||
nms_plus_prefetch,1,1,real_v1_psram,181489,59.3,87.91,0.02,0.1806,8,2.26,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION (EXP-0024)
|
||||
nms_plus_prefetch,1,2,real_v1_psram,162876,66.4,86.44,0.39,0.2012,8,2.52,132.26,1333,203,2245,8,0,POST-P&R MEASURED Fmax/resources + RTL SIMULATION cycles (EXP-0024)
|
||||
nms_plus_prefetch,1,4,real_v1_psram,162876,66.4,86.44,0.39,0.2012,8,2.52,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION (EXP-0024)
|
||||
nms_plus_prefetch,1,8,real_v1_psram,162876,66.4,86.44,0.39,0.2012,8,2.52,137.76,1464,200,2245,8,0,POST-P&R MEASURED Fmax/resources + RTL SIMULATION cycles (EXP-0024)
|
||||
nms_plus_prefetch,1,16,real_v1_psram,162876,66.4,86.44,0.39,0.2012,8,2.52,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION (EXP-0024)
|
||||
nms_plus_prefetch,2,1,real_v1_psram,185410,90.5,93.32,0.78,0.1767,16,1.10,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION (EXP-0024)
|
||||
nms_plus_prefetch,2,2,real_v1_psram,185408,90.5,93.32,0.78,0.1767,16,1.10,97.16,1941,368,3449,16,0,POST-P&R MEASURED Fmax/resources + RTL SIMULATION cycles (EXP-0024)
|
||||
nms_plus_prefetch,2,4,real_v1_psram,185404,90.5,93.32,0.78,0.1767,16,1.10,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION (EXP-0024)
|
||||
nms_plus_prefetch,2,8,real_v1_psram,185398,90.5,93.32,0.78,0.1767,16,1.10,95.25,1908,362,3449,16,0,POST-P&R MEASURED Fmax/resources + RTL SIMULATION cycles (EXP-0024)
|
||||
nms_plus_prefetch,2,16,real_v1_psram,185390,90.5,93.33,0.78,0.1768,16,1.11,n/a,n/a,n/a,n/a,n/a,n/a,RTL SIMULATION (EXP-0024)
|
||||
ideal_memory_pfd_sweep,1_or_2,1,latency_0-1_cyc,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,IDEAL-MEMORY SIMULATION (EXP-0023) -- min PFD for >=90% util at latency 0-1 is PFD=4
|
||||
ideal_memory_pfd_sweep,1_or_2,1,latency_2-4_cyc,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,IDEAL-MEMORY SIMULATION (EXP-0023) -- min PFD for >=90% util at latency 2-4 is PFD=8
|
||||
ideal_memory_pfd_sweep,1_or_2,1,latency_8_cyc,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,IDEAL-MEMORY SIMULATION (EXP-0023) -- min PFD for >=90% util at latency 8 is PFD=16
|
||||
ideal_memory_pfd_sweep,1_or_2,1,latency_16_cyc,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,n/a,IDEAL-MEMORY SIMULATION (EXP-0023) -- min PFD for >=90% util at latency 16 is PFD=32
|
||||
|
Reference in New Issue
Block a user