Previous Racine carré avec des fonctions intrinsèques |
Parent Racine carré avec des fonctions intrinsèques |
Outline | Next Le fichier source |
Écrivons le fichier sqrt_intrinsics.h :
1 2 |
#ifndef __SQRT_INTRINSICS_H__ #define __SQRT_INTRINSICS_H__ |
1 |
#include <iostream>
|
1 |
void sqrt_intrinsics(float* tabResult, const float* tabX, size_t nbElement); |
1 |
#endif
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #ifndef __SQRT_INTRINSICS_H__ #define __SQRT_INTRINSICS_H__ #include <iostream> void sqrt_intrinsics(float* tabResult, const float* tabX, size_t nbElement); #endif |
Previous Racine carré avec des fonctions intrinsèques |
Parent Racine carré avec des fonctions intrinsèques |
Outline | Next Le fichier source |