Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# limitations under the License.
#
CFLAGS=-std=gnu99 -g -O3 -fomit-frame-pointer -fno-unroll-loops -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wmissing-declarations -Wnested-externs -Wpointer-arith -W -Wno-unused-parameter -Werror -pthread -Wno-tautological-compare
LDFLAGS=-g -O3 -static -pthread
LDFLAGS=-g -O3 -pthread
LDLIBS=-lrt -lm

ARCH ?= $(shell uname -m)
Expand Down
14 changes: 14 additions & 0 deletions run_multichase.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#/bin/bash
printf "%4s %7s %7s %7s %7s\n" "CPU" "NODE0" "NODE1" "NODE2" "NODE3"

for cpu in $(seq 0 24 184)
do
printf "%4s " ${cpu}
for numa in $(seq 0 3)
do
result=$(numactl -C ${cpu} -m ${numa} ./multichase -s 512 -m 1g -n 120)
printf "%7.1f " ${result}
done
printf "\n"
done