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.

dckglm.f 9.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. *> \brief \b DCKGLM
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. * Definition:
  9. * ===========
  10. *
  11. * SUBROUTINE DCKGLM( NN, MVAL, PVAL, NVAL, NMATS, ISEED, THRESH,
  12. * NMAX, A, AF, B, BF, X, WORK, RWORK, NIN, NOUT,
  13. * INFO )
  14. *
  15. * .. Scalar Arguments ..
  16. * INTEGER INFO, NIN, NMATS, NMAX, NN, NOUT
  17. * DOUBLE PRECISION THRESH
  18. * ..
  19. * .. Array Arguments ..
  20. * INTEGER ISEED( 4 ), MVAL( * ), NVAL( * ), PVAL( * )
  21. * DOUBLE PRECISION A( * ), AF( * ), B( * ), BF( * ), RWORK( * ),
  22. * $ WORK( * ), X( * )
  23. * ..
  24. *
  25. *
  26. *> \par Purpose:
  27. * =============
  28. *>
  29. *> \verbatim
  30. *>
  31. *> DCKGLM tests DGGGLM - subroutine for solving generalized linear
  32. *> model problem.
  33. *> \endverbatim
  34. *
  35. * Arguments:
  36. * ==========
  37. *
  38. *> \param[in] NN
  39. *> \verbatim
  40. *> NN is INTEGER
  41. *> The number of values of N, M and P contained in the vectors
  42. *> NVAL, MVAL and PVAL.
  43. *> \endverbatim
  44. *>
  45. *> \param[in] MVAL
  46. *> \verbatim
  47. *> MVAL is INTEGER array, dimension (NN)
  48. *> The values of the matrix column dimension M.
  49. *> \endverbatim
  50. *>
  51. *> \param[in] PVAL
  52. *> \verbatim
  53. *> PVAL is INTEGER array, dimension (NN)
  54. *> The values of the matrix column dimension P.
  55. *> \endverbatim
  56. *>
  57. *> \param[in] NVAL
  58. *> \verbatim
  59. *> NVAL is INTEGER array, dimension (NN)
  60. *> The values of the matrix row dimension N.
  61. *> \endverbatim
  62. *>
  63. *> \param[in] NMATS
  64. *> \verbatim
  65. *> NMATS is INTEGER
  66. *> The number of matrix types to be tested for each combination
  67. *> of matrix dimensions. If NMATS >= NTYPES (the maximum
  68. *> number of matrix types), then all the different types are
  69. *> generated for testing. If NMATS < NTYPES, another input line
  70. *> is read to get the numbers of the matrix types to be used.
  71. *> \endverbatim
  72. *>
  73. *> \param[in,out] ISEED
  74. *> \verbatim
  75. *> ISEED is INTEGER array, dimension (4)
  76. *> On entry, the seed of the random number generator. The array
  77. *> elements should be between 0 and 4095, otherwise they will be
  78. *> reduced mod 4096, and ISEED(4) must be odd.
  79. *> On exit, the next seed in the random number sequence after
  80. *> all the test matrices have been generated.
  81. *> \endverbatim
  82. *>
  83. *> \param[in] THRESH
  84. *> \verbatim
  85. *> THRESH is DOUBLE PRECISION
  86. *> The threshold value for the test ratios. A result is
  87. *> included in the output file if RESID >= THRESH. To have
  88. *> every test ratio printed, use THRESH = 0.
  89. *> \endverbatim
  90. *>
  91. *> \param[in] NMAX
  92. *> \verbatim
  93. *> NMAX is INTEGER
  94. *> The maximum value permitted for M or N, used in dimensioning
  95. *> the work arrays.
  96. *> \endverbatim
  97. *>
  98. *> \param[out] A
  99. *> \verbatim
  100. *> A is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  101. *> \endverbatim
  102. *>
  103. *> \param[out] AF
  104. *> \verbatim
  105. *> AF is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  106. *> \endverbatim
  107. *>
  108. *> \param[out] B
  109. *> \verbatim
  110. *> B is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  111. *> \endverbatim
  112. *>
  113. *> \param[out] BF
  114. *> \verbatim
  115. *> BF is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  116. *> \endverbatim
  117. *>
  118. *> \param[out] X
  119. *> \verbatim
  120. *> X is DOUBLE PRECISION array, dimension (4*NMAX)
  121. *> \endverbatim
  122. *>
  123. *> \param[out] RWORK
  124. *> \verbatim
  125. *> RWORK is DOUBLE PRECISION array, dimension (NMAX)
  126. *> \endverbatim
  127. *>
  128. *> \param[out] WORK
  129. *> \verbatim
  130. *> WORK is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  131. *> \endverbatim
  132. *>
  133. *> \param[in] NIN
  134. *> \verbatim
  135. *> NIN is INTEGER
  136. *> The unit number for input.
  137. *> \endverbatim
  138. *>
  139. *> \param[in] NOUT
  140. *> \verbatim
  141. *> NOUT is INTEGER
  142. *> The unit number for output.
  143. *> \endverbatim
  144. *>
  145. *> \param[out] INFO
  146. *> \verbatim
  147. *> INFO is INTEGER
  148. *> = 0 : successful exit
  149. *> > 0 : If DLATMS returns an error code, the absolute value
  150. *> of it is returned.
  151. *> \endverbatim
  152. *
  153. * Authors:
  154. * ========
  155. *
  156. *> \author Univ. of Tennessee
  157. *> \author Univ. of California Berkeley
  158. *> \author Univ. of Colorado Denver
  159. *> \author NAG Ltd.
  160. *
  161. *> \date December 2016
  162. *
  163. *> \ingroup double_eig
  164. *
  165. * =====================================================================
  166. SUBROUTINE DCKGLM( NN, MVAL, PVAL, NVAL, NMATS, ISEED, THRESH,
  167. $ NMAX, A, AF, B, BF, X, WORK, RWORK, NIN, NOUT,
  168. $ INFO )
  169. *
  170. * -- LAPACK test routine (version 3.7.0) --
  171. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  172. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  173. * December 2016
  174. *
  175. * .. Scalar Arguments ..
  176. INTEGER INFO, NIN, NMATS, NMAX, NN, NOUT
  177. DOUBLE PRECISION THRESH
  178. * ..
  179. * .. Array Arguments ..
  180. INTEGER ISEED( 4 ), MVAL( * ), NVAL( * ), PVAL( * )
  181. DOUBLE PRECISION A( * ), AF( * ), B( * ), BF( * ), RWORK( * ),
  182. $ WORK( * ), X( * )
  183. * ..
  184. *
  185. * =====================================================================
  186. *
  187. * .. Parameters ..
  188. INTEGER NTYPES
  189. PARAMETER ( NTYPES = 8 )
  190. * ..
  191. * .. Local Scalars ..
  192. LOGICAL FIRSTT
  193. CHARACTER DISTA, DISTB, TYPE
  194. CHARACTER*3 PATH
  195. INTEGER I, IINFO, IK, IMAT, KLA, KLB, KUA, KUB, LDA,
  196. $ LDB, LWORK, M, MODEA, MODEB, N, NFAIL, NRUN, P
  197. DOUBLE PRECISION ANORM, BNORM, CNDNMA, CNDNMB, RESID
  198. * ..
  199. * .. Local Arrays ..
  200. LOGICAL DOTYPE( NTYPES )
  201. * ..
  202. * .. External Functions ..
  203. DOUBLE PRECISION DLARND
  204. EXTERNAL DLARND
  205. * ..
  206. * .. External Subroutines ..
  207. EXTERNAL ALAHDG, ALAREQ, ALASUM, DGLMTS, DLATB9, DLATMS
  208. * ..
  209. * .. Intrinsic Functions ..
  210. INTRINSIC ABS
  211. * ..
  212. * .. Executable Statements ..
  213. *
  214. * Initialize constants.
  215. *
  216. PATH( 1: 3 ) = 'GLM'
  217. INFO = 0
  218. NRUN = 0
  219. NFAIL = 0
  220. FIRSTT = .TRUE.
  221. CALL ALAREQ( PATH, NMATS, DOTYPE, NTYPES, NIN, NOUT )
  222. LDA = NMAX
  223. LDB = NMAX
  224. LWORK = NMAX*NMAX
  225. *
  226. * Check for valid input values.
  227. *
  228. DO 10 IK = 1, NN
  229. M = MVAL( IK )
  230. P = PVAL( IK )
  231. N = NVAL( IK )
  232. IF( M.GT.N .OR. N.GT.M+P ) THEN
  233. IF( FIRSTT ) THEN
  234. WRITE( NOUT, FMT = * )
  235. FIRSTT = .FALSE.
  236. END IF
  237. WRITE( NOUT, FMT = 9997 )M, P, N
  238. END IF
  239. 10 CONTINUE
  240. FIRSTT = .TRUE.
  241. *
  242. * Do for each value of M in MVAL.
  243. *
  244. DO 40 IK = 1, NN
  245. M = MVAL( IK )
  246. P = PVAL( IK )
  247. N = NVAL( IK )
  248. IF( M.GT.N .OR. N.GT.M+P )
  249. $ GO TO 40
  250. *
  251. DO 30 IMAT = 1, NTYPES
  252. *
  253. * Do the tests only if DOTYPE( IMAT ) is true.
  254. *
  255. IF( .NOT.DOTYPE( IMAT ) )
  256. $ GO TO 30
  257. *
  258. * Set up parameters with DLATB9 and generate test
  259. * matrices A and B with DLATMS.
  260. *
  261. CALL DLATB9( PATH, IMAT, M, P, N, TYPE, KLA, KUA, KLB, KUB,
  262. $ ANORM, BNORM, MODEA, MODEB, CNDNMA, CNDNMB,
  263. $ DISTA, DISTB )
  264. *
  265. CALL DLATMS( N, M, DISTA, ISEED, TYPE, RWORK, MODEA, CNDNMA,
  266. $ ANORM, KLA, KUA, 'No packing', A, LDA, WORK,
  267. $ IINFO )
  268. IF( IINFO.NE.0 ) THEN
  269. WRITE( NOUT, FMT = 9999 )IINFO
  270. INFO = ABS( IINFO )
  271. GO TO 30
  272. END IF
  273. *
  274. CALL DLATMS( N, P, DISTB, ISEED, TYPE, RWORK, MODEB, CNDNMB,
  275. $ BNORM, KLB, KUB, 'No packing', B, LDB, WORK,
  276. $ IINFO )
  277. IF( IINFO.NE.0 ) THEN
  278. WRITE( NOUT, FMT = 9999 )IINFO
  279. INFO = ABS( IINFO )
  280. GO TO 30
  281. END IF
  282. *
  283. * Generate random left hand side vector of GLM
  284. *
  285. DO 20 I = 1, N
  286. X( I ) = DLARND( 2, ISEED )
  287. 20 CONTINUE
  288. *
  289. CALL DGLMTS( N, M, P, A, AF, LDA, B, BF, LDB, X,
  290. $ X( NMAX+1 ), X( 2*NMAX+1 ), X( 3*NMAX+1 ),
  291. $ WORK, LWORK, RWORK, RESID )
  292. *
  293. * Print information about the tests that did not
  294. * pass the threshold.
  295. *
  296. IF( RESID.GE.THRESH ) THEN
  297. IF( NFAIL.EQ.0 .AND. FIRSTT ) THEN
  298. FIRSTT = .FALSE.
  299. CALL ALAHDG( NOUT, PATH )
  300. END IF
  301. WRITE( NOUT, FMT = 9998 )N, M, P, IMAT, 1, RESID
  302. NFAIL = NFAIL + 1
  303. END IF
  304. NRUN = NRUN + 1
  305. *
  306. 30 CONTINUE
  307. 40 CONTINUE
  308. *
  309. * Print a summary of the results.
  310. *
  311. CALL ALASUM( PATH, NOUT, NFAIL, NRUN, 0 )
  312. *
  313. 9999 FORMAT( ' DLATMS in DCKGLM INFO = ', I5 )
  314. 9998 FORMAT( ' N=', I4, ' M=', I4, ', P=', I4, ', type ', I2,
  315. $ ', test ', I2, ', ratio=', G13.6 )
  316. 9997 FORMAT( ' *** Invalid input for GLM: M = ', I6, ', P = ', I6,
  317. $ ', N = ', I6, ';', / ' must satisfy M <= N <= M+P ',
  318. $ '(this set of values will be skipped)' )
  319. RETURN
  320. *
  321. * End of DCKGLM
  322. *
  323. END