Commit c000c8b4 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Refactoring CUDA parallel reduction.

parent b4d037d3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ SET( CURRENT_DIR ${CMAKE_SOURCE_DIR}/src/TNL )

set( headers 
     Assert.h
     Curve.h
     File.h
     File_impl.h
     Object.h
+1 −1
Original line number Diff line number Diff line
@@ -27,4 +27,4 @@ bool cudaPrefixSum( const Index size,

} // namespace TNL

#include <TNL/core/cuda/cuda-prefix-sum_impl.h>
#include <TNL/Containers/Algorithms/cuda-prefix-sum_impl.h>
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

/* See Copyright Notice in tnl/Copyright */

#include <TNL/core/cuda/cuda-prefix-sum.h>
#include <TNL/Containers/Algorithms/cuda-prefix-sum.h>
 
namespace TNL {
namespace Devices {
Loading