diff --git a/idg-lib/src/CUDA/common/kernels/KernelWtiling.cu b/idg-lib/src/CUDA/common/kernels/KernelWtiling.cu
index b41e5b89845acb491fffc873f0dcfdb1ff95fd85..3709c34403fcc297d7740f233797a687b63f1443 100644
--- a/idg-lib/src/CUDA/common/kernels/KernelWtiling.cu
+++ b/idg-lib/src/CUDA/common/kernels/KernelWtiling.cu
@@ -18,7 +18,7 @@ __global__ void kernel_copy_tiles(
 {
     // Map blockIdx.x to polarizations
     unsigned int nr_polarizations = gridDim.x;
-    assert(nr_polarizations <= 4);
+    //assert(nr_polarizations <= 4);
     unsigned int pol = blockIdx.x;
 
     // Tranpose the polarizations
@@ -95,7 +95,7 @@ __global__ void kernel_apply_phasor(
 {
     // Map blockIdx.x to polarizations
     unsigned int nr_polarizations = gridDim.x;
-    assert(nr_polarizations <= 4);
+    //assert(nr_polarizations <= 4);
     unsigned int pol = blockIdx.x;
 
     // Map blockIdx.y to tile_index
@@ -219,7 +219,7 @@ __global__ void kernel_wtiles_to_grid(
 {
     // Map blockIdx.x to polarizations
     unsigned int nr_polarizations = gridDim.x;
-    assert(nr_polarizations <= 4);
+    //assert(nr_polarizations <= 4);
     unsigned int pol = blockIdx.x;
 
     // Map blockIdx.x to tiles
@@ -338,7 +338,7 @@ __global__ void kernel_wtiles_from_grid(
 {
     // Map blockIdx.x to polarizations
     unsigned int nr_polarizations = gridDim.x;
-    assert(nr_polarizations <= 4);
+    //assert(nr_polarizations <= 4);
     unsigned int pol = blockIdx.x;
 
     // Map blockIdx.x to tiles
@@ -396,7 +396,7 @@ __global__ void kernel_wtiles_to_patch(
 {
     // Map blockIdx.x to polarization
     unsigned int nr_polarizations = gridDim.x;
-    assert(nr_polarizations <= 4);
+    //assert(nr_polarizations <= 4);
     unsigned int pol = blockIdx.x;
 
     // Map blockIdx.y to row of patch
@@ -471,7 +471,7 @@ __global__ void kernel_wtiles_from_patch(
 {
     // Map blockIdx.x to polarization
     unsigned int nr_polarizations = gridDim.x;
-    assert(nr_polarizations <= 4);
+    //assert(nr_polarizations <= 4);
     unsigned int pol = blockIdx.x;
 
     // Map blockIdx.y to row of patch