Commit 7d1d153a33765c9a4e7326b85d83effc45cff14e
1 parent
5cc0976c
fixed the includes dependent on the new cuda folder structure
Showing
9 changed files
with
14 additions
and
14 deletions
Show diff stats
stim/cuda/cost.h
... | ... | @@ -3,11 +3,11 @@ |
3 | 3 | #include <cuda_runtime.h> |
4 | 4 | #include <cublas_v2.h> |
5 | 5 | #include <stdio.h> |
6 | -#include "../visualization/colormap.h" | |
6 | +#include <stim/visualization/colormap.h> | |
7 | 7 | #include <sstream> |
8 | -#include "../math/vector.h" | |
9 | -#include "../cuda/devices.h" | |
10 | -#include "../cuda/threads.h" | |
8 | +#include <stim/math/vector.h> | |
9 | +#include <stim/cuda/cudatools/devices.h> | |
10 | +#include <stim/cuda/cudatools/threads.h> | |
11 | 11 | |
12 | 12 | ///Cost function that works with the gl-spider class to find index of the item with min-cost. |
13 | 13 | typedef unsigned char uchar; | ... | ... |
stim/cuda/cudatools/glbind.h
stim/gl/gl_spider.h
stim/math/matrix.h
stim/math/quaternion.h
stim/math/rect.h
stim/math/triangle.h
stim/math/vector.h
stim/visualization/colormap.h
... | ... | @@ -4,12 +4,12 @@ |
4 | 4 | #include <string> |
5 | 5 | #include <stdlib.h> |
6 | 6 | #ifdef __CUDACC__ |
7 | -#include "../cuda/error.h" | |
7 | +#include <stim/cuda/cudatools/error.h> | |
8 | 8 | #endif |
9 | 9 | |
10 | 10 | //saving an image to a file uses the CImg library |
11 | 11 | //this currently throws a lot of "unreachable" warnings (as of GCC 4.8.2, nvcc 6.5.12) |
12 | -#include "../image/image.h" | |
12 | +#include <stim/image/image.h> | |
13 | 13 | |
14 | 14 | |
15 | 15 | #define BREWER_CTRL_PTS 11 | ... | ... |