Skip to content
Merged
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
58 changes: 58 additions & 0 deletions numa_streams/numa_streams.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"dependencies": {
"amzn": [
"git",
"gcc",
"bc",
"zip",
"unzip",
"numactl",
"wget",
"gcc-c++",
"autoconf",
"hwloc",
"hwloc-gui",
"libomp"
],
"rhel": [
"git",
"gcc",
"bc",
"perf",
"zip",
"unzip",
"numactl",
"wget",
"gcc-c++",
"autoconf",
"hwloc",
"hwloc-gui",
"libomp"
],
"sles": [
"git",
"gcc",
"make",
"bc",
"perf",
"unzip",
"zip",
"libnuma1",
"numactl"
],
"ubuntu": [
"git",
"bc",
"zip",
"unzip",
"numactl",
"libnuma-dev",
"g++",
"autoconf",
"hwloc",
"libomp5-20"
],
"pip": [
]
}
}
1 change: 0 additions & 1 deletion numa_streams/numa_streams_extra/run_numa_stream
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ setup_sizing()

install_numa_streams()
{
dnf install wget gcc gcc-c++ autoconf hwloc hwloc-gui libomp -y
git clone https://github.com/jemalloc/jemalloc.git
pushd jemalloc > /dev/null
./autogen.sh
Expand Down
6 changes: 6 additions & 0 deletions numa_streams/numa_streams_run
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,12 @@ if [ ! -f "/tmp/${test_name}.out" ]; then
exit $?
fi

${TOOLS_BIN}/package_tool --wrapper_config ${run_dir}/numa_streams.json --no_packages $to_no_pkg_install
if [[ $? -ne 0 ]]; then
echo Error: Package installation using ${TOOLS_BIN}/package_tool was unsuccessful.
exit 1
fi

#
# Define user options
#
Expand Down