Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed -static from the Makefile. #37

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
@@ -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)
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