Skip to content
Snippets Groups Projects
Commit 42adf699 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #9373: Use 256ch/sb in blocksize computation as well

parent 025cf141
No related branches found
No related tags found
No related merge requests found
...@@ -111,8 +111,8 @@ public: ...@@ -111,8 +111,8 @@ public:
if (coherentStokesEnabled) { if (coherentStokesEnabled) {
// Add required multiples for the CS Beamformer // Add required multiples for the CS Beamformer
// 16 * 64 (DelayAndBandPass.cu) // 16 * 256 (DelayAndBandPass.cu)
factor = lcm(factor, 16 * 64); factor = lcm(factor, 16 * 256);
// 1024 is the maxNrThreadsPerBlock (CoherentStokesKernel.cc) // 1024 is the maxNrThreadsPerBlock (CoherentStokesKernel.cc)
// Note that coherenthannelsPerSubband is always a power of 2 < 1024 // Note that coherenthannelsPerSubband is always a power of 2 < 1024
...@@ -124,8 +124,8 @@ public: ...@@ -124,8 +124,8 @@ public:
if (incoherentStokesEnabled) { if (incoherentStokesEnabled) {
// Add required multiples for the IS Beamformer // Add required multiples for the IS Beamformer
// 16 * 64 (DelayAndBandPass.cu) // 16 * 256 (DelayAndBandPass.cu)
factor = lcm(factor, 16 * 64); factor = lcm(factor, 16 * 256);
// integration should fit (IncoherentStokes.cu) // integration should fit (IncoherentStokes.cu)
factor = lcm(factor, incoherentTimeIntegrationFactor * incoherentChannelsPerSubband); factor = lcm(factor, incoherentTimeIntegrationFactor * incoherentChannelsPerSubband);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment