Skip to content
Open
Show file tree
Hide file tree
Changes from 52 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
da6e22e
Clean billing calculator code initial commit
mapsacosta Mar 9, 2021
5d383c0
adding launcher and cvmfeexec wrapper for Stampede2
hufnagel Jul 12, 2021
3203fcd
Merge pull request #1 from hufnagel/stampede2
mapsacosta Jul 12, 2021
8486bba
add Frontera launcher and cvmfs wrapper
hufnagel Jul 15, 2021
62020dc
Merge pull request #2 from hufnagel/Frontera
mapsacosta Jul 19, 2021
6dcae48
Remove billing-calculator in favor of https://github.com/HEPCloud/bil…
mapsacosta Jul 19, 2021
710830e
adding Theta specific files
hufnagel Jul 31, 2021
43629fc
added site_specific to the list of projects
mambelli Sep 23, 2021
f962a70
Merge pull request #3 from hufnagel/Theta
mambelli Oct 29, 2021
0b6790a
Add README to de_monitoring
shreyb Feb 9, 2022
f102ee0
Added filebeat config
shreyb Feb 10, 2022
2b981f7
Added logstash digest config
shreyb Feb 10, 2022
654127d
Added elasticsearch storage logstash (store/)
shreyb Feb 10, 2022
96b0703
Moved filebeat config into its own directory
shreyb Feb 10, 2022
53dca82
Merge pull request #4 from shreyb/master
mambelli Feb 10, 2022
aea1f37
Add template configuration files for integration test
vitodb Feb 17, 2022
e9d76fc
Merge pull request #5 from vitodb/master
vitodb Feb 17, 2022
9395c19
Reorganized configuration templates and added condor_mapfile
vitodb Feb 17, 2022
93dd698
Merge pull request #6 from vitodb/master
vitodb Feb 17, 2022
6e36ffa
Added instructions for basic setup of filebeat
shreyb Feb 17, 2022
8126e7b
Merge pull request #7 from shreyb/master
shreyb Feb 17, 2022
4fbdd74
Added steps for basic setup of digest topic logstash
shreyb Feb 21, 2022
7e57dc7
Merge branch 'HEPCloud:master' into master
shreyb Feb 21, 2022
b05f660
Added steps for basic setup of digest topic logstash
shreyb Feb 21, 2022
84ca4ef
Added steps for basic setup of store logstash
shreyb Feb 24, 2022
107f593
Merge branch 'master_copy'
shreyb Feb 24, 2022
62825c1
Merge pull request #9 from shreyb/master
shreyb Feb 24, 2022
4508dc9
Update README.md
vitodb Feb 24, 2022
e52b10d
update DNs
vitodb May 31, 2022
f7dccb6
Merge pull request #10 from vitodb/master
vitodb May 31, 2022
fd69052
update proxy path
vitodb Jun 1, 2022
21030aa
Merge pull request #11 from vitodb/master
vitodb Jun 1, 2022
7a0e7c7
Adding folder with DE configuration templates
vitodb Jul 21, 2022
3aac1ab
test Shrijan
shrijan-swaminathan Aug 5, 2022
85acd04
swamina7: cloud benchmarking tarball with scripts
Aug 5, 2022
4ad6789
Merge branch 'cloudBenchmarking' of https://github.com/HEPCloud/contr…
Aug 5, 2022
b5f43a3
swamina7: benchmarking script creation
Aug 5, 2022
4c3bb58
swamina7: HS06 results for AWS and Google
Aug 5, 2022
98cf5ee
swamina7: spot price changed files
Aug 12, 2022
8fce58d
Merge pull request #12 from vitodb/config_template
mambelli Aug 18, 2022
175ce27
Update DE configs for master branch
vitodb Sep 22, 2022
540eb00
Merge pull request #13 from vitodb/vito_config_updates
vitodb Sep 22, 2022
0389b0d
Create test.txt
shrijan-swaminathan Jan 3, 2023
567984a
Add files via upload
shrijan-swaminathan Jan 3, 2023
e0449ea
Add files via upload
shrijan-swaminathan Jan 3, 2023
a3bfc7a
Delete test.txt
shrijan-swaminathan Jan 3, 2023
6ae029e
Move existing DE configuration files to EL7 folder
Jun 9, 2023
3cd1769
Add DE configuration templates for EL9
Jun 9, 2023
75004d7
Used different names for the TEMPLATE elements and added explanation
mambelli Jul 4, 2023
355f7b7
Fixed Typo
skylerfoster67 Jul 5, 2023
5cf5bbc
Added sample prometheus configuration for decisionengine metrics
shreyb Aug 31, 2023
1007252
Corrected default metrics path
shreyb Aug 31, 2023
fe76a11
Merge branch 'master' into master
shreyb Nov 9, 2023
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ One line added to the following list will help identify your project.

