summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJeff Donahue <jeff.donahue@gmail.com>2014-03-18 17:34:25 -0700
committerJeff Donahue <jeff.donahue@gmail.com>2014-03-18 18:21:41 -0700
commit5f4e38fd88ad14e5a3c461f864bef443b1689c8b (patch)
tree434fde45d3d7ee407e71474c3924597c8d5ccf9d /include
parentdafbba7a5a85b614a8f82fc7eadef89bb196ca27 (diff)
downloadcaffeonacl-5f4e38fd88ad14e5a3c461f864bef443b1689c8b.tar.gz
caffeonacl-5f4e38fd88ad14e5a3c461f864bef443b1689c8b.tar.bz2
caffeonacl-5f4e38fd88ad14e5a3c461f864bef443b1689c8b.zip
fix remaining issues related to CUDA_KERNEL_LOOP
Diffstat (limited to 'include')
-rw-r--r--include/caffe/common.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/caffe/common.hpp b/include/caffe/common.hpp
index f0cae651..96ba58c2 100644
--- a/include/caffe/common.hpp
+++ b/include/caffe/common.hpp
@@ -22,7 +22,7 @@
for (int i = blockIdx.x * blockDim.x + threadIdx.x; \
i < (n); \
i += blockDim.x * gridDim.x)
-
+
// After a kernel is executed, this will check the error and if there is one,
// exit loudly.
#define CUDA_POST_KERNEL_CHECK \