From f3e5beae55f91bd2c5b1aef8d63162cd8495e5af Mon Sep 17 00:00:00 2001 From: Alexander van Amesfoort <amesfoort@astron.nl> Date: Mon, 22 Aug 2016 12:56:09 +0000 Subject: [PATCH] Task #9127: Cobalt GPUProc: 2 comment fixes --- RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc | 2 +- RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc b/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc index e84a3048457..a168d03ebb2 100644 --- a/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc +++ b/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc @@ -213,7 +213,7 @@ namespace LOFAR //sections = program segments defined by the following omp section directive // are distributed for parallel execution among available threads //parallel = directive explicitly instructs the compiler to parallelize the chosen block of code. - // The two sections in this function are done in parallel with a seperate set of threads. + // The 6 sections in this function are done in parallel with seperate threads. # pragma omp parallel sections num_threads(6) { diff --git a/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc b/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc index 404d92618c6..79810a2bcd9 100644 --- a/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc +++ b/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc @@ -86,7 +86,7 @@ namespace LOFAR } // NOTE: For an explanation of the different buffers being used, please refer - // to the document bf-pipeline.txt in the GPUProc/doc directory. + // to the document pipeline-buffers.txt in the GPUProc/doc directory. devA.reset(new gpu::DeviceMemory(context, devA_size)); devB.reset(new gpu::DeviceMemory(context, devB_size)); -- GitLab