Projects:
* _example\_ : example project

* site_specific: scripts used to run on some sites (Frontera, Stampede2)

**NB This repository is public, do not add any credential, password, or private information.**
30 changes: 30 additions & 0 deletions automated_benchmarking/atlasgenscriptforgwmsShrijanSwaminathan.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/sh

glidein_config="$1"

# find error reporting helper script
error_gen=`grep '^ERROR_GEN_PATH ' "$glidein_config" | awk '{print $2}'`

cd "$TMP"
OUTPUT_DIR="$TMP/atlasgenbmk"

if [ ! -d "$OUTPUT_DIR" ]; then
echo "$OUTPUT_DIR" does not exist. Trying to create it...
if ! mkdir -p "$OUTPUT_DIR"; then
"$error_gen" -error "atlasgenbmk.sh" "WN_Resource" "Could not create $OUTPUT_DIR"
exit 1
fi
fi

COUNT=`cat /proc/cpuinfo | grep -c processor`
singularity run -i -c -e -B "$OUTPUT_DIR":/results /cvmfs/unpacked.cern.ch/gitlab-registry.cern.ch/hep-benchmarks/hep-workloads/atlas-gen-bmk:v2.1 -W --threads $COUNT --events 10
#for future use, change the events to something else other than 10. 10 is just to test if the script works well under gwms

if [ -f "$OUTPUT_DIR/atlas-gen_summary_new.json" ]; then
cat "$OUTPUT_DIR"/atlas-gen_summary_new.json
else
"$error_gen" -error "atlasgenbmk.sh" "WN_Resource" "Could not find $OUTPUT_DIR/atlas-gen_summary_new.json"
exit 1
fi
"$error_gen" -ok "atlasgenbmk.sh"
exit 0
97 changes: 97 additions & 0 deletions automated_benchmarking/run_benchmark_for_singularity.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
#!/bin/bash
#
# This script prepares the environment to build
# the container to run the test
#
# The only parameter that needs to be set is the first value
# BASE_DIR. This directory needs to exist, and should be
# on a filesystem with at least 10GB of free disk space
#

#### SET THIS VALUE ####

export OUTPUT_DIR=/opt/hepspec/output

cat - << EOF

This script will download and run the hepspec-test suite.

IMPORTANT NOTE: This system must have the 'extra'
repo enabled or this will not run.

The script is currently set to output in this directory:

$OUTPUT_DIR

To change this, edit the script and modify the
value of OUTPUT_DIR at the top of the script.

Press [Enter] to continue, or ctrl-C to exit.
EOF
read blah

########################

if [[ ! -v OUTPUT_DIR ]]; then
echo "OUTPUT_DIR is not set"
exit 1
fi

if [[ -z $OUTPUT_DIR ]]; then
echo "OUTPUT_DIR is set to the empty string"
exit 1
fi


echo "OUTPUT_DIR is set to: $OUTPUT_DIR"

if [ ! -d $OUTPUT_DIR ]; then
echo $OUTPUT_DIR does not exist. Trying to create it...
mkdir -p $OUTPUT_DIR
"run_benchmark.sh" [readonly] 100L, 2398C 1,1 Top fi

rpm -q podman buildah curl screen > /dev/null
if [[ $? -ne 0 ]]; then

cat > /etc/yum.repos.d/sl-extras.repo << EOF
[sl-extras]
Name=Scientific Linux Extras - $basearch
baseurl=http://linux1.fnal.gov/linux/scientific/7x/external_products/extras/\$basearch/

enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-sl file:///etc/pki/rpm-gpg/RPM-GPG-KEY-sl7

name=SL Extras
priority=30
EOF

subscription-manager config --rhsm.manage_repos=0
yum clean all
yum -y install podman buildah curl screen

fi

echo

echo Retrieving hepspec image from publicregistry.fnal.gov

echo Pulling image...

# podman pull publicregistry.fnal.gov/ssi_images/hepspec-benchmark
singularity build --sandbox --fix-perms hepspec-benchmark docker://publicregistry.fnal.gov/ssi_images/hepspec-benchmark

echo
echo Starting benchmark

COUNT=`cat /proc/cpuinfo | grep -c processor`
for ((i=1;i<=$COUNT;i++));
do
# OUTDIR=$OUTPUT_DIR/run_${i}
OUTDIR=$OUTPUT_DIR/hepspec-overlay-$i
mkdir $OUTDIR
echo "Starting container ${i}.."
# podman run -d --rm --name hepspec_${i} -v $OUTDIR:/opt/hepspec/hepspec2006/install/result/ hepspec-benchmark /opt/hepspec/start.sh
singularity exec --overlay hepspec-overlay-$i -B $OUTDIR:/opt/hepspec/hepspec2006/install/result/ hepspec-benchmark /opt/hepspec/start.sh

done
20 changes: 20 additions & 0 deletions cloud_benchmarking/full_benchmark_final.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
echo "Enter IP to benchmark: "
read ip_fin
echo "Enter instance name: (E.g: M4_4xlarge)"
read inst_name
echo "Enter security key: "
read sec_key

#copy dependencies over to machine that is benchmarking
cd
scp -i $sec_key.pem oldbenchmark.tar run_DB12.sh full_benchmark_for_AWS.sh root@$ip_fin:/root
scp -i $sec_key.pem use_lvm_for_cms_wn_nvme root@$ip_fin:/usr/libexec/gco_startup/
# ssh -i $sec_key.pem root@$ip_fin

#run files on other machine
ssh -i $sec_key.pem root@$ip_fin bash full_benchmark_for_AWS.sh

#save results in a corresponding folder on this machine
cd
scp -i $sec_key.pem root@$ip_fin:~/benchmark.txt ./results/$inst_name/benchmark
scp -i $sec_key.pem root@$ip_fin:/root/workdir/suite_results/run_*/bmkrun_report.json ./results/$inst_name/bmkrun_report.json
46 changes: 46 additions & 0 deletions cloud_benchmarking/full_benchmark_for_AWS.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Remove autoshutdown
service glideinwms-pilot stop
# Extract all files from old benchmark tar
tar -xvf oldbenchmark.tar

# download git
cd /etc/yum.repos.d/; wget https://cli.github.com/packages/rpm/gh-cli.repo
yum -y install gh
cd

# run use_lvm_for_cms_wn_nvme for machines of 5th gen and above
cd /usr/libexec/gco_startup/
./use_lvm_for_cms_wn_nvme

# move files from container to a place with enough storage
mkdir -p /home/scratchgwms/run/containers
mkdir -p /home/scratchgwms/lib/containers
cd /var/run
ln -s /home/scratchgwms/run/containers containers
cd /var/lib/
ln -s /home/scratchgwms/lib/containers containers
cd

# install podman
yum --disablerepo=epel,osg list podman
yum install -y podman

# run container
podman pull publicregistry.fnal.gov/ssi_images/hepspec-benchmark

bash run_DB12.sh
bash run_benchmark.sh

for i in {1..180}; do
foo=`ps -ef | grep start.sh | grep -v grep`
myrc=$?
if [ $myrc -ne 0 ]
then
echo "Benchmark finished; $myrc"
bash Calc_HS06.sh
exit
else
echo "Benchmark not finished; $myrc"
sleep 160
fi
done
70 changes: 70 additions & 0 deletions cloud_benchmarking/full_benchmark_for_GCloud.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Remove autoshutdown
service glideinwms-pilot stop
# Extract all files from old benchmark tar
tar -xvf oldbenchmark.tar

