diff options
author | Gael Guennebaud <g.gael@free.fr> | 2019-01-09 18:00:05 +0100 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2019-01-09 18:00:05 +0100 |
commit | d812f411c3f99e93a774b80ed3772603303c6c59 (patch) | |
tree | 279af04fee5b22610506e1bd1dd13459be12b6a9 /Eigen | |
parent | 3492a1ca74552ebfc4e4ed368ebdf2597f9b8452 (diff) |
bug #1654: fix compilation with cuda and no c++11
Diffstat (limited to 'Eigen')
-rw-r--r-- | Eigen/src/Core/util/StaticAssert.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/StaticAssert.h b/Eigen/src/Core/util/StaticAssert.h index b2f95153e..67714e444 100644 --- a/Eigen/src/Core/util/StaticAssert.h +++ b/Eigen/src/Core/util/StaticAssert.h @@ -104,7 +104,8 @@ STORAGE_INDEX_MUST_MATCH=1, CHOLMOD_SUPPORTS_DOUBLE_PRECISION_ONLY=1, SELFADJOINTVIEW_ACCEPTS_UPPER_AND_LOWER_MODE_ONLY=1, - INVALID_TEMPLATE_PARAMETER=1 + INVALID_TEMPLATE_PARAMETER=1, + GPU_TENSOR_CONTRACTION_DOES_NOT_SUPPORT_OUTPUT_KERNELS=1 }; }; |