Previous Vectorization |
Parent Vectorization |
Outline | Next The sgemm_vectorize.cpp 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 |
Previous Vectorization |
Parent Vectorization |
Outline | Next The sgemm_vectorize.cpp file |