You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ismaxf.f 873 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. integer function ismaxf(n,sx,incx)
  2. c
  3. c finds the index of element having max. value.
  4. c jack dongarra, linpack, 3/11/78.
  5. c modified 3/93 to return if incx .le. 0.
  6. c modified 12/3/93, array(1) declarations changed to array(*)
  7. c
  8. real sx(*),smax
  9. integer i,incx,ix,n
  10. c
  11. ismaxf = 0
  12. if( n.lt.1 .or. incx.le.0 ) return
  13. ismaxf = 1
  14. if(n.eq.1)return
  15. if(incx.eq.1)go to 20
  16. c
  17. c code for increment not equal to 1
  18. c
  19. ix = 1
  20. smax = sx(1)
  21. ix = ix + incx
  22. do 10 i = 2,n
  23. if(sx(ix).le.smax) go to 5
  24. ismaxf = i
  25. smax = sx(ix)
  26. 5 ix = ix + incx
  27. 10 continue
  28. return
  29. c
  30. c code for increment equal to 1
  31. c
  32. 20 smax = sx(1)
  33. do 30 i = 2,n
  34. if(sx(i).le.smax) go to 30
  35. ismaxf = i
  36. smax = sx(i)
  37. 30 continue
  38. return
  39. end

OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.