summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtakar Jašek2019-04-07 18:53:51 +0200
committerOtakar Jašek2019-04-07 18:53:51 +0200
commitd290da45837282ad4a9493d34006a5b709dc8a77 (patch)
treeb90f32311ca354216759690a3b751c405946962d
parente4e71079b1af9c79c4b8563cffdebdc4b422eb68 (diff)
downloadaur-d290da45837282ad4a9493d34006a5b709dc8a77.tar.gz
Actually committing patch
-rw-r--r--cuda10.1.patch9
1 files changed, 4 insertions, 5 deletions
diff --git a/cuda10.1.patch b/cuda10.1.patch
index 2100344fde08..c33e46a26aab 100644
--- a/cuda10.1.patch
+++ b/cuda10.1.patch
@@ -1,14 +1,13 @@
diff --git a/gpu/utils/Tensor.cuh b/gpu/utils/Tensor.cuh
-index f925a37..eba2aa5 100644
+index f925a37..d116324 100644
--- a/gpu/utils/Tensor.cuh
+++ b/gpu/utils/Tensor.cuh
-@@ -359,8 +359,7 @@ bool canUseIndexType() {
+@@ -359,7 +359,7 @@ bool canUseIndexType() {
template <typename IndexType, typename T, typename... U>
bool canUseIndexType(const T& arg, const U&... args) {
- return arg.canUseIndexType<IndexType>() &&
-- canUseIndexType(args...);
-+ return canUseIndexType(args...);
++ return arg.template canUseIndexType<IndexType>() &&
+ canUseIndexType(args...);
}
- } // namespace detail