2013-11-15 05:52:37 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
2014-10-14 01:04:04 +08:00
|
|
|
// Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
|
2013-11-16 07:03:23 +08:00
|
|
|
// Copyright (C) 2013 Christian Seiler <christian@iwakd.de>
|
2013-11-15 05:52:37 +08:00
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
#ifndef EIGEN_CXX11_TENSOR_MODULE
|
|
|
|
#define EIGEN_CXX11_TENSOR_MODULE
|
|
|
|
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "Eigen/src/Core/util/StaticAssert.h"
|
|
|
|
#include "unsupported/Eigen/CXX11/Core"
|
2013-11-15 05:52:37 +08:00
|
|
|
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "Eigen/src/Core/util/DisableStupidWarnings.h"
|
2013-11-15 05:52:37 +08:00
|
|
|
|
|
|
|
/** \defgroup CXX11_Tensor_Module Tensor Module
|
|
|
|
*
|
|
|
|
* This module provides a Tensor class for storing arbitrarily indexed
|
|
|
|
* objects.
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/CXX11/Tensor>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
2014-10-14 01:04:04 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2015-01-15 07:43:38 +08:00
|
|
|
#if __cplusplus > 199711
|
|
|
|
#include <random>
|
|
|
|
#endif
|
|
|
|
|
2014-10-14 08:02:09 +08:00
|
|
|
#ifdef EIGEN_USE_THREADS
|
|
|
|
#include <future>
|
|
|
|
#endif
|
|
|
|
|
2015-01-15 07:43:38 +08:00
|
|
|
#ifdef EIGEN_USE_GPU
|
|
|
|
#include <cuda_runtime.h>
|
|
|
|
#if defined(__CUDACC__)
|
2014-10-14 01:04:04 +08:00
|
|
|
#include <curand_kernel.h>
|
|
|
|
#endif
|
2015-01-15 07:43:38 +08:00
|
|
|
#endif
|
2013-11-15 05:52:37 +08:00
|
|
|
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "Eigen/Core"
|
2013-11-15 05:52:37 +08:00
|
|
|
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h"
|
2014-05-17 06:08:05 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorDeviceType.h"
|
2014-05-07 02:18:37 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h"
|
2014-11-13 14:25:38 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h"
|
2015-01-15 07:43:38 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h"
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h"
|
2014-10-02 11:38:22 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h"
|
2014-08-15 13:13:21 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h"
|
2013-11-15 05:52:37 +08:00
|
|
|
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorBase.h"
|
|
|
|
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h"
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h"
|
2014-10-02 11:38:22 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h"
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h"
|
2014-06-05 00:21:48 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h"
|
2014-10-16 06:32:59 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h"
|
2015-01-15 07:43:38 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h"
|
2015-02-28 00:46:04 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h"
|
2014-06-07 07:25:16 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h"
|
2014-10-14 01:04:04 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h"
|
2014-11-14 01:28:54 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h"
|
2014-08-21 08:00:50 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h"
|
2014-10-11 07:11:27 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h"
|
2015-01-15 07:43:38 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h"
|
2014-06-07 07:25:16 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h"
|
2014-08-14 15:22:47 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h"
|
2015-01-15 07:43:38 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h"
|
2014-08-14 15:22:47 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h"
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h"
|
2014-06-14 00:56:51 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h"
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h"
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h"
|
2014-06-14 00:56:51 +08:00
|
|
|
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h"
|
2015-03-26 03:37:38 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h"
|
2014-04-29 01:32:27 +08:00
|
|
|
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h"
|
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/Tensor.h"
|
2014-05-07 02:18:37 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h"
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorMap.h"
|
2014-10-29 14:10:13 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorRef.h"
|
|
|
|
|
2014-10-11 07:17:26 +08:00
|
|
|
#include "unsupported/Eigen/CXX11/src/Tensor/TensorIO.h"
|
|
|
|
|
2014-04-29 01:32:27 +08:00
|
|
|
#include "Eigen/src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
|
|
|
|
#endif // EIGEN_CXX11_TENSOR_MODULE
|