| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | /* maxloc.f -- translated by f2c (version 20061008).   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"/* ********************************************************************************** */integer _starpu_smaxloc_(real *a, integer *dimm){    /* System generated locals */    integer ret_val, i__1;    /* Local variables */    integer i__;    real smax;    /* Parameter adjustments */    --a;    /* Function Body */    ret_val = 1;    smax = a[1];    i__1 = *dimm;    for (i__ = 2; i__ <= i__1; ++i__) {	if (smax < a[i__]) {	    smax = a[i__];	    ret_val = i__;	}/* L10: */    }    return ret_val;} /* _starpu_smaxloc_ *//* ********************************************************************************** */integer _starpu_dmaxloc_(doublereal *a, integer *dimm){    /* System generated locals */    integer ret_val, i__1;    /* Local variables */    integer i__;    doublereal dmax__;    /* Parameter adjustments */    --a;    /* Function Body */    ret_val = 1;    dmax__ = a[1];    i__1 = *dimm;    for (i__ = 2; i__ <= i__1; ++i__) {	if (dmax__ < a[i__]) {	    dmax__ = a[i__];	    ret_val = i__;	}/* L20: */    }    return ret_val;} /* _starpu_dmaxloc_ */
 |