From f1c31df9d27d8eeb14a56feafaa15f973c252248 Mon Sep 17 00:00:00 2001 From: paboyle Date: Wed, 24 Jan 2018 13:19:29 +0000 Subject: [PATCH] updated Eigen version. Still didn't fix CUDA 9 no compile. Worked around by switching off __NVCC__ during the include of Eigen and switching it back on after. No Eigen code can be offloaded, note as a rsult of this. No harm done. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index bdf748df..39af9d93 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.3.3.tar.bz2' +EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.3.4.tar.bz2' echo "-- deploying Eigen source..." wget ${EIGEN_URL} --no-check-certificate && ./scripts/update_eigen.sh `basename ${EIGEN_URL}` && rm `basename ${EIGEN_URL}`