aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cblas/src/ddotsub.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/ddotsub.c
parent6a4a0ea7b10e768714b024f72f84e88a4448b503 (diff)
downloadydb-c3f888e801f16a6a34204639b386a77340acf4e9.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/libs/cblas/src/ddotsub.c')
-rw-r--r--contrib/libs/cblas/src/ddotsub.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/contrib/libs/cblas/src/ddotsub.c b/contrib/libs/cblas/src/ddotsub.c
new file mode 100644
index 0000000000..ba36a6918a
--- /dev/null
+++ b/contrib/libs/cblas/src/ddotsub.c
@@ -0,0 +1,36 @@
+/* ddotsub.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"
+
+/* ddotsub.f */
+
+/* The program is a fortran wrapper for ddot. */
+/* Witten by Keita Teranishi. 2/11/1998 */
+
+/* Subroutine */ int ddotsub_(integer *n, doublereal *x, integer *incx,
+ doublereal *y, integer *incy, doublereal *dot)
+{
+ extern doublereal ddot_(integer *, doublereal *, integer *, doublereal *,
+ integer *);
+
+
+
+ /* Parameter adjustments */
+ --y;
+ --x;
+
+ /* Function Body */
+ *dot = ddot_(n, &x[1], incx, &y[1], incy);
+ return 0;
+} /* ddotsub_ */
+