Files
blis/test/runme.sh
Field G. Van Zee c84391314d Reverted minor temp/wspace changes from b426f9e.
Details:
- Added missing license header to bli_pwr9_asm_macros_12x6.h.
- Reverted temporary changes to various files in 'test' and 'testsuite'
  directories.
- Moved testsuite/jobscripts into testsuite/old.
- Minor whitespace/comment changes across various files.
2019-11-04 13:57:12 -06:00

35 lines
637 B
Bash
Executable File

#!/bin/bash
exec_root="test"
out_root="output"
#out_root="output_square"
# Operations to test.
l2_ops="gemv ger hemv her her2 trmv trsv"
l3_ops="gemm hemm herk her2k trmm trsm"
test_ops="${l2_ops} ${l3_ops}"
# Implementations to test.
#test_impls="openblas mkl blis"
test_impls="blis"
for im in ${test_impls}; do
for op in ${test_ops}; do
# Construct the name of the test executable.
exec_name="${exec_root}_${op}_${im}.x"
# Construct the name of the output file.
out_file="${out_root}_${op}_${im}.m"
echo "Running ${exec_name} > ${out_file}"
# Run executable.
./${exec_name} > ${out_file}
sleep 1
done
done