# download git
cd /etc/yum.repos.d/; wget https://cli.github.com/packages/rpm/gh-cli.repo
yum -y install gh
cd

#install python3
yum -y install python3

# run use_lvm_for_cms_wn_nvme for machines of 5th gen and above
cd /usr/libexec/gco_startup/
./use_lvm_for_cms_wn_nvme

# create a copy of cpuinfo and send it to home directory
cp /proc/cpuinfo ~/

# make a new file system with a new mount disk. Use df to check if the system was mounted
mkfs -t xfs /dev/sdb

## move files from container to a place with enough storage
mkdir -p /home/scratchgwms/run/containers
mkdir -p /home/scratchgwms/lib/containers
cd /var/run
ln -s /home/scratchgwms/run/containers containers
cd /var/lib/
ln -s /home/scratchgwms/lib/containers containers
cd

# install podman
yum --disablerepo=epel,osg list podman
yum install -y podman

# run container
podman pull publicregistry.fnal.gov/ssi_images/hepspec-benchmark

bash run_DB12.sh
bash run_benchmark.sh

#for i in {1..180}; do
# foo=`ps -ef | grep start.sh | grep -v grep`
# myrc=$?
# if [ $myrc -ne 0 ]
# then
# echo "Benchmark finished; $myrc"
# bash Calc_HS06.sh
# exit
# else
# echo "Benchmark not finished; $myrc"
# sleep 160
# fi
#done &

