📄 dbscsm_f.c
字号:
/*-------------------------------------------------------|| NIST SPARSE BLAS v. 0.9 (Sat Jul 6 14:27:21 EDT 1996) || || Authors: || Karin A. Remington and Roldan Pozo || National Institute of Standards and Technology || || Based on the interface standard proposed in: | | "A Revised Proposal for a Sparse BLAS Toolkit" by || S. Carney and K. Wu -- University of Minnesota || M. Heroux and G. Li -- Cray Research | | R. Pozo and K.A. Remington -- NIST || || Contact: || Karin A. Remington, email: kremington@nist.gov |--------------------------------------------------------*/#include <stdlib.h>#include <stdio.h>#include "spblas.h"/* Sparse BLAS Toolkit interface routine: */void dbscsm_( const int *transa, const int *mb, const int *n, const int *unitd, const double dv[], const double *alpha, const int descra[], const double val[], const int bindx[], const int bpntrb[], const int bpntre[], const int *lb, const double b[], const int *ldb, const double *beta, double c[], const int *ldc, double work[], const int *lwork){ dbscsm( *transa, *mb, *n, *unitd, dv, *alpha, descra, val, bindx, bpntrb, bpntre, *lb, b, *ldb, *beta, c, *ldc, work, *lwork);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -