Skip to content

Commit

Permalink
Merge branch 'develop' into 654-grb-set-matrix-to-matrix-broken-in-mi…
Browse files Browse the repository at this point in the history
…xed-domain
  • Loading branch information
byjtew authored Feb 16, 2024
2 parents 7305719 + 68b6256 commit c1457a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/performance/performancetests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ runMultiplicationKernels()
echo "Test DISABLED: no sparse level-3 operations recommended for 1D distributions."
echo " "
elif [ "$i" -gt "14" ]; then
echo "Tests DISABLED: by default, long-running sparse matrix--sparse matrix multiplications are disabled (skipping dataset ${dataSet})."
echo "Test DISABLED: by default, long-running sparse matrix--sparse matrix multiplications are disabled (skipping dataset ${dataSet})."
echo " "
else
$runner ${TEST_BIN_DIR}/driver_spmspm_${backend} ${INPUT_DIR}/${dataSet} ${INPUT_DIR}/${dataSet} ${parseMode} &> ${TEST_OUT_DIR}/driver_spmspm_${backend}_${dataSet}
Expand Down
2 changes: 2 additions & 0 deletions tests/summarise.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ fi

NUM_OK=`grep -i "Test OK" "$1" | wc -l`
NUM_DISABLED=`grep -i "Test DISABLED" "$1" | wc -l`
NUM_CDISABLED=`grep -i "Tests DISABLED" "$1" | wc -l`
NUM_FAILED=`grep -i "Test FAILED" "$1" | wc -l`

echo "Summary of $1:"
printf " %4s PASSED\n" ${NUM_OK}
printf " %4s SKIPPED\n" ${NUM_DISABLED}
printf " %4s FAILED\n" ${NUM_FAILED}
printf " %4s TEST CATEGORIES SKIPPED\n" ${NUM_CDISABLED}

if [ ${NUM_FAILED} -gt 0 ]; then
printf "\nOne or more failures detected. Log contents:\n\n"
Expand Down

0 comments on commit c1457a7

Please sign in to comment.