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>
29 lines
888 B
Bash
29 lines
888 B
Bash
# Profile: Tiny Hot Throughput (SLL deep for >=128B)
|
|
# Purpose: Increase TLS SLL capacity for classes 4..7 to reduce refill frequency
|
|
# Use: scripts/larson.sh hakmem --profile tinyhot_tput_sll256 2 4
|
|
|
|
# Base
|
|
export HAKMEM_TINY_FAST_PATH=1
|
|
export HAKMEM_USE_SUPERSLAB=1
|
|
export HAKMEM_TINY_SS_ADOPT=0
|
|
export HAKMEM_TINY_MUST_ADOPT=0
|
|
|
|
# TLS SLL capacity overrides (per-class)
|
|
export HAKMEM_TINY_SLL_CAP_C4=256
|
|
export HAKMEM_TINY_SLL_CAP_C5=256
|
|
export HAKMEM_TINY_SLL_CAP_C6=256
|
|
export HAKMEM_TINY_SLL_CAP_C7=256
|
|
|
|
# Keep magazine moderate
|
|
export HAKMEM_TINY_TLS_LIST_CAP=32
|
|
export HAKMEM_TINY_TLS_HOT_MAG_CAP=128
|
|
|
|
# Misc
|
|
export HAKMEM_TINY_TRACE_RING=0
|
|
export HAKMEM_TINY_SAFE_FREE=0
|
|
export HAKMEM_TINY_REMOTE_GUARD=0
|
|
export HAKMEM_DEBUG_COUNTERS=0
|
|
export HAKMEM_TINY_PHASE6_BOX_REFACTOR=1
|
|
export HAKMEM_TINY_USE_SUPERSLAB=1
|
|
export HAKMEM_USE_SUPERSLAB=1 # legacy alias for scripts display
|