Major Features: - Debug counter infrastructure for Refill Stage tracking - Free Pipeline counters (ss_local, ss_remote, tls_sll) - Diagnostic counters for early return analysis - Unified larson.sh benchmark runner with profiles - Phase 6-3 regression analysis documentation Bug Fixes: - Fix SuperSlab disabled by default (HAKMEM_TINY_USE_SUPERSLAB) - Fix profile variable naming consistency - Add .gitignore patterns for large files Performance: - Phase 6-3: 4.79 M ops/s (has OOM risk) - With SuperSlab: 3.13 M ops/s (+19% improvement) This is a clean repository without large log files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
734 B
Bash
24 lines
734 B
Bash
#!/usr/bin/env bash
|
|
# Best-known Tiny Hot settings for this machine (baseline)
|
|
# Pattern: 32B / batch=100 / cycles=60000
|
|
# Front: SLL-first, TLS list ON (baseline), HotMag OFF
|
|
|
|
export HAKMEM_TINY_TRACE_RING=0
|
|
export HAKMEM_SAFE_FREE=0
|
|
|
|
export HAKMEM_TINY_TLS_SLL=1
|
|
export HAKMEM_TINY_TLS_LIST=0 # this machine: SLL-only faster (~+21%)
|
|
export HAKMEM_TINY_HOTMAG=0
|
|
export HAKMEM_SLL_MULTIPLIER=1
|
|
export HAKMEM_TINY_FAST_CAP=16
|
|
export HAKMEM_TINY_REFILL_COUNT_HOT=64 # A/B with {48,64}
|
|
|
|
# Superslab/publish pipeline enabled (harmless for tiny_hot bench)
|
|
export HAKMEM_TINY_USE_SUPERSLAB=1
|
|
export HAKMEM_TINY_SS_ADOPT=1
|
|
|
|
# Bench defaults (informational)
|
|
export TINY_HOT_SIZE=32
|
|
export TINY_HOT_BATCH=100
|
|
export TINY_HOT_CYCLES=60000
|