myrc=0
while [ $myrc -eq 0 ] ; do
foo=`ps -ef | grep start.sh | grep -v grep`
myrc=$?
if [ $myrc -ne 0 ]
then
echo "Benchmark finished; $myrc"
bash Calc_HS06.sh
exit
else
echo "Benchmark not finished; $myrc"
sleep 160
fi
done &
11 changes: 11 additions & 0 deletions cloud_benchmarking/results_AWS/C4_4xlarge/benchmark
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Model name: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
Processor/(run) count 16
namd = 10.90625000000000000000
dealII= 20.00625000000000000000
soplex= 20.00625000000000000000
povray= 13.76875000000000000000
omnetpp= 13.76875000000000000000
astar= 9.24062500000000000000
xalancbmk= 14.70625000000000000000
Average per processor: 12.55
Machine total HS06: 200.80
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"host": {"hostname": "ec2-18-212-152-72.compute-1.amazonaws.com", "ip": "18.212.152.72", "tags": {"site": "somesite", "purpose": "TF measurements"}, "SW": {"python_version": "3.6.8", "platform": "Linux-3.10.0-1160.66.1.el7.x86_64-x86_64-with-redhat-7.9-Nitrogen", "singularity": "3.8.7-1.el7"}, "HW": {"CPU": {"Architecture": "x86_64", "CPU_Model": "Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz", "CPU_Family": "6", "CPU_num": 16, "Online_CPUs_list": "0-15", "Threads_per_core": 2, "Cores_per_socket": 8, "Sockets": 1, "Vendor_ID": "GenuineIntel", "Stepping": "2", "CPU_MHz": 2900.05, "CPU_Max_Speed_MHz": -1.0, "CPU_Min_Speed_MHz": -1.0, "BogoMIPS": 5800.0, "L2_cache": "256K", "L3_cache": "25600K", "NUMA_nodes": 1, "NUMA_node0_CPUs": "0-15", "Power_Policy": "not_available", "Power_Driver": "not_available", "Microcode": "0x46", "SMT_Enabled": "1"}, "BIOS": {"Vendor": "Xen", "Version": "4.11.amazon", "Release_data": "08/24/2006"}, "SYSTEM": {"Manufacturer": "Xen", "Product_Name": "HVM domU", "Version": "4.11.amazon", "Product_Serial": "not_available", "Product_Asset_Tag": "not_available", "isVM": true}, "MEMORY": {"dimm1": "16384 MB RAM | Not Specified | Not Specified", "dimm2": "14336 MB RAM | Not Specified | Not Specified", "Mem_Total": 30697404, "Mem_Available": 29730912, "Mem_Swap": 3146748}, "STORAGE": {}}}, "suite": {"version": "v2.2-rc5", "flags": {"mp_num": 16, "run_mode": "singularity"}, "benchmark_version": {"db12": "v0.1"}}, "_id": "c11739d1-ec6c-4d90-b707-9bd23f5164f6", "_timestamp": "2022-06-29T22:00:05Z", "_timestamp_end": "2022-06-29T22:00:30Z", "json_version": "v2.2-rc5", "profiles": {"DB12": {"value": 30.138180635647746, "unit": "est. HS06"}}}
11 changes: 11 additions & 0 deletions cloud_benchmarking/results_AWS/C5_4xlarge/benchmark
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Model name: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
Processor/(run) count 16
namd = 13.33125000000000000000
dealII= 24.23750000000000000000
soplex= 24.23750000000000000000
povray= 17.94375000000000000000
omnetpp= 17.94375000000000000000
astar= 11.28125000000000000000
xalancbmk= 18.84375000000000000000
Average per processor: 15.64
Machine total HS06: 250.24
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"host": {"hostname": "ec2-54-224-25-92.compute-1.amazonaws.com", "ip": "54.224.25.92", "tags": {"site": "somesite", "purpose": "TF measurements"}, "SW": {"python_version": "3.6.8", "platform": "Linux-3.10.0-1160.66.1.el7.x86_64-x86_64-with-redhat-7.9-Nitrogen", "singularity": "3.8.7-1.el7"}, "HW": {"CPU": {"Architecture": "x86_64", "CPU_Model": "Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz", "CPU_Family": "6", "CPU_num": 16, "Online_CPUs_list": "0-15", "Threads_per_core": 2, "Cores_per_socket": 8, "Sockets": 1, "Vendor_ID": "GenuineIntel", "Stepping": "7", "CPU_MHz": 2999.998, "CPU_Max_Speed_MHz": -1.0, "CPU_Min_Speed_MHz": -1.0, "BogoMIPS": 5999.99, "L2_cache": "1024K", "L3_cache": "36608K", "NUMA_nodes": 1, "NUMA_node0_CPUs": "0-15", "Power_Policy": "not_available", "Power_Driver": "not_available", "Microcode": "0x500320a", "SMT_Enabled": "1"}, "BIOS": {"Vendor": "Amazon EC2", "Version": "1.0", "Release_data": "10/16/2017"}, "SYSTEM": {"Manufacturer": "Amazon EC2", "Product_Name": "c5.4xlarge", "Version": "Not Specified", "Product_Serial": "not_available", "Product_Asset_Tag": "not_available", "isVM": true}, "MEMORY": {"dimm1": "32 GB DDR4 | Not Specified | Not Specified", "Mem_Total": 31959212, "Mem_Available": 30982088, "Mem_Swap": 3146748}, "STORAGE": {}}}, "suite": {"version": "v2.2-rc5", "flags": {"mp_num": 16, "run_mode": "singularity"}, "benchmark_version": {"db12": "v0.1"}}, "_id": "2a277073-35b8-4a4a-88d4-0cb9cc9fb51f", "_timestamp": "2022-07-04T19:26:29Z", "_timestamp_end": "2022-07-04T19:26:54Z", "json_version": "v2.2-rc5", "profiles": {"DB12": {"value": 36.21734047882919, "unit": "est. HS06"}}}
11 changes: 11 additions & 0 deletions cloud_benchmarking/results_AWS/C5a_4xlarge/benchmark
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Model name: AMD EPYC 7R32
Processor/(run) count 16
namd = 10.07000000000000000000
dealII= 21.35625000000000000000
soplex= 21.35625000000000000000
povray= 15.71250000000000000000
omnetpp= 15.71250000000000000000
astar= 10.41250000000000000000
xalancbmk= 16.76250000000000000000
Average per processor: 13.59
Machine total HS06: 217.44
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"host": {"hostname": "ec2-54-81-132-24.compute-1.amazonaws.com", "ip": "54.81.132.24", "tags": {"site": "somesite", "purpose": "TF measurements"}, "SW": {"python_version": "3.6.8", "platform": "Linux-3.10.0-1160.66.1.el7.x86_64-x86_64-with-redhat-7.9-Nitrogen", "singularity": "3.8.7-1.el7"}, "HW": {"CPU": {"Architecture": "x86_64", "CPU_Model": "AMD EPYC 7R32", "CPU_Family": "23", "CPU_num": 16, "Online_CPUs_list": "0-15", "Threads_per_core": 2, "Cores_per_socket": 8, "Sockets": 1, "Vendor_ID": "AuthenticAMD", "Stepping": "0", "CPU_MHz": 2799.786, "CPU_Max_Speed_MHz": -1.0, "CPU_Min_Speed_MHz": -1.0, "BogoMIPS": 5599.57, "L2_cache": "512K", "L3_cache": "16384K", "NUMA_nodes": 1, "NUMA_node0_CPUs": "0-15", "Power_Policy": "not_available", "Power_Driver": "not_available", "Microcode": "0x8301055", "SMT_Enabled": "1"}, "BIOS": {"Vendor": "Amazon EC2", "Version": "1.0", "Release_data": "10/16/2017"}, "SYSTEM": {"Manufacturer": "Amazon EC2", "Product_Name": "c5a.4xlarge", "Version": "Not Specified", "Product_Serial": "not_available", "Product_Asset_Tag": "not_available", "isVM": true}, "MEMORY": {"dimm1": "32 GB DDR4 | Not Specified | Not Specified", "Mem_Total": 32415916, "Mem_Available": 31435976, "Mem_Swap": 3146748}, "STORAGE": {}}}, "suite": {"version": "v2.2-rc5", "flags": {"mp_num": 16, "run_mode": "singularity"}, "benchmark_version": {"db12": "v0.1"}}, "_id": "2603b4c1-9446-4b39-a575-e5e65c27833c", "_timestamp": "2022-07-05T15:36:59Z", "_timestamp_end": "2022-07-05T15:37:32Z", "json_version": "v2.2-rc5", "profiles": {"DB12": {"value": 27.217104236800466, "unit": "est. HS06"}}}
11 changes: 11 additions & 0 deletions cloud_benchmarking/results_AWS/C6a_4xlarge/benchmark
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Model name: AMD EPYC 7R13 Processor
Processor/(run) count 16
namd = 10.40000000000000000000
dealII= 22.91875000000000000000
soplex= 22.91875000000000000000
povray= 16.19375000000000000000
omnetpp= 16.19375000000000000000
astar= 10.65000000000000000000
xalancbmk= 19.17500000000000000000
Average per processor: 14.29
Machine total HS06: 228.64
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"host": {"hostname": "ec2-54-80-250-49.compute-1.amazonaws.com", "ip": "54.80.250.49", "tags": {"site": "somesite", "purpose": "TF measurements"}, "SW": {"python_version": "3.6.8", "platform": "Linux-3.10.0-1160.66.1.el7.x86_64-x86_64-with-redhat-7.9-Nitrogen", "singularity": "3.8.7-1.el7"}, "HW": {"CPU": {"Architecture": "x86_64", "CPU_Model": "AMD EPYC 7R13 Processor", "CPU_Family": "25", "CPU_num": 16, "Online_CPUs_list": "0-15", "Threads_per_core": 2, "Cores_per_socket": 8, "Sockets": 1, "Vendor_ID": "AuthenticAMD", "Stepping": "1", "CPU_MHz": 2649.988, "CPU_Max_Speed_MHz": -1.0, "CPU_Min_Speed_MHz": -1.0, "BogoMIPS": 5299.97, "L2_cache": "512K", "L3_cache": "32768K", "NUMA_nodes": 1, "NUMA_node0_CPUs": "0-15", "Power_Policy": "not_available", "Power_Driver": "not_available", "Microcode": "0xa001173", "SMT_Enabled": "1"}, "BIOS": {"Vendor": "Amazon EC2", "Version": "1.0", "Release_data": "10/16/2017"}, "SYSTEM": {"Manufacturer": "Amazon EC2", "Product_Name": "c6a.4xlarge", "Version": "Not Specified", "Product_Serial": "not_available", "Product_Asset_Tag": "not_available", "isVM": true}, "MEMORY": {"dimm1": "32 GB DDR4 | Not Specified | Not Specified", "Mem_Total": 32071852, "Mem_Available": 31089620, "Mem_Swap": 3146748}, "STORAGE": {}}}, "suite": {"version": "v2.2-rc5", "flags": {"mp_num": 16, "run_mode": "singularity"}, "benchmark_version": {"db12": "v0.1"}}, "_id": "8b942499-9428-450e-8c11-86af28aa3ea0", "_timestamp": "2022-07-05T15:48:49Z", "_timestamp_end": "2022-07-05T15:49:15Z", "json_version": "v2.2-rc5", "profiles": {"DB12": {"value": 36.837022050974454, "unit": "est. HS06"}}}
11 changes: 11 additions & 0 deletions cloud_benchmarking/results_AWS/C6i_4xlarge/benchmark
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Model name: Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz
Processor/(run) count 16
namd = 13.90625000000000000000
dealII= 23.48125000000000000000
soplex= 23.48125000000000000000
povray= 19.35625000000000000000
omnetpp= 19.35625000000000000000
astar= 11.50625000000000000000
xalancbmk= 20.11875000000000000000
Average per processor: 16.28
Machine total HS06: 260.48
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"host": {"hostname": "ec2-54-198-230-233.compute-1.amazonaws.com", "ip": "54.198.230.233", "tags": {"site": "somesite", "purpose": "TF measurements"}, "SW": {"python_version": "3.6.8", "platform": "Linux-3.10.0-1160.66.1.el7.x86_64-x86_64-with-redhat-7.9-Nitrogen", "singularity": "3.8.7-1.el7"}, "HW": {"CPU": {"Architecture": "x86_64", "CPU_Model": "Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz", "CPU_Family": "6", "CPU_num": 16, "Online_CPUs_list": "0-15", "Threads_per_core": 2, "Cores_per_socket": 8, "Sockets": 1, "Vendor_ID": "GenuineIntel", "Stepping": "6", "CPU_MHz": 2899.954, "CPU_Max_Speed_MHz": -1.0, "CPU_Min_Speed_MHz": -1.0, "BogoMIPS": 5799.9, "L2_cache": "1280K", "L3_cache": "55296K", "NUMA_nodes": 1, "NUMA_node0_CPUs": "0-15", "Power_Policy": "not_available", "Power_Driver": "not_available", "Microcode": "0xd000331", "SMT_Enabled": "1"}, "BIOS": {"Vendor": "Amazon EC2", "Version": "1.0", "Release_data": "10/16/2017"}, "SYSTEM": {"Manufacturer": "Amazon EC2", "Product_Name": "c6i.4xlarge", "Version": "Not Specified", "Product_Serial": "not_available", "Product_Asset_Tag": "not_available", "isVM": true}, "MEMORY": {"dimm1": "32 GB DDR4 | Not Specified | Not Specified", "Mem_Total": 32245932, "Mem_Available": 31266064, "Mem_Swap": 3146748}, "STORAGE": {}}}, "suite": {"version": "v2.2-rc5", "flags": {"mp_num": 16, "run_mode": "singularity"}, "benchmark_version": {"db12": "v0.1"}}, "_id": "66a106ff-4190-4530-a6e2-06d2ea7eadd8", "_timestamp": "2022-07-05T15:50:40Z", "_timestamp_end": "2022-07-05T15:51:02Z", "json_version": "v2.2-rc5", "profiles": {"DB12": {"value": 41.214602703602445, "unit": "est. HS06"}}}
11 changes: 11 additions & 0 deletions cloud_benchmarking/results_AWS/M4_4xlarge/benchmark
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Model name: Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz
Processor/(run) count 16
namd = 9.30375000000000000000
dealII= 17.13750000000000000000
soplex= 17.13750000000000000000
povray= 11.81250000000000000000
omnetpp= 11.81250000000000000000
astar= 8.71875000000000000000
xalancbmk= 14.30625000000000000000
Average per processor: 11.47
Machine total HS06: 183.52
Loading