Alex1343543 commited on
Commit
e47c20a
·
verified ·
1 Parent(s): b04362a

Standardize measured performance comparison

Browse files
Files changed (1) hide show
  1. README.md +13 -4
README.md CHANGED
@@ -52,13 +52,22 @@ download only the full input-major checkpoint.
52
  On a 32 GiB M1 Pro, using the same prompt, seed, 512x512 canvas, eight passes,
53
  50 blocks, and output settings:
54
 
55
- | path | transformer | total generation | gain vs regular |
56
  |---|---:|---:|---:|
57
- | regular output-major | 253.9 s | 278.7 s | baseline |
58
- | input-major | 231.4 s | 256.5 s | **8.9% transformer; 8.0% total (1.09x)** |
 
 
59
 
60
  The generated images were identical. Actual gains vary with canvas size,
61
- memory pressure, and Mac.
 
 
 
 
 
 
 
62
 
63
  ## Why this merge was made and republished
64
 
 
52
  On a 32 GiB M1 Pro, using the same prompt, seed, 512x512 canvas, eight passes,
53
  50 blocks, and output settings:
54
 
55
+ | comparison | regular / baseline | optimized path | resulting gain |
56
  |---|---:|---:|---:|
57
+ | transformer layout, matched eight-pass run | 253.9 s output-major | 231.4 s input-major | **8.9% (1.10x)** |
58
+ | complete generation, matched layout A/B | 278.7 s | 256.5 s | **8.0% (1.09x)** |
59
+ | regular H3 INT8 vs 8-step Turbo INT8, published RTX 4070 mean | 272.97 s / 20 passes | 130.66 s / 8 passes | **52.1% (2.09x)** |
60
+ | regular H3 INT8 vs Turbo INT8 denoising work | 20 passes / 1,000 block evaluations | 8 passes / 400 block evaluations | **60% less work; 2.5x fewer passes** |
61
 
62
  The generated images were identical. Actual gains vary with canvas size,
63
+ memory pressure, and Mac. The external wall-time row comes from a reproducible
64
+ [three-pattern RTX 4070 benchmark](https://github.com/sepiablue-ai/minimax-h3-turbo-lora-benchmark/tree/main/202608_larry_vs_lightx2v)
65
+ that used the regular `minimax_h3_fl2va_pruned_int8_convrot.safetensors` as its
66
+ 272.97-second baseline. Its two published eight-step Turbo means were 130.30
67
+ and 131.02 seconds; their 130.66-second mean is shown above. That is external
68
+ NVIDIA/ComfyUI evidence, not a projected M1 time. The work-count row is exact,
69
+ and the Turbo checkpoint is intended to reach roughly the regular model's
70
+ 20-pass fidelity in 6–8 passes.
71
 
72
  ## Why this merge was made and republished
73