10.4.1 : The sgemm_vectorize.h file

The sgemm_vectorize.h file :
1
2
3
4
5
6
7
8
9
#ifndef __SGEMM_VECTORIZE_H__
#define __SGEMM_VECTORIZE_H__


void sgemm(float* __restrict__ pmatOut, const float* __restrict__ pmatX, const float* __restrict__ pmatY, long unsigned int size);



#endif