added optimized zgemv_t for haswell

This commit is contained in:
wernsaar
2014-08-11 13:10:12 +02:00
parent 6fe416976d
commit 726ad085cb
13 changed files with 300 additions and 22 deletions
+2 -2
View File
@@ -26,9 +26,9 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
#define HAVE_KERNEL_16x4 1
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y) __attribute__ ((noinline));
static void sgemv_kernel_16x4( BLASLONG n, FLOAT **ap, FLOAT *x, FLOAT *y) __attribute__ ((noinline));
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y)
static void sgemv_kernel_16x4( BLASLONG n, FLOAT **ap, FLOAT *x, FLOAT *y)
{
BLASLONG register i = 0;