Add some basic letsimp tests based on bug #3950
[maxima.git] / share / lapack / blas / zaxpy.lisp
blobc12459e8b156378c54bcf3e3a9c12deebfdc3858
1 ;;; Compiled by f2cl version:
2 ;;; ("f2cl1.l,v 2edcbd958861 2012/05/30 03:34:52 toy $"
3 ;;; "f2cl2.l,v 96616d88fb7e 2008/02/22 22:19:34 rtoy $"
4 ;;; "f2cl3.l,v 96616d88fb7e 2008/02/22 22:19:34 rtoy $"
5 ;;; "f2cl4.l,v 96616d88fb7e 2008/02/22 22:19:34 rtoy $"
6 ;;; "f2cl5.l,v 3fe93de3be82 2012/05/06 02:17:14 toy $"
7 ;;; "f2cl6.l,v 1d5cbacbb977 2008/08/24 00:56:27 rtoy $"
8 ;;; "macros.l,v 3fe93de3be82 2012/05/06 02:17:14 toy $")
10 ;;; Using Lisp CMU Common Lisp 20d (20D Unicode)
11 ;;;
12 ;;; Options: ((:prune-labels nil) (:auto-save t) (:relaxed-array-decls t)
13 ;;; (:coerce-assigns :as-needed) (:array-type ':array)
14 ;;; (:array-slicing t) (:declare-common nil)
15 ;;; (:float-format double-float))
17 (in-package :blas)
20 (defun zaxpy (n za zx incx zy incy)
21 (declare (type (array f2cl-lib:complex16 (*)) zy zx)
22 (type (f2cl-lib:complex16) za)
23 (type (f2cl-lib:integer4) incy incx n))
24 (f2cl-lib:with-multi-array-data
25 ((zx f2cl-lib:complex16 zx-%data% zx-%offset%)
26 (zy f2cl-lib:complex16 zy-%data% zy-%offset%))
27 (prog ((i 0) (ix 0) (iy 0))
28 (declare (type (f2cl-lib:integer4) iy ix i))
29 (if (<= n 0) (go end_label))
30 (if (= (dcabs1 za) 0.0) (go end_label))
31 (if (and (= incx 1) (= incy 1)) (go label20))
32 (setf ix 1)
33 (setf iy 1)
34 (if (< incx 0)
35 (setf ix
36 (f2cl-lib:int-add
37 (f2cl-lib:int-mul (f2cl-lib:int-sub 1 n) incx)
38 1)))
39 (if (< incy 0)
40 (setf iy
41 (f2cl-lib:int-add
42 (f2cl-lib:int-mul (f2cl-lib:int-sub 1 n) incy)
43 1)))
44 (f2cl-lib:fdo (i 1 (f2cl-lib:int-add i 1))
45 ((> i n) nil)
46 (tagbody
47 (setf (f2cl-lib:fref zy-%data% (iy) ((1 *)) zy-%offset%)
48 (+ (f2cl-lib:fref zy-%data% (iy) ((1 *)) zy-%offset%)
49 (* za
50 (f2cl-lib:fref zx-%data% (ix) ((1 *)) zx-%offset%))))
51 (setf ix (f2cl-lib:int-add ix incx))
52 (setf iy (f2cl-lib:int-add iy incy))
53 label10))
54 (go end_label)
55 label20
56 (f2cl-lib:fdo (i 1 (f2cl-lib:int-add i 1))
57 ((> i n) nil)
58 (tagbody
59 (setf (f2cl-lib:fref zy-%data% (i) ((1 *)) zy-%offset%)
60 (+ (f2cl-lib:fref zy-%data% (i) ((1 *)) zy-%offset%)
61 (* za (f2cl-lib:fref zx-%data% (i) ((1 *)) zx-%offset%))))
62 label30))
63 (go end_label)
64 end_label
65 (return (values nil nil nil nil nil nil)))))
67 (in-package #-gcl #:cl-user #+gcl "CL-USER")
68 #+#.(cl:if (cl:find-package '#:f2cl) '(and) '(or))
69 (eval-when (:load-toplevel :compile-toplevel :execute)
70 (setf (gethash 'fortran-to-lisp::zaxpy fortran-to-lisp::*f2cl-function-info*)
71 (fortran-to-lisp::make-f2cl-finfo
72 :arg-types '((fortran-to-lisp::integer4)
73 (fortran-to-lisp::complex16)
74 (array fortran-to-lisp::complex16 (*))
75 (fortran-to-lisp::integer4)
76 (array fortran-to-lisp::complex16 (*))
77 (fortran-to-lisp::integer4))
78 :return-values '(nil nil nil nil nil nil)
79 :calls '(fortran-to-lisp::dcabs1))))