From 42adf6991c37a848ef25219351ace21725c69e76 Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Mon, 20 Jun 2016 13:53:08 +0000 Subject: [PATCH] Task #9373: Use 256ch/sb in blocksize computation as well --- SAS/Scheduler/src/blocksize.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SAS/Scheduler/src/blocksize.h b/SAS/Scheduler/src/blocksize.h index 359dcc8c972..31d60f5be84 100644 --- a/SAS/Scheduler/src/blocksize.h +++ b/SAS/Scheduler/src/blocksize.h @@ -111,8 +111,8 @@ public: if (coherentStokesEnabled) { // Add required multiples for the CS Beamformer - // 16 * 64 (DelayAndBandPass.cu) - factor = lcm(factor, 16 * 64); + // 16 * 256 (DelayAndBandPass.cu) + factor = lcm(factor, 16 * 256); // 1024 is the maxNrThreadsPerBlock (CoherentStokesKernel.cc) // Note that coherenthannelsPerSubband is always a power of 2 < 1024 @@ -124,8 +124,8 @@ public: if (incoherentStokesEnabled) { // Add required multiples for the IS Beamformer - // 16 * 64 (DelayAndBandPass.cu) - factor = lcm(factor, 16 * 64); + // 16 * 256 (DelayAndBandPass.cu) + factor = lcm(factor, 16 * 256); // integration should fit (IncoherentStokes.cu) factor = lcm(factor, incoherentTimeIntegrationFactor * incoherentChannelsPerSubband); -- GitLab