⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 symv_k.c

📁 Optimized GotoBLAS libraries
💻 C
字号:
/*********************************************************************//*                                                                   *//*             Optimized BLAS libraries                              *//*                     By Kazushige Goto <kgoto@tacc.utexas.edu>     *//*                                                                   *//* Copyright (c) The University of Texas, 2005. All rights reserved. *//* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING  *//* THIS SOFTWARE AND DOCUMENTATION, INCLUDING ANY WARRANTIES OF      *//* MERCHANTABILITY, FITNESS FOR ANY PARTICULAR PURPOSE,              *//* NON-INFRINGEMENT AND WARRANTIES OF PERFORMANCE, AND ANY WARRANTY  *//* THAT MIGHT OTHERWISE ARISE FROM COURSE OF DEALING OR USAGE OF     *//* TRADE. NO WARRANTY IS EITHER EXPRESS OR IMPLIED WITH RESPECT TO   *//* THE USE OF THE SOFTWARE OR DOCUMENTATION.                         *//* Under no circumstances shall University be liable for incidental, *//* special, indirect, direct or consequential damages or loss of     *//* profits, interruption of business, or related expenses which may  *//* arise from use of Software or Documentation, including but not    *//* limited to those resulting from defects in Software and/or        *//* Documentation, or loss or inaccuracy of data of any kind.         *//*********************************************************************/#include <stdio.h>#include <ctype.h>#include "common.h"int CNAME(BLASLONG m, FLOAT alpha, FLOAT *a, BLASLONG lda,	  FLOAT *x, BLASLONG incx, FLOAT *y, BLASLONG incy, FLOAT *buffer){  BLASLONG is, min_i;  FLOAT *X = x;  FLOAT *Y = y;  FLOAT *symbuffer  = buffer;  FLOAT *gemvbuffer = (FLOAT *)(((BLASLONG)buffer + SYMV_P * SYMV_P * sizeof(FLOAT) + 4095) & ~4095);  FLOAT *bufferY    = gemvbuffer;  FLOAT *bufferX    = gemvbuffer;  if (incy != 1) {    Y = bufferY;    bufferX    = (FLOAT *)(((BLASLONG)bufferY + m * sizeof(FLOAT) + 4095) & ~4095);    gemvbuffer = bufferX;    COPY_K(m, y, incy, Y, 1);  }  if (incx != 1) {    X = bufferX;    gemvbuffer = (FLOAT *)(((BLASLONG)bufferX + m * sizeof(FLOAT) + 4095) & ~4095);    COPY_K(m, x, incx, X, 1);  }  for(is = 0; is < m; is += SYMV_P){    min_i = MIN(m - is, SYMV_P);      #ifndef LOWER    if (is >0){      GEMV_T(is, min_i, 0, alpha, 	     a + is * lda, lda,	     X,            1,	     Y + is,       1, gemvbuffer);      GEMV_N(is, min_i, 0, alpha, 	     a + is * lda,  lda,	     X + is, 1,	     Y,      1, gemvbuffer);    }#endif#ifdef LOWER    SYMCOPY_L(min_i, a + is + is * lda, lda, symbuffer);#else    SYMCOPY_U(min_i, a + is + is * lda, lda, symbuffer);#endif        GEMV_N(min_i, min_i, 0, alpha, 	   symbuffer, min_i,	   X + is, 1, 	   Y + is, 1, gemvbuffer);#ifdef LOWER    if (m - is >  SYMV_P){      GEMV_T(m - is - SYMV_P, min_i, 0, alpha, 	     a + (is + SYMV_P) + is * lda, lda,	     X + (is + SYMV_P), 1,	     Y + is,            1, gemvbuffer);            GEMV_N(m - is - SYMV_P, min_i, 0, alpha, 	     a + (is + SYMV_P) + is * lda, lda,	     X +  is,            1,	     Y + (is + SYMV_P),  1, gemvbuffer);    }#endif  } /* end of is */  if (incy != 1) {    COPY_K(m, Y, 1, y, incy);  }  return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -