aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cblas/src/cdotcsub.c
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-07-30 16:42:12 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-07-30 16:42:12 +0300
commitc3f888e801f16a6a34204639b386a77340acf4e9 (patch)
tree46d965a71238a5e6a9c4a0244d0ac64e09bb4540 /contrib/libs/cblas/src/cdotcsub.c
parent6a4a0ea7b10e768714b024f72f84e88a4448b503 (diff)
downloadydb-c3f888e801f16a6a34204639b386a77340acf4e9.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/libs/cblas/src/cdotcsub.c')
-rw-r--r--contrib/libs/cblas/src/cdotcsub.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/contrib/libs/cblas/src/cdotcsub.c b/contrib/libs/cblas/src/cdotcsub.c
new file mode 100644
index 0000000000..c8adb9d92b
--- /dev/null
+++ b/contrib/libs/cblas/src/cdotcsub.c
@@ -0,0 +1,41 @@
+/* cdotcsub.f -- translated by f2c (version 20200916).
+ You must link the resulting object file with libf2c:
+ on Microsoft Windows system, link with libf2c.lib;
+ on Linux or Unix systems, link with .../path/to/libf2c.a -lm
+ or, if you install libf2c.a in a standard place, with -lf2c -lm
+ -- in that order, at the end of the command line, as in
+ cc *.o -lf2c -lm
+ Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
+
+ http://www.netlib.org/f2c/libf2c.zip
+*/
+
+#include "f2c.h"
+
+/* cdotcsub.f */
+
+/* The program is a fortran wrapper for cdotc. */
+/* Witten by Keita Teranishi. 2/11/1998 */
+
+/* Subroutine */ int cdotcsub_(integer *n, complex *x, integer *incx, complex
+ *y, integer *incy, complex *dotc)
+{
+ /* System generated locals */
+ complex q__1;
+
+ /* Local variables */
+ extern /* Complex */ VOID cdotc_(complex *, integer *, complex *, integer
+ *, complex *, integer *);
+
+
+
+ /* Parameter adjustments */
+ --y;
+ --x;
+
+ /* Function Body */
+ cdotc_(&q__1, n, &x[1], incx, &y[1], incy);
+ dotc->r = q__1.r, dotc->i = q__1.i;
+ return 0;
+} /* cdotcsub_ */
+