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
32 changes: 32 additions & 0 deletions passmark/openmetrics_passmark_reset.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
iteration 0
running 0
numthreads 0
runtime NaN
throughput NaN
latency NaN
CPU_INTEGER_MATH NaN
CPU_FLOATINGPOINT_MATH NaN
CPU_PRIME NaN
CPU_SORTING NaN
CPU_ENCRYPTION NaN
CPU_COMPRESSION NaN
CPU_SINGLETHREAD NaN
CPU_PHYSICS NaN
CPU_MATRIX_MULT_SSE NaN
CPU_mm NaN
CPU_sse NaN
CPU_fma NaN
CPU_avx NaN
CPU_avx512 NaN
m_CPU_enc_SHA NaN
m_CPU_enc_AES NaN
m_CPU_enc_ECDSA NaN
ME_ALLOC_S NaN
ME_READ_S NaN
ME_READ_L NaN
ME_WRITE NaN
ME_LARGE NaN
ME_LATENCY NaN
ME_THREADED NaN
SUMM_CPU NaN
SUMM_ME NaN
Comment on lines +7 to +32

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to consider how best to separate the test results from each benchmark.. Maybe openmetrics.workload.<test name>.<metric name> in future?

This is NOT needed to merge this PR

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or testname_metricname, since dots are special for OM.

14 changes: 14 additions & 0 deletions passmark/passmark_run
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,20 @@ run_passmark()
mv results_all.yml results_all_${iter}.yml
if [[ $to_use_pcp -eq 1 ]]; then
result2pcp iteration $iter
Comment thread
dvalinrh marked this conversation as resolved.
while IFS= read -r metric
do
field=`echo $metric | awk '{print $1}'`
grep -q ^${field} results_all_${iter}.yml
#
# Only if the metric exists
#
if [[ $? -eq 0 ]]; then
value=`grep ^$field results_all_${iter}.yml | cut -d':' -f2`
result2pcp $field $value
#
# If the
fi
done < "${run_dir}/openmetrics_passmark_reset.txt"
stop_pcp_subset
fi
done
Expand Down