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

📄 cblas_xerbla.c

📁 基本的C语言线性代数函数库,在linux下可直接编译;在windows下要显示地申明包含
💻 C
字号:
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <stdarg.h>#include "cblas.h"#include "cblas_f77.h"void cblas_xerbla(int info, const char *rout, const char *form, ...){   extern RowMajorStrg;   va_list argptr;   va_start(argptr, form);   if (RowMajorStrg)   {      if (strstr(rout,"gemm") != 0)      {         if      (info == 5 ) info =  4;         else if (info == 4 ) info =  5;         else if (info == 11) info =  9;         else if (info == 9 ) info = 11;      }      else if (strstr(rout,"symm") != 0 || strstr(rout,"hemm") != 0)      {         if      (info == 5 ) info =  4;         else if (info == 4 ) info =  5;      }      else if (strstr(rout,"trmm") != 0 || strstr(rout,"trsm") != 0)      {         if      (info == 7 ) info =  6;         else if (info == 6 ) info =  7;      }      else if (strstr(rout,"gemv") != 0)      {         if      (info == 4)  info = 3;         else if (info == 3)  info = 4;      }      else if (strstr(rout,"gbmv") != 0)      {         if      (info == 4)  info = 3;         else if (info == 3)  info = 4;         else if (info == 6)  info = 5;         else if (info == 5)  info = 6;      }      else if (strstr(rout,"ger") != 0)      {         if      (info == 3) info = 2;         else if (info == 2) info = 3;         else if (info == 8) info = 6;         else if (info == 6) info = 8;      }      else if ( (strstr(rout,"her2") != 0 || strstr(rout,"hpr2") != 0)                 && strstr(rout,"her2k") == 0 )      {         if      (info == 8) info = 6;         else if (info == 6) info = 8;      }   }   if (info)      fprintf(stderr, "Parameter %d to routine %s was incorrect\n", info, rout);   vfprintf(stderr, form, argptr);   va_end(argptr);   if (info && !info)       F77_xerbla("", &info); /* Force link of our F77 error handler */   exit(-1);}

⌨️ 快捷键说明

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