1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
  
     | 
    
      <html lang="en">
<head>
<title>Level 3 CBLAS Functions - GNU Scientific Library -- Reference Manual</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="GNU Scientific Library -- Reference Manual">
<meta name="generator" content="makeinfo 4.8">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="GSL-CBLAS-Library.html" title="GSL CBLAS Library">
<link rel="prev" href="Level-2-CBLAS-Functions.html" title="Level 2 CBLAS Functions">
<link rel="next" href="GSL-CBLAS-Examples.html" title="GSL CBLAS Examples">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 The GSL Team.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``GNU General Public License'' and ``Free Software
Needs Free Documentation'', the Front-Cover text being ``A GNU Manual'',
and with the Back-Cover Text being (a) (see below).  A copy of the
license is included in the section entitled ``GNU Free Documentation
License''.
(a) The Back-Cover Text is: ``You have freedom to copy and modify this
GNU Manual, like GNU software.''-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<p>
<a name="Level-3-CBLAS-Functions"></a>
Next: <a rel="next" accesskey="n" href="GSL-CBLAS-Examples.html">GSL CBLAS Examples</a>,
Previous: <a rel="previous" accesskey="p" href="Level-2-CBLAS-Functions.html">Level 2 CBLAS Functions</a>,
Up: <a rel="up" accesskey="u" href="GSL-CBLAS-Library.html">GSL CBLAS Library</a>
<hr>
</div>
<h3 class="section">D.3 Level 3</h3>
<div class="defun">
— Function: void <b>cblas_sgemm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, const int K, const float alpha, const float * A, const int lda, const float * B, const int ldb, const float beta, float * C, const int ldc</var>)<var><a name="index-cblas_005fsgemm-2610"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_ssymm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const float alpha, const float * A, const int lda, const float * B, const int ldb, const float beta, float * C, const int ldc</var>)<var><a name="index-cblas_005fssymm-2611"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_ssyrk</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const float alpha, const float * A, const int lda, const float beta, float * C, const int ldc</var>)<var><a name="index-cblas_005fssyrk-2612"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_ssyr2k</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const float alpha, const float * A, const int lda, const float * B, const int ldb, const float beta, float * C, const int ldc</var>)<var><a name="index-cblas_005fssyr2k-2613"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_strmm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const float alpha, const float * A, const int lda, float * B, const int ldb</var>)<var><a name="index-cblas_005fstrmm-2614"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_strsm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const float alpha, const float * A, const int lda, float * B, const int ldb</var>)<var><a name="index-cblas_005fstrsm-2615"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_dgemm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, const int K, const double alpha, const double * A, const int lda, const double * B, const int ldb, const double beta, double * C, const int ldc</var>)<var><a name="index-cblas_005fdgemm-2616"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_dsymm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const double alpha, const double * A, const int lda, const double * B, const int ldb, const double beta, double * C, const int ldc</var>)<var><a name="index-cblas_005fdsymm-2617"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_dsyrk</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const double alpha, const double * A, const int lda, const double beta, double * C, const int ldc</var>)<var><a name="index-cblas_005fdsyrk-2618"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_dsyr2k</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const double alpha, const double * A, const int lda, const double * B, const int ldb, const double beta, double * C, const int ldc</var>)<var><a name="index-cblas_005fdsyr2k-2619"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_dtrmm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const double alpha, const double * A, const int lda, double * B, const int ldb</var>)<var><a name="index-cblas_005fdtrmm-2620"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_dtrsm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const double alpha, const double * A, const int lda, double * B, const int ldb</var>)<var><a name="index-cblas_005fdtrsm-2621"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_cgemm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, const int K, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fcgemm-2622"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_csymm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fcsymm-2623"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_csyrk</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const void * alpha, const void * A, const int lda, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fcsyrk-2624"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_csyr2k</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fcsyr2k-2625"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_ctrmm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const void * alpha, const void * A, const int lda, void * B, const int ldb</var>)<var><a name="index-cblas_005fctrmm-2626"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_ctrsm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const void * alpha, const void * A, const int lda, void * B, const int ldb</var>)<var><a name="index-cblas_005fctrsm-2627"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_zgemm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_TRANSPOSE TransB, const int M, const int N, const int K, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fzgemm-2628"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_zsymm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fzsymm-2629"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_zsyrk</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const void * alpha, const void * A, const int lda, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fzsyrk-2630"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_zsyr2k</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fzsyr2k-2631"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_ztrmm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const void * alpha, const void * A, const int lda, void * B, const int ldb</var>)<var><a name="index-cblas_005fztrmm-2632"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_ztrsm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int M, const int N, const void * alpha, const void * A, const int lda, void * B, const int ldb</var>)<var><a name="index-cblas_005fztrsm-2633"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_chemm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fchemm-2634"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_cherk</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const float alpha, const void * A, const int lda, const float beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fcherk-2635"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_cher2k</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const float beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fcher2k-2636"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_zhemm</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const void * beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fzhemm-2637"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_zherk</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const double alpha, const void * A, const int lda, const double beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fzherk-2638"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_zher2k</b> (<var>const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const void * alpha, const void * A, const int lda, const void * B, const int ldb, const double beta, void * C, const int ldc</var>)<var><a name="index-cblas_005fzher2k-2639"></a></var><br>
</div>
<div class="defun">
— Function: void <b>cblas_xerbla</b> (<var>int p, const char * rout, const char * form, ...</var>)<var><a name="index-cblas_005fxerbla-2640"></a></var><br>
</div>
<hr>The GNU Scientific Library - a free numerical library licensed under the GNU GPL<br>Back to the <a href="/software/gsl/">GNU Scientific Library Homepage</a></body></html>
 
     |