Previous Le fichier header |
Parent Racine carré avec des fonctions intrinsèques |
Outline | Next Main générique |
Écrivons le fichier sqrt_intrinsics.cpp :
1 |
#include "phoenix_intrinsics.h"
|
1 |
#include "sqrt_intrinsics.h"
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
///Do the Hadamard product /** @param[out] tabResult : table of results of tabX*tabY * @param tabX : input table * @param nbElement : number of elements in the tables */ void sqrt_intrinsics(float* tabResult, const float* tabX, size_t nbElement){ size_t vecSize(PLIB_VECTOR_SIZE_FLOAT); size_t nbVec(nbElement/vecSize); for(size_t i(0lu); i < nbVec; ++i){ PRegVecf vecX = plib_load_ps(tabX + i*vecSize); PRegVecf vecRes = plib_sqrt_ps(vecX); plib_store_ps(tabResult + i*vecSize, vecRes); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #include "phoenix_intrinsics.h" #include "sqrt_intrinsics.h" ///Do the Hadamard product /** @param[out] tabResult : table of results of tabX*tabY * @param tabX : input table * @param nbElement : number of elements in the tables */ void sqrt_intrinsics(float* tabResult, const float* tabX, size_t nbElement){ size_t vecSize(PLIB_VECTOR_SIZE_FLOAT); size_t nbVec(nbElement/vecSize); for(size_t i(0lu); i < nbVec; ++i){ PRegVecf vecX = plib_load_ps(tabX + i*vecSize); PRegVecf vecRes = plib_sqrt_ps(vecX); plib_store_ps(tabResult + i*vecSize, vecRes); } } |
Previous Le fichier header |
Parent Racine carré avec des fonctions intrinsèques |
Outline | Next Main générique |