Previous Appel de fonction vectorisé |
Parent Appel de fonction vectorisé |
Outline | Next Le fichier source |
Écrivons le fichier function_vectorize.h :
1 2 |
#ifndef __function_VECTORIZE_H__ #define __function_VECTORIZE_H__ |
1 |
#include <iostream>
|
1 |
void function_vectorize(float* __restrict__ ptabResult, const float* __restrict__ ptabX, 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 __function_VECTORIZE_H__ #define __function_VECTORIZE_H__ #include <iostream> void function_vectorize(float* __restrict__ ptabResult, const float* __restrict__ ptabX, size_t nbElement); #endif |
Previous Appel de fonction vectorisé |
Parent Appel de fonction vectorisé |
Outline | Next Le fichier source |