;;; Compiled by f2cl version 2.0 beta Date: 2006/12/21 03:42:11 ;;; Using Lisp CMU Common Lisp CVS Head 2006-12-02 00:15:46 (19D) ;;; ;;; Options: ((:prune-labels nil) (:auto-save t) (:relaxed-array-decls t) ;;; (:coerce-assigns :as-needed) (:array-type ':array) ;;; (:array-slicing t) (:declare-common nil) ;;; (:float-format double-float)) (in-package :blas) (defun isamax (n sx incx) (declare (type (array single-float (*)) sx) (type (f2cl-lib:integer4) incx n)) (f2cl-lib:with-multi-array-data ((sx single-float sx-%data% sx-%offset%)) (prog ((i 0) (ix 0) (smax 0.0f0) (isamax 0)) (declare (type (single-float) smax) (type (f2cl-lib:integer4) isamax ix i)) (setf isamax 0) (if (or (< n 1) (<= incx 0)) (go end_label)) (setf isamax 1) (if (= n 1) (go end_label)) (if (= incx 1) (go label20)) (setf ix 1) (setf smax (abs (f2cl-lib:fref sx-%data% (1) ((1 *)) sx-%offset%))) (setf ix (f2cl-lib:int-add ix incx)) (f2cl-lib:fdo (i 2 (f2cl-lib:int-add i 1)) ((> i n) nil) (tagbody (if (<= (abs (f2cl-lib:fref sx-%data% (ix) ((1 *)) sx-%offset%)) smax) (go label5)) (setf isamax i) (setf smax (abs (f2cl-lib:fref sx-%data% (ix) ((1 *)) sx-%offset%))) label5 (setf ix (f2cl-lib:int-add ix incx)) label10)) (go end_label) label20 (setf smax (abs (f2cl-lib:fref sx-%data% (1) ((1 *)) sx-%offset%))) (f2cl-lib:fdo (i 2 (f2cl-lib:int-add i 1)) ((> i n) nil) (tagbody (if (<= (abs (f2cl-lib:fref sx-%data% (i) ((1 *)) sx-%offset%)) smax) (go label30)) (setf isamax i) (setf smax (abs (f2cl-lib:fref sx-%data% (i) ((1 *)) sx-%offset%))) label30)) (go end_label) end_label (return (values isamax nil nil nil))))) (in-package #-gcl #:cl-user #+gcl "CL-USER") #+#.(cl:if (cl:find-package '#:f2cl) '(and) '(or)) (eval-when (:load-toplevel :compile-toplevel :execute) (setf (gethash 'fortran-to-lisp::isamax fortran-to-lisp::*f2cl-function-info*) (fortran-to-lisp::make-f2cl-finfo :arg-types '((fortran-to-lisp::integer4) (array single-float (*)) (fortran-to-lisp::integer4)) :return-values '(nil nil nil) :calls 'nil)))