Previous Le fichier header |
Parent Appel de fonction classique |
Outline | Next Appel de fonction vectorisé |
Écrivons le fichier function_base.cpp :
1 |
#include <cmath>
|
1 |
#include "function_base.h"
|
1 2 3 4 5 6 7 8 9 10 |
///Do the function call /** @param[out] tabResult : table of results of function(tabX) * @param tabX : input table * @param nbElement : number of elements in the tables */ void function_base(float* tabResult, const float* tabX, size_t nbElement){ for(size_t i(0lu); i < nbElement; ++i){ tabResult[i] = std::COMPUTE_FUNCTION_DEF(tabX[i]); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #include <cmath> #include "function_base.h" ///Do the function call /** @param[out] tabResult : table of results of function(tabX) * @param tabX : input table * @param nbElement : number of elements in the tables */ void function_base(float* tabResult, const float* tabX, size_t nbElement){ for(size_t i(0lu); i < nbElement; ++i){ tabResult[i] = std::COMPUTE_FUNCTION_DEF(tabX[i]); } } |
Previous Le fichier header |
Parent Appel de fonction classique |
Outline | Next Appel de fonction vectorisé |