diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-05-22 13:15:58 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-05-22 13:15:58 +0200 |
commit | 1714312d072179b74306c927b25bd01b5056bdf1 (patch) | |
tree | 404c48a9b634bd0db0046c92be491b71a5596563 | |
parent | c9f11161191729046eb91cc038d815ee8bd1e225 (diff) | |
download | astra-1714312d072179b74306c927b25bd01b5056bdf1.tar.gz astra-1714312d072179b74306c927b25bd01b5056bdf1.tar.bz2 astra-1714312d072179b74306c927b25bd01b5056bdf1.tar.xz astra-1714312d072179b74306c927b25bd01b5056bdf1.zip |
Fix build without CUDA
-rw-r--r-- | include/astra/CudaFilteredBackProjectionAlgorithm.h | 4 | ||||
-rw-r--r-- | include/astra/CudaProjector2D.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/astra/CudaFilteredBackProjectionAlgorithm.h b/include/astra/CudaFilteredBackProjectionAlgorithm.h index 0c66b19..057843e 100644 --- a/include/astra/CudaFilteredBackProjectionAlgorithm.h +++ b/include/astra/CudaFilteredBackProjectionAlgorithm.h @@ -28,6 +28,8 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. #ifndef CUDAFILTEREDBACKPROJECTIONALGORITHM2_H #define CUDAFILTEREDBACKPROJECTIONALGORITHM2_H +#ifdef ASTRA_CUDA + #include <astra/Float32ProjectionData2D.h> #include <astra/Float32VolumeData2D.h> #include <astra/ReconstructionAlgorithm2D.h> @@ -94,4 +96,6 @@ inline std::string CCudaFilteredBackProjectionAlgorithm::description() const { r } +#endif + #endif /* CUDAFILTEREDBACKPROJECTIONALGORITHM2_H */ diff --git a/include/astra/CudaProjector2D.h b/include/astra/CudaProjector2D.h index d43de33..d95aa53 100644 --- a/include/astra/CudaProjector2D.h +++ b/include/astra/CudaProjector2D.h @@ -28,6 +28,8 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. #ifndef _INC_ASTRA_CUDAPROJECTOR2D #define _INC_ASTRA_CUDAPROJECTOR2D +#ifdef ASTRA_CUDA + #include "ParallelProjectionGeometry2D.h" #include "Float32Data2D.h" #include "Projector2D.h" @@ -142,5 +144,7 @@ inline std::string CCudaProjector2D::getType() } // namespace astra +#endif + #endif |