mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-09 23:45:36 +00:00
make trace,adj,transpose unary operators
This commit is contained in:
parent
c9b737a4e7
commit
60db3133d3
15
bootstrap.sh
15
bootstrap.sh
@ -1,20 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
#https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2
|
||||
EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.3.7.tar.bz2'
|
||||
EIGEN_URL='https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2'
|
||||
EIGEN_SHA256SUM='685adf14bd8e9c015b78097c1dc22f2f01343756f196acdc76a678e1ae352e11'
|
||||
|
||||
|
||||
echo "-- deploying Eigen source..."
|
||||
ARC=`basename ${EIGEN_URL}`
|
||||
wget ${EIGEN_URL} --no-check-certificate
|
||||
#if command -v sha256sum; then
|
||||
# echo "$EIGEN_SHA256SUM $(basename "$EIGEN_URL")" \
|
||||
# | sha256sum --check || exit 1
|
||||
#else
|
||||
# echo "WARNING: could not verify checksum, please install sha256sum" >&2
|
||||
#fi
|
||||
if command -v sha256sum; then
|
||||
echo "$EIGEN_SHA256SUM $(basename "$EIGEN_URL")" \
|
||||
| sha256sum --check || exit 1
|
||||
else
|
||||
echo "WARNING: could not verify checksum, please install sha256sum" >&2
|
||||
fi
|
||||
./scripts/update_eigen.sh ${ARC}
|
||||
rm ${ARC}
|
||||
# patch for non-portable includes in Eigen 3.3.5
|
||||
|
Loading…
Reference in New Issue
Block a user