You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extern int isamax_(int *n, float32 *x, int *incx);
71
70
72
-
[<SuppressUnmanagedCodeSecurity>]
73
71
[<DllImport("libopenblas", EntryPoint="saxpy_")>]
74
72
externvoid saxpy_(int *n, float32 *a, float32 *x, int *incx, float32 *y, int *incy);
75
73
76
-
[<SuppressUnmanagedCodeSecurity>]
77
74
[<DllImport("libopenblas", EntryPoint="sscal_")>]
78
75
externvoid sscal_(int *n, float32 *alpha, float32 *x, int *incx)
79
76
80
-
[<SuppressUnmanagedCodeSecurity>]
81
77
[<DllImport("libopenblas", EntryPoint="sdot_")>]
82
78
extern float32 sdot_(int *n, float32 *x, int *incx, float32 *y, int *incy);
83
79
84
-
[<SuppressUnmanagedCodeSecurity>]
85
80
[<DllImport("libopenblas", EntryPoint="sger_")>]
86
81
externvoid sger_(int *m, int *n, float32 *alpha, float32 *x, int *incx, float32 *y, int *incy, float32 *a, int *lda)
87
82
88
-
[<SuppressUnmanagedCodeSecurity>]
89
83
[<DllImport("libopenblas", EntryPoint="sasum_")>]
90
84
extern float32 sasum_(int *n, float32 *x, int *incx)
91
85
92
-
[<SuppressUnmanagedCodeSecurity>]
93
86
[<DllImport("libopenblas", EntryPoint="snrm2_")>]
94
87
extern float32 snrm2_(int *n, float32 *x, int *incx)
95
88
96
-
[<SuppressUnmanagedCodeSecurity>]
97
89
[<DllImport("libopenblas", EntryPoint="sgemm_")>]
98
90
externvoid sgemm_(char *transa, char *transb, int *m, int *n, int *k, float32 *alpha, float32 *a, int *lda, float32 *b, int *ldb, float32 *beta, float32 *c, int *ldc);
99
91
100
-
[<SuppressUnmanagedCodeSecurity>]
101
92
[<DllImport("libopenblas", EntryPoint="sgemv_")>]
102
93
externvoid sgemv_(char *trans, int *m, int *n, float32 *alpha, float32 *a, int *lda, float32 *x, int *incx, float32 *beta, float32 *y, int *incy)
externvoid daxpy_(int *n, float *a, float *x, int *incx, float *y, int *incy);
238
227
239
-
[<SuppressUnmanagedCodeSecurity>]
240
228
[<DllImport("libopenblas", EntryPoint="dscal_")>]
241
229
externvoid dscal_(int *n, float *alpha, float *x, int *incx)
242
230
243
-
[<SuppressUnmanagedCodeSecurity>]
244
231
[<DllImport("libopenblas", EntryPoint="ddot_")>]
245
232
extern float ddot_(int *n, float *x, int *incx, float *y, int *incy);
246
233
247
-
[<SuppressUnmanagedCodeSecurity>]
248
234
[<DllImport("libopenblas", EntryPoint="dger_")>]
249
235
externvoid dger_(int *m, int *n, float *alpha, float *x, int *incx, float *y, int *incy, float *a, int *lda)
250
236
251
-
[<SuppressUnmanagedCodeSecurity>]
252
237
[<DllImport("libopenblas", EntryPoint="dasum_")>]
253
238
extern float dasum_(int *n, float *x, int *incx)
254
239
255
-
[<SuppressUnmanagedCodeSecurity>]
256
240
[<DllImport("libopenblas", EntryPoint="dnrm2_")>]
257
241
extern float dnrm2_(int *n, float *x, int *incx)
258
242
259
-
[<SuppressUnmanagedCodeSecurity>]
260
243
[<DllImport("libopenblas", EntryPoint="dgemm_")>]
261
244
externvoid dgemm_(char *transa, char *transb, int *m, int *n, int *k, float *alpha, float *a, int *lda, float *b, int *ldb, float *beta, float *c, int *ldc);
262
245
263
-
[<SuppressUnmanagedCodeSecurity>]
264
246
[<DllImport("libopenblas", EntryPoint="dgemv_")>]
265
247
externvoid dgemv_(char *trans, int *m, int *n, float *alpha, float *a, int *lda, float *x, int *incx, float *beta, float *y, int *incy)
0 commit comments