From ba6ff96e8b22a3be5febcf5a02564247cddb4e50 Mon Sep 17 00:00:00 2001 From: Marcel Loose <loose@astron.nl> Date: Fri, 20 Dec 2013 10:27:45 +0000 Subject: [PATCH] Task #5287: Removed dumpBuffer() calls from BeamFormerSubbandProc.cc --- .../src/cuda/SubbandProcs/BeamFormerSubbandProc.cc | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/BeamFormerSubbandProc.cc b/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/BeamFormerSubbandProc.cc index 34d84f55590..ec57b6b3e6c 100644 --- a/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/BeamFormerSubbandProc.cc +++ b/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/BeamFormerSubbandProc.cc @@ -449,26 +449,18 @@ namespace LOFAR intToFloatKernel->enqueue(input.blockID, counters.intToFloat); firstFFTShiftKernel->enqueue(input.blockID, counters.firstFFTShift); - dumpBuffer(firstFFTShiftBuffers.output, "firstFFTShift.dat"); - firstFFT.enqueue(input.blockID, counters.firstFFT); - dumpBuffer(firstFFTShiftBuffers.output, "firstFFT.dat"); delayCompensationKernel->enqueue( input.blockID, counters.delayBp, ps.settings.subbands[subband].centralFrequency, ps.settings.subbands[subband].SAP); - dumpBuffer(delayCompensationBuffers.output, "delayCompensation.dat"); secondFFTShiftKernel->enqueue(input.blockID, counters.secondFFTShift); - dumpBuffer(secondFFTShiftBuffers.output, "secondFFTShift.dat"); - secondFFT.enqueue(input.blockID, counters.secondFFT); - dumpBuffer(secondFFTShiftBuffers.output, "secondFFT.dat"); bandPassCorrectionKernel->enqueue( input.blockID, counters.correctBandpass); - dumpBuffer(bandPassCorrectionBuffers.output, "bandPassCorrection.dat"); // ******************************************************************** // coherent stokes kernels @@ -479,6 +471,7 @@ namespace LOFAR ps.settings.subbands[subband].SAP); coherentTransposeKernel->enqueue(input.blockID, counters.transpose); + inverseFFT.enqueue(input.blockID, counters.inverseFFT); inverseFFTShiftKernel->enqueue(input.blockID, counters.inverseFFTShift); @@ -501,15 +494,11 @@ namespace LOFAR // incoherent stokes kernels incoherentTranspose->enqueue( input.blockID, counters.incoherentStokesTranspose); - dumpBuffer(incoherentTransposeBuffers.output, "incoherentTranspose.dat"); incoherentInverseFFT.enqueue( input.blockID, counters.incoherentInverseFFT); - dumpBuffer(incoherentTransposeBuffers.output, "incoherentInverseFFT.dat"); - incoherentInverseFFTShiftKernel->enqueue( input.blockID, counters.incoherentInverseFFTShift); - dumpBuffer(incoherentTransposeBuffers.output, "incoherentInverseFFTShift.dat"); if (incoherentStokesPPF) { -- GitLab