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)
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))
20 (let* ((zero (f2cl-lib:cmplx
0.0 0.0)))
21 (declare (type (f2cl-lib:complex16
) zero
) (ignorable zero
))
22 (defun zgerc (m n alpha x incx y incy a lda
)
23 (declare (type (array f2cl-lib
:complex16
(*)) a y x
)
24 (type (f2cl-lib:complex16
) alpha
)
25 (type (f2cl-lib:integer4
) lda incy incx n m
))
26 (f2cl-lib:with-multi-array-data
27 ((x f2cl-lib
:complex16 x-%data% x-%offset%
)
28 (y f2cl-lib
:complex16 y-%data% y-%offset%
)
29 (a f2cl-lib
:complex16 a-%data% a-%offset%
))
30 (prog ((i 0) (info 0) (ix 0) (j 0) (jy 0) (kx 0) (temp #C
(0.0
0.0)))
31 (declare (type (f2cl-lib:integer4
) i info ix j jy kx
)
32 (type (f2cl-lib:complex16
) temp
))
43 ((< lda
(max (the f2cl-lib
:integer4
1) (the f2cl-lib
:integer4 m
)))
47 (xerbla "ZGERC " info
)
49 (if (or (= m
0) (= n
0) (= alpha zero
)) (go end_label
))
56 (f2cl-lib:int-mul
(f2cl-lib:int-sub n
1)
60 (f2cl-lib:fdo
(j 1 (f2cl-lib:int-add j
1))
64 ((/= (f2cl-lib:fref y
(jy) ((1 *))) zero
)
68 (f2cl-lib:fref y-%data%
72 (f2cl-lib:fdo
(i 1 (f2cl-lib:int-add i
1))
75 (setf (f2cl-lib:fref a-%data%
80 (f2cl-lib:fref a-%data%
85 (f2cl-lib:fref x-%data%
(i) ((1 *)) x-%offset%
)
88 (setf jy
(f2cl-lib:int-add jy incy
))
98 (f2cl-lib:int-sub m
1)
100 (f2cl-lib:fdo
(j 1 (f2cl-lib:int-add j
1))
104 ((/= (f2cl-lib:fref y
(jy) ((1 *))) zero
)
108 (f2cl-lib:fref y-%data%
113 (f2cl-lib:fdo
(i 1 (f2cl-lib:int-add i
1))
116 (setf (f2cl-lib:fref a-%data%
121 (f2cl-lib:fref a-%data%
126 (f2cl-lib:fref x-%data%
131 (setf ix
(f2cl-lib:int-add ix incx
))
133 (setf jy
(f2cl-lib:int-add jy incy
))
137 (return (values nil nil nil nil nil nil nil nil nil
))))))
139 (in-package #-gcl
#:cl-user
#+gcl
"CL-USER")
140 #+#.
(cl:if
(cl:find-package
'#:f2cl
) '(and) '(or))
141 (eval-when (:load-toplevel
:compile-toplevel
:execute
)
142 (setf (gethash 'fortran-to-lisp
::zgerc fortran-to-lisp
::*f2cl-function-info
*)
143 (fortran-to-lisp::make-f2cl-finfo
144 :arg-types
'((fortran-to-lisp::integer4
) (fortran-to-lisp::integer4
)
145 (fortran-to-lisp::complex16
)
146 (array fortran-to-lisp
::complex16
(*))
147 (fortran-to-lisp::integer4
)
148 (array fortran-to-lisp
::complex16
(*))
149 (fortran-to-lisp::integer4
)
150 (array fortran-to-lisp
::complex16
(*))
151 (fortran-to-lisp::integer4
))
152 :return-values
'(nil nil nil nil nil nil nil nil nil
)
153 :calls
'(fortran-to-lisp::xerbla
))))