Skip to content

Commit bbc2120

Browse files
committed
Add sudo for installing dependencies
1 parent bb701d5 commit bbc2120

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/run-benchmarks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ cd "${BENCHMARK_DIR}"
100100
git checkout ${GIT_COMMIT}
101101

102102
if [[ "${APT_INSTALL_DEPS}" = true ]]; then
103-
./apt-install-dependencies.sh
103+
sudo ./apt-install-dependencies.sh
104104
fi
105105

106106
if [ "${CLEAN}" = true ]; then

scripts/run-polybench.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fi
7878

7979
export PATH=${JLM_BIN_DIR}:${PATH}
8080
cd ${BENCHMARK_DIR}
81-
git checkout ${GIT_COMMIT}
81+
#git checkout ${GIT_COMMIT}
8282
make clean
8383
echo "make ${JLC} -j ${PARALLEL_THREADS} -O ${BENCHMARK_RUN_TARGET}"
8484
make ${JLC} -j ${PARALLEL_THREADS} -O ${BENCHMARK_RUN_TARGET}

0 commit comments

Comments
 (0)