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>
51 lines
1.2 KiB
Bash
Executable File
51 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Plan A: Minimal bench/docs reorg into benchmarks/{src,bin,logs,scripts}
|
|
# Non-destructive: backs up to .reorg_backup if targets exist.
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
cd "$ROOT_DIR"
|
|
|
|
mkdir -p benchmarks/{src,bin,logs,scripts}
|
|
|
|
backup() {
|
|
local f="$1"; local dest="$2";
|
|
if [[ -e "$f" ]]; then
|
|
if [[ -e "$dest/$(basename "$f")" ]]; then
|
|
mkdir -p .reorg_backup
|
|
mv -f "$f" .reorg_backup/
|
|
else
|
|
mv -f "$f" "$dest/"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
# Source files (if exist)
|
|
for f in bench_allocators.c memset_test.c pf_test.c test_*.c; do
|
|
for ff in $f; do
|
|
[[ -e "$ff" ]] && backup "$ff" benchmarks/src
|
|
done
|
|
done
|
|
|
|
# Binaries
|
|
for f in bench_allocators bench_allocators_hakmem bench_allocators_system memset_test pf_test test_*; do
|
|
for ff in $f; do
|
|
[[ -x "$ff" ]] && backup "$ff" benchmarks/bin
|
|
done
|
|
done
|
|
|
|
# Logs (simple *.log)
|
|
shopt -s nullglob
|
|
for ff in *.log; do
|
|
backup "$ff" benchmarks/logs
|
|
done
|
|
|
|
# Scripts (runner)
|
|
for f in bench_runner.sh run_full_benchmark.sh; do
|
|
[[ -e "$f" ]] && backup "$f" benchmarks/scripts
|
|
done
|
|
|
|
echo "Reorg Plan A completed. See benchmarks/{src,bin,logs,scripts} and .reorg_backup/ if any conflicts."
|
|
|