From 3cda15b8d9cd4f1d57c4b6fc0c0d19cf34f560ff Mon Sep 17 00:00:00 2001 From: boufaras Date: Fri, 28 Jan 2011 09:52:08 +0000 Subject: [PATCH] git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2084 331e1502-861f-0410-8da2-ba01fb791d7f --- ParadisEO-GPU/src/eval/moCudakernelEval.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ParadisEO-GPU/src/eval/moCudakernelEval.h b/ParadisEO-GPU/src/eval/moCudakernelEval.h index f5a7b7d62..98fd1a635 100644 --- a/ParadisEO-GPU/src/eval/moCudakernelEval.h +++ b/ParadisEO-GPU/src/eval/moCudakernelEval.h @@ -39,9 +39,10 @@ /** * The kernel function called from the host and executed in device to compute all neighbors fitness at one time + * with linear mapping * @param _eval how to evaluate each neighbor - * @param _solution representation of solution( vector of int,float....) - * @param _allFitness Array of Fitness to save all neighbors fitness + * @param _solution the representation of solution( vector of int,float....) + * @param _allFitness the array of Fitness to save all neighbors fitness * @param _fitness the current solution fitness * @param _neighborhoodsize the size of the neighborhood */ @@ -166,6 +167,7 @@ __global__ void kernelKswap(IncrementEval _eval,EOT _solution ,EOT _sol_tmp, Fit _allFitness[id]=tmp_fitness; } } + /////////////////////////////////////////////////////////////////////////////////////////////////////////////// /**