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

Updating max CUDA grid size.

parent 1218bb40
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -15,9 +15,9 @@
namespace TNL {
namespace Cuda {

inline constexpr int getMaxGridSize()
inline constexpr size_t getMaxGridSize()
{
   return 65535;
   return 2147483647;//65535;
}

inline constexpr int getMaxBlockSize()