Add Vincent reproducer for cholesky

This commit is contained in:
2026-01-29 14:31:21 +01:00
parent 9bae257774
commit 0775e1ce73
4 changed files with 127 additions and 0 deletions

20
vincent/chol/run.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
if [ -z "$1" ]; then
exec nix develop -c $0 run
#exec srun -J chol -p fox --exclusive nix develop -c $0 run
fi
set -eux
size=$((32*1024))
bs=512
b6dir=$(which b6_cholesky_nodes | awk -F/ '{print $4}')
wdir="out/$b6dir"
mkdir -p "$wdir"
log="$wdir/b6_cholesky_nodes-$size-$bs.csv"
bigotes -o "$log" -- b6_cholesky_nodes $size $bs
ministat -w80 "$log"