mirror of
https://github.com/amd/blis.git
synced 2026-04-19 15:18:52 +00:00
Details: - Updated travis/do_sde.sh so that the script downloads the SDE tarball from a new ci-utils repository on GitHub rather than from Intel's website. This change is being made in an attempt to circumvent Travis CI's recent troubles with downloading the SDE from Intel's website via curl. Thanks to Devin Matthews for suggesting the idea.
66 lines
2.0 KiB
Bash
Executable File
66 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
SDE_VERSION=sde-external-8.63.0-2021-01-18-lin
|
|
SDE_TARBALL=$SDE_VERSION.tar.bz2
|
|
SDE=$SDE_VERSION/sde64
|
|
|
|
#
|
|
# This doesn't seem to be necessary anymore
|
|
#
|
|
#curl --verbose --form accept_license=1 --form form_id=intel_licensed_dls_step_1 \
|
|
# --output /dev/null --cookie-jar jar.txt \
|
|
# --location https://software.intel.com/protected-download/267266/144917
|
|
#curl --verbose --cookie jar.txt --output $SDE_TARBALL \
|
|
# https://software.intel.com/system/files/managed/2a/1a/$SDE_TARBALL
|
|
|
|
#curl --verbose --output $SDE_TARBALL \
|
|
# https://software.intel.com/content/dam/develop/external/us/en/documents/downloads/$SDE_TARBALL
|
|
|
|
CI_UTILS=ci-utils
|
|
CI_UTILS_URL=https://github.com/flame/${CI_UTILS}.git
|
|
CI_UTILS_SDE_DIR=sde
|
|
SDE_DIRPATH=$CI_UTILS/$CI_UTILS_SDE_DIR
|
|
|
|
git clone $CI_UTILS_URL
|
|
mv $SDE_DIRPATH/$SDE_TARBALL .
|
|
|
|
tar xvf $SDE_TARBALL
|
|
|
|
make -j2 testsuite-bin
|
|
cp $DIST_PATH/testsuite/input.general.fast input.general
|
|
cp $DIST_PATH/testsuite/input.operations.fast input.operations
|
|
|
|
TMP=`ldd ./test_libblis.x | grep ld | sed 's/^.*=> //'`
|
|
LD_SO=${TMP%% *}
|
|
TMP=`ldd ./test_libblis.x | grep libc | sed 's/^.*=> //'`
|
|
LIBC_SO=${TMP%% *}
|
|
TMP=`ldd ./test_libblis.x | grep libm | sed 's/^.*=> //'`
|
|
LIBM_SO=${TMP%% *}
|
|
for LIB in $LD_SO $LIBC_SO $LIBM_SO; do
|
|
$DIST_PATH/travis/patch-ld-so.py $LIB .tmp
|
|
chmod a+x .tmp
|
|
sudo mv .tmp $LIB
|
|
done
|
|
|
|
#for ARCH in penryn sandybridge haswell skx knl piledriver steamroller excavator zen; do
|
|
for ARCH in penryn sandybridge haswell skx knl zen; do
|
|
if [ "$ARCH" = "knl" ]; then
|
|
$SDE -knl -- ./test_libblis.x > output.testsuite
|
|
else
|
|
$SDE -cpuid_in $DIST_PATH/travis/cpuid/$ARCH.def -- ./test_libblis.x > output.testsuite
|
|
fi
|
|
$DIST_PATH/testsuite/check-blistest.sh ./output.testsuite
|
|
TMP=`grep "active sub-configuration" output.testsuite`
|
|
CONFIG=${TMP##* }
|
|
if [ "$CONFIG" != "$ARCH" ]; then
|
|
echo "Wrong configuration chosen:"
|
|
echo " Expected: $ARCH"
|
|
echo " Got: $CONFIG"
|
|
exit 1
|
|
fi
|
|
done
|
|
|