Previous Intrinsics implementation with a pitch |
Parent Intrinsics implementation with a pitch |
Outline | Next The sgemm_intrinsics_pitch.cpp file |
1 2 3 4 5 6 7 8 9 |
#ifndef __SGEMM_INTRINSICS_PITCH_H__ #define __SGEMM_INTRINSICS_PITCH_H__ void sgemm(float* matOut, const float* matX, const float* matY, long unsigned int size, long unsigned int pitch); #endif |
Previous Intrinsics implementation with a pitch |
Parent Intrinsics implementation with a pitch |
Outline | Next The sgemm_intrinsics_pitch.cpp file |