Previous Produit de matrices avec des fonctions intrinsèques |
Parent Produit de matrices avec des fonctions intrinsèques |
Outline | Next Le fichier source |
Écrivons le fichier sgemm_intrinsics.h :
1 2 3 4 5 6 7 8 9 |
#ifndef __SGEMM_INTRINSICS_H__ #define __SGEMM_INTRINSICS_H__ void sgemm_intrinsics(float* matOut, const float* matX, const float* matY, long unsigned int size); #endif |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #ifndef __SGEMM_INTRINSICS_H__ #define __SGEMM_INTRINSICS_H__ void sgemm_intrinsics(float* matOut, const float* matX, const float* matY, long unsigned int size); #endif |
Previous Produit de matrices avec des fonctions intrinsèques |
Parent Produit de matrices avec des fonctions intrinsèques |
Outline | Next Le fichier source |