aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/Tensor
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2014-10-13 10:04:04 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2014-10-13 10:04:04 -0700
commit4c70b0a7627d45286ecbb3c73d2d774412168205 (patch)
tree8ed2081268a2bd6110fac3fdcf0f956b5a72313e /unsupported/Eigen/CXX11/Tensor
parent0219f8aed44279858330b1c07402c066f5b75459 (diff)
Added support for patch extraction
Diffstat (limited to 'unsupported/Eigen/CXX11/Tensor')
-rw-r--r--unsupported/Eigen/CXX11/Tensor7
1 files changed, 7 insertions, 0 deletions
diff --git a/unsupported/Eigen/CXX11/Tensor b/unsupported/Eigen/CXX11/Tensor
index 79510fd96..0dac95e45 100644
--- a/unsupported/Eigen/CXX11/Tensor
+++ b/unsupported/Eigen/CXX11/Tensor
@@ -1,6 +1,7 @@
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
+// Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
// Copyright (C) 2013 Christian Seiler <christian@iwakd.de>
//
// This Source Code Form is subject to the terms of the Mozilla
@@ -27,6 +28,11 @@
#include <cstddef>
#include <cstring>
+#include <stdint.h>
+
+#if defined(EIGEN_USE_GPU) && defined(__CUDACC__)
+#include <curand_kernel.h>
+#endif
#include "Eigen/Core"
@@ -46,6 +52,7 @@
#include "unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h"
#include "unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h"
#include "unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h"
+#include "unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h"
#include "unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h"
#include "unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h"
#include "unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h"