Skip to content

Commit 3c601be

Browse files
committed
doAll() removed from Gpu pipeline
1 parent 6b7a87d commit 3c601be

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/algorithm/ComputeGradientCuda.cu

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -351,13 +351,6 @@ LinearAccessCudaStructs GpuProcessingTask<ImgType>::getDataFromGpu() {return imp
351351
template <typename ImgType>
352352
void GpuProcessingTask<ImgType>::processOnGpu() {impl->processOnGpu();}
353353

354-
template <typename ImgType>
355-
void GpuProcessingTask<ImgType>::doAll() {
356-
sendDataToGpu();
357-
processOnGpu();
358-
getDataFromGpu();
359-
}
360-
361354
// explicit instantiation of handled types
362355
template class GpuProcessingTask<uint16_t>;
363356
template class GpuProcessingTask<float>;

src/algorithm/ComputeGradientCuda.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ class GpuProcessingTask {
4949
void sendDataToGpu();
5050
LinearAccessCudaStructs getDataFromGpu();
5151
void processOnGpu();
52-
void doAll();
5352
};
5453

5554
#endif //LIBAPR_COMPUTEGRADIENTCUDA_HPP

0 commit comments

Comments
 (0)