1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869
|
#!/usr/bin/python3
#
# MAGMA (version 2.9.0) --
# Univ. of Tennessee, Knoxville
# Univ. of California, Berkeley
# Univ. of Colorado, Denver
# @date January 2025
## @file
# @author Mark Gates
#
# Script to run testers with various matrix sizes.
#
# See also the run_summarize.py script, which post-processes the output,
# sorting it into errors (segfaults, etc.), accuracy failures, and known failures.
# run_summarize.py can apply a larger tolerance without re-running the tests.
#
# Small sizes are chosen around block sizes (e.g., 30...34 around 32) to
# detect bugs that occur at the block size, and the switch over from
# LAPACK to MAGMA code.
# Tall and wide sizes are chosen to exercise different aspect ratios,
# e.g., nearly square, 2:1, 10:1, 1:2, 1:10.
# The -h or --help option provides a summary of the options.
#
# Output to file vs. console
# --------------------------
# When output is redirected to a file, it prints a
# short summary to stderr on the console and all other output to the file.
# For example:
#
# ./run_tests.py --lu --precision s --small > lu.txt
# testing_sgesv_gpu -c ok
# testing_sgetrf_gpu -c2 ok
# testing_sgetf2_gpu -c ok
# testing_sgetri_gpu -c ** 45 tests failed
# testing_sgetrf_mgpu -c2 ok
# testing_sgesv -c ok
# testing_sgetrf -c2 ok
#
# ****************************************************************************************************
# summary
# ****************************************************************************************************
# 282 tests in 7 commands passed
# 45 tests failed accuracy test
# 0 errors detected (crashes, CUDA errors, etc.)
# routines with failures:
# testing_sgetri_gpu -c
#
# When using --interactive with output to console (TTY), it pauses after
# each test. At the pause, typing "M" re-makes and re-runs that tester,
# while typing enter goes to the next tester.
# For example (some output suppressed with ... for brevity):
#
# ./run_tests.py --lu --precision s --small --interactive
# ****************************************************************************************************
# ./testing_sgesv_gpu -c -n 1:20:1 ...
# ****************************************************************************************************
# N NRHS CPU Gflop/s (sec) GPU Gflop/s (sec) ||B - AX|| / N*||A||*||X||
# ================================================================================
# 1 1 --- ( --- ) 0.00 ( 0.00) 9.26e-08 ok
# 2 1 --- ( --- ) 0.00 ( 0.00) 1.32e-08 ok
# 3 1 --- ( --- ) 0.00 ( 0.00) 8.99e-09 ok
# ...
# ok
# [enter to continue; M to make and re-run]
#
# ****************************************************************************************************
# ./testing_sgetri_gpu -c -n 1:20:1 ...
# ****************************************************************************************************
# % MAGMA 1.4.0 svn compiled for CUDA capability >= 3.0
# % CUDA runtime 6000, driver 6000. MAGMA not compiled with OpenMP.
# % device 0: GeForce GT 750M, 925.5 MHz clock, 2047.6 MB memory, capability 3.0
# Usage: ./testing_sgetri_gpu [options] [-h|--help]
#
# N CPU Gflop/s (sec) GPU Gflop/s (sec) ||R||_F / (N*||A||_F)
# =================================================================
# 1 0.00 ( 0.00) 0.00 ( 0.00) 6.87e+01 failed
# 2 0.00 ( 0.00) 0.00 ( 0.00) 2.41e+00 failed
# 3 0.01 ( 0.00) 0.00 ( 0.00) 1.12e+00 failed
# ...
# ** 45 tests failed
# [enter to continue; M to make and re-run]
#
# ...
#
# ****************************************************************************************************
# summary
# ****************************************************************************************************
# 282 tests in 7 commands passed
# 45 tests failed accuracy test
# 0 errors detected (crashes, CUDA errors, etc.)
# routines with failures:
# testing_sgetri_gpu -c
#
#
# What tests are run
# ------------------
# The --blas, --aux, --chol, --hesv, --lu, --qr, --syev, --sygv, --geev, --svd,
# --batched options run particular sets of tests. By default, all tests are run,
# except batched because we don't want to run batched with, say, N=1000.
# --mgpu runs only multi-GPU tests from the above sets.
# These may be negated with --no-blas, --no-aux, etc.
#
# The --start option skips all testers before the given one, then continues
# with testers from there. This is helpful to restart a set
# of tests. For example:
#
# ./run_tests.py --start testing_spotrf > output.log
#
# If specific testers are named on the command line, only those are run.
# For example:
#
# ./run_tests.py testing_spotrf testing_sgetrf
#
# The -p/--precision option controls what precisions are tested, the default
# being "sdcz" for all four precisions. For example, to run single and double:
#
# ./run_tests.py -p sd
#
# The -s/--small, -m/--medium, -l/--large options control what sizes are tested,
# the default being all three sets.
# -s/--small does small tests, N < 300.
# -m/--medium does medium tests, N < 1000.
# -l/--large does large tests, N > 1000.
# For example, running small and medium tests:
#
# ./run_tests.py -s -m
#
# Specific tests can be chosen using --itype, --version, -U/--upper, -L/--lower,
# -J/--jobz, -D/--diag, and --fraction. For instance:
#
# ./run_tests.py testing_ssygvdx_2stage -L -JN --itype 1 -s --no-mgpu
#
#
# What is checked
# ------------------
# The --memcheck option runs cuda-memcheck. This is very helpful for finding
# memory bugs (reading & writing outside allocated memory). It is, however, slow.
#
# The --tol option sets the tolerance to verify accuracy. This is 30 by default,
# which may be too tight for some testers. Setting it somewhat higher
# (e.g., 50 or 100) filters out spurious accuracy failures. Also see the
# run_summarize.py script, which parses the testers output and can filter out
# tests using a higher tolerance after the fact, without re-running them.
#
# Run with default tolerance tol=30.
#
# ./run_tests.py -s -m testing_sgemv > run-gemv.txt
# testing_sgemv -c ** 7 tests failed
# testing_sgemv -T -c ok
# testing_sgemv -C -c ok
#
# ****************************************************************************************************
# summary
# ****************************************************************************************************
# 302 tests in 3 commands passed
# 7 tests failed accuracy test
# 0 errors detected (crashes, CUDA errors, etc.)
# routines with failures:
# testing_sgemv -c
#
# Post-process with tolerance tol2=100. Numbers in {braces} are ratio = error/epsilon, which should be < tol.
# Here, the ratio is just slightly larger {31.2 to 37.4} than the default tol=30.
#
# ./run_summarize.py --tol2 100 run-gemv.txt
# single epsilon 5.96e-08, tol2 100, tol2*eps 5.96e-06, 30*eps 1.79e-06, 100*eps 5.96e-06, 1000*eps 5.96e-05
# double epsilon 1.11e-16, tol2 100, tol2*eps 1.11e-14, 30*eps 3.33e-15, 100*eps 1.11e-14, 1000*eps 1.11e-13
# ########################################################################################################################
# okay tests: 3 commands, 302 tests
#
#
# ########################################################################################################################
# errors (segfault, etc.): 0 commands, 0 tests
#
#
# ########################################################################################################################
# failed tests (error > tol2*eps): 0 commands, 0 tests
#
#
# ########################################################################################################################
# suspicious tests (tol2*eps > error > tol*eps): 1 commands, 7 tests
# ./testing_sgemv
# 63 10000 0.19 ( 6.73) 1.65 ( 0.76) 8.58 ( 0.15) 1.86e-06 { 31.2} 1.11e-06 { 18.6} suspect
# 64 10000 0.19 ( 6.73) 1.68 ( 0.76) 14.36 ( 0.09) 2.17e-06 { 36.4} 1.14e-06 { 19.1} suspect
# 65 10000 0.19 ( 6.72) 1.43 ( 0.91) 8.73 ( 0.15) 2.23e-06 { 37.4} 1.09e-06 { 18.3} suspect
# 31 10000 0.09 ( 6.70) 1.25 ( 0.49) 6.33 ( 0.10) 1.93e-06 { 32.4} 8.65e-07 { 14.5} suspect
# 32 10000 0.10 ( 6.68) 1.35 ( 0.47) 11.00 ( 0.06) 2.15e-06 { 36.1} 9.14e-07 { 15.3} suspect
# 33 10000 0.10 ( 6.72) 1.24 ( 0.53) 9.85 ( 0.07) 2.19e-06 { 36.7} 1.07e-06 { 18.0} suspect
# 10 10000 0.03 ( 6.58) 0.52 ( 0.39) 5.71 ( 0.04) 2.23e-06 { 37.4} 1.11e-06 { 18.6} suspect
#
#
#
# ########################################################################################################################
# known failures: 0 commands, 0 tests
#
#
# ########################################################################################################################
# ignored errors (e.g., malloc failed): 0 commands, 0 tests
#
#
# ########################################################################################################################
# other (lines that did not get matched): 0 commands, 0 tests
#
# The --dev option sets which GPU device to use.
#
# By default, a wide range of sizes and shapes (square, tall, wide) are tested,
# as applicable. The -n option overrides these.
#
# For multi-GPU codes, --ngpu specifies the number of GPUs, default 2. Most
# testers accept --ngpu -1 to test the multi-GPU code on a single GPU.
# (Using --ngpu 1 will usually invoke the single-GPU code.)
import os
import re
import sys
import time
import glob
import subprocess
from subprocess import PIPE, STDOUT
from optparse import OptionParser
parser = OptionParser()
parser.add_option('-p', '--precisions', action='store', help='run given precisions (initials, e.g., "sd" for single and double)', default='sdcz')
parser.add_option( '--start', action='store', help='start with given routine; useful to restart an interupted run')
parser.add_option( '--memcheck', action='store_true', help='run with cuda-memcheck (slow)')
parser.add_option( '--tol', action='store', help='set tolerance')
parser.add_option( '--dev', action='store', help='set GPU device to use')
parser.add_option( '--batch', action='store', help='batch count for batched tests', default='100')
parser.add_option( '--niter', action='store', help='number of iterations to repeat', default='1')
parser.add_option( '--ngpu', action='store', help='number of GPUs for multi-GPU tests; add --mgpu to run only multi-GPU tests', default='2')
parser.add_option( '--interactive',action='store_true', help='stop between tests')
# options to specify sizes
parser.add_option( '--xsmall', action='store_true', help='run extra small tests, N=25:100:25, 32:128:32')
parser.add_option('-s', '--small', action='store_true', help='run small tests, N < 300')
parser.add_option('-m', '--medium', action='store_true', help='run medium tests, N < 1000')
parser.add_option('-l', '--large', action='store_true', help='run large tests, N > 1000')
parser.add_option( '--xlarge', action='store_true', help='run extra large tests, N > 100000 (some testers fail)')
parser.add_option('-n', '-N', action='append', help='run specific sizes; repeatable', default=[])
# options to specify shapes
parser.add_option( '--square', action='store_true', help='run square tests (M == N)')
parser.add_option( '--tall', action='store_true', help='run tall tests (M > N)')
parser.add_option( '--wide', action='store_true', help='run wide tests (M < N)')
parser.add_option( '--mnk', action='store_true', help='run mnk tests (M, N, K not all equal)')
# options to select classes of routines
parser.add_option( '--blas', action='store_true', help='run BLAS tests')
parser.add_option( '--aux', action='store_true', help='run auxiliary routine tests')
parser.add_option( '--chol', action='store_true', help='run Cholesky factorization & solver tests')
parser.add_option( '--hesv', action='store_true', help='run Cholesky factorization & solver tests')
parser.add_option( '--lu', action='store_true', help='run LU factorization & solver tests')
parser.add_option( '--qr', action='store_true', help='run QR factorization & solver (gels) tests')
parser.add_option( '--syev', action='store_true', help='run symmetric eigenvalue tests')
parser.add_option( '--sygv', action='store_true', help='run generalized symmetric eigenvalue tests')
parser.add_option( '--geev', action='store_true', help='run non-symmetric eigenvalue tests')
parser.add_option( '--svd', action='store_true', help='run SVD tests')
parser.add_option( '--batched', action='store_true', help='run batched (BLAS, LU, etc.) tests')
parser.add_option( '--vbatched', action='store_true', help='run vbatched (BLAS, LU, etc.) tests')
parser.add_option( '--no-blas', action='store_true', help='do not run BLAS tests')
parser.add_option( '--no-aux', action='store_true', help='do not run auxiliary routine tests')
parser.add_option( '--no-chol', action='store_true', help='do not run Cholesky factorization & solver tests')
parser.add_option( '--no-hesv', action='store_true', help='do not run Cholesky factorization & solver tests')
parser.add_option( '--no-lu', action='store_true', help='do not run LU factorization & solver tests')
parser.add_option( '--no-qr', action='store_true', help='do not run QR factorization & solver (gels) tests')
parser.add_option( '--no-syev', action='store_true', help='do not run symmetric eigenvalue tests')
parser.add_option( '--no-sygv', action='store_true', help='do not run generalized symmetric eigenvalue tests')
parser.add_option( '--no-geev', action='store_true', help='do not run non-symmetric eigenvalue tests')
parser.add_option( '--no-svd', action='store_true', help='do not run SVD tests')
parser.add_option( '--no-batched', action='store_true', help='do not run batched tests')
parser.add_option( '--no-vbatched',action='store_true', help='do not run vbatched tests')
# options to select subset of commands
parser.add_option( '--mgpu', action='store_true', help='select multi-GPU tests; add --ngpu to specify number of GPUs')
parser.add_option( '--no-mgpu', action='store_true', help='select non multi-GPU tests')
parser.add_option( '--itype', action='store', help='select tests matching itype', default=0 )
parser.add_option( '--version', action='store', help='select tests matching version', default=0 )
parser.add_option('-U', '--upper', action='store_true', help='select tests matching upper')
parser.add_option('-L', '--lower', action='store_true', help='select tests matching lower')
parser.add_option('-J', '--jobz', action='store', help='select tests matching jobz (-JV, -JN)')
parser.add_option('-D', '--diag', action='store', help='select tests matching diag (-DU, -DN)')
parser.add_option('-C', action='store_true', help='select tests matching -C')
parser.add_option('-T', action='store_true', help='select tests matching -T')
parser.add_option( '--fraction', action='store', help='select tests matching fraction')
parser.add_option( '--UN', action='store_true', help='select tests matching -UN')
parser.add_option( '--UO', action='store_true', help='select tests matching -UO')
parser.add_option( '--US', action='store_true', help='select tests matching -US')
parser.add_option( '--UA', action='store_true', help='select tests matching -UA')
parser.add_option( '--VN', action='store_true', help='select tests matching -VN')
parser.add_option( '--VO', action='store_true', help='select tests matching -VO')
parser.add_option( '--VS', action='store_true', help='select tests matching -VS')
parser.add_option( '--VA', action='store_true', help='select tests matching -VA')
parser.add_option( '--NN', action='store_true', help='select tests matching -NN')
parser.add_option( '--NT', action='store_true', help='select tests matching -NT')
parser.add_option( '--TN', action='store_true', help='select tests matching -TN')
parser.add_option( '--TT', action='store_true', help='select tests matching -TT')
parser.add_option( '--NC', action='store_true', help='select tests matching -NC')
parser.add_option( '--CN', action='store_true', help='select tests matching -CN')
parser.add_option( '--CC', action='store_true', help='select tests matching -CC')
(opts, args) = parser.parse_args()
# when output is redirected to file instead of TTY console,
# print extra messages to stderr on TTY console.
output_to_file = not sys.stdout.isatty()
if (output_to_file):
opts.interactive = False
# default if no sizes given is all sizes (small, medium, large)
if (not opts.xsmall and not opts.small and not opts.medium and
not opts.large and not opts.xlarge):
opts.small = True
opts.medium = True
opts.large = True
# end
# default if no shape is given is all shapes (square, tall, wide, mnk)
if (not opts.square and not opts.tall and not opts.wide and not opts.mnk):
opts.square = True
opts.tall = True
opts.wide = True
opts.mnk = True
# end
# default if no groups given is all groups
# also, listing specific testers on command line overrides any groups
if ( len(args) > 0 or (
not opts.blas and not opts.aux and
not opts.chol and not opts.hesv and not opts.lu and not opts.qr and
not opts.syev and not opts.sygv and not opts.geev and
not opts.svd and not opts.batched and not opts.vbatched )):
opts.blas = True
opts.aux = True
opts.chol = True
opts.hesv = True
opts.lu = True
opts.qr = True
opts.syev = True
opts.sygv = True
opts.geev = True
opts.svd = True
opts.batched = (len(args) > 0) # batched routines must be explicitly requested, as the typical size range is different
opts.vbatched = (len(args) > 0)
# end
# "no" options override whatever was previously set
if opts.no_blas : opts.blas = False
if opts.no_aux : opts.aux = False
if opts.no_chol : opts.chol = False
if opts.no_hesv : opts.hesv = False
if opts.no_lu : opts.lu = False
if opts.no_qr : opts.qr = False
if opts.no_syev : opts.syev = False
if opts.no_sygv : opts.sygv = False
if opts.no_geev : opts.geev = False
if opts.no_svd : opts.svd = False
if opts.no_batched : opts.batched = False
if opts.no_vbatched : opts.vbatched = False
#print( 'opts', opts )
#print( 'args', args )
ngpu = '--ngpu ' + opts.ngpu + ' '
batch = '--batch ' + opts.batch + ' '
# ----------------------------------------------------------------------
# problem sizes
# n is square
# tall is M > N
# wide is M < N
# mn is all of above
# mnk is all of above + combinations of M, N, K where K is unique
# nk is square + combinations of M, N, K where K is unique (for zherk, zher2k; M is ignored)
# ----------
n = ''
if opts.square and opts.xsmall:
n += ' -n 32:128:32 -n 25:100:25'
if opts.square and opts.small:
n += (' -n 1:20:1'
+ ' -n 30 -n 31 -n 32 -n 33 -n 34'
+ ' -n 62 -n 63 -n 64 -n 65 -n 66'
+ ' -n 94 -n 95 -n 96 -n 97 -n 98'
+ ' -n 126 -n 127 -n 128 -n 129 -n 130'
+ ' -n 254 -n 255 -n 256 -n 257 -n 258'
)
if opts.square and opts.medium:
n += ' -n 510 -n 511 -n 512 -n 513 -n 514 -n 100:900:100'
if opts.square and opts.large:
n += ' -n 1000:4000:1000'
# ----------
# to avoid excessive runtime with large m or n in zunmql, etc., k is set to min(m,n)
tall = ''
if opts.tall and opts.small:
tall += (' -n 2,1 -n 3,1 -n 4,2'
+ ' -n 20,19 -n 20,10 -n 20,2 -n 20,1'
+ ' -n 200,199 -n 200,100 -n 200,20 -n 200,10 -n 200,1'
)
if opts.tall and opts.medium:
tall += (' -n 600,599 -n 600,300'
+ ' -n 600,1,1 -n 600,10,10'
+ ' -n 600,31,31 -n 600,32,32 -n 600,33,33'
+ ' -n 600,63,63 -n 600,64,64 -n 600,65,65'
)
if opts.tall and opts.large:
tall += (' -n 2000,1999 -n 2000,1000'
+ ' -n 20000,1,1 -n 20000,10,10'
+ ' -n 20000,31,31 -n 20000,32,32 -n 20000,33,33'
+ ' -n 20000,63,63 -n 20000,64,64 -n 20000,65,65'
+ ' -n 20000,200,200 -n 20000,100,100'
)
if opts.tall and opts.xlarge:
tall += (' -n 200000,10,10 -n 200000,1,1'
+ ' -n 2000000,10,10 -n 2000000,1,1'
)
# ----------
# to avoid excessive runtime with large m or n in zunmql, etc., k is set to min(m,n)
wide = ''
if opts.wide and opts.small:
wide += (' -n 1,2 -n 1,3 -n 2,4'
+ ' -n 19,20 -n 10,20 -n 2,20 -n 1,20'
+ ' -n 199,200 -n 100,200 -n 20,200 -n 10,200 -n 1,200'
)
if opts.wide and opts.medium:
wide += (' -n 599,600 -n 300,600'
+ ' -n 1,600,1 -n 10,600,10'
+ ' -n 31,600,31 -n 32,600,32 -n 33,600,33'
+ ' -n 63,600,63 -n 64,600,64 -n 65,600,65'
)
if opts.wide and opts.large:
wide += (' -n 1999,2000 -n 1000,2000'
+ ' -n 1,20000,1 -n 10,20000,10'
+ ' -n 31,20000,31 -n 32,20000,32 -n 33,20000,33'
+ ' -n 63,20000,63 -n 64,20000,64 -n 65,20000,65'
+ ' -n 200,20000,200 -n 100,20000,100'
)
if opts.wide and opts.xlarge:
wide += (' -n 10,200000,10 -n 1,200000,1'
+ ' -n 10,2000000,10 -n 1,2000000,1'
)
# ----------
mnk = ''
if opts.mnk and opts.small:
mnk += (' -n 1,2,3 -n 2,1,3 -n 1,3,2 -n 2,3,1 -n 3,1,2 -n 3,2,1'
+ ' -n 10,20,30 -n 20,10,30 -n 10,30,20 -n 20,30,10 -n 30,10,20 -n 30,20,10'
+ ' -n 100,200,300 -n 200,100,300 -n 100,300,200 -n 200,300,100 -n 300,100,200 -n 300,200,100'
)
if opts.mnk and opts.medium:
mnk += ' -n 100,300,600 -n 300,100,600 -n 100,600,300 -n 300,600,100 -n 600,100,300 -n 600,300,100'
if opts.mnk and opts.large:
mnk += ' -n 1000,2000,3000 -n 2000,1000,3000 -n 1000,3000,2000 -n 2000,3000,1000 -n 3000,1000,2000 -n 3000,2000,1000'
# ----------
mn = n + tall + wide
nk = n + mnk # nk does NOT include tall, wide
mnk = n + tall + wide + mnk
# ----------
# specific sizes override everything else
if (opts.n):
n = ' '.join( map( lambda x: '-n '+x, opts.n ))
mn = n
mnk = n
tall = ''
wide = ''
# endif
# ----------------------------------------------------------------------
# test problems
#
# Each test has 4 fields: (program, options, sizes, comments).
# If program begins with #, that test is disabled and will be printed as such.
# In some cases, the line is commented out, so nothing is printed.
#
# These match the order in the Makefile,
# except in some cases the "d" version from the Makefile isn't required here
# To compare with Makefile:
# grep '^\s+testing_\w+' Makefile >! a
# grep "\('#?testing_\w\w+" run_tests.py | perl -pe "s/#?\('#?//; s/',.*/.cpp \\/;" | uniq > ! b
# diff -w a b
tests = []
blas = (
# ----------
# BLAS
# no-trans/conj-trans; there are other combinations with trans
('testing_zgemm', '-l -NN -c', mnk, ''),
('testing_zgemm', '-l -NC -c', mnk, ''),
('testing_zgemm', '-l -CN -c', mnk, ''),
('testing_zgemm', '-l -CC -c', mnk, ''),
('testing_zgemm', '-l -NT -c', mnk, ''),
('testing_zgemm', '-l -TN -c', mnk, ''),
('testing_zgemm', '-l -TT -c', mnk, ''),
# no-trans/trans/conj-trans
('testing_zgemv', '-c', mn, ''),
('testing_zgemv', '-T -c', mn, ''),
('testing_zgemv', '-C -c', mn, ''),
# left/right, lower/upper
('testing_zhemm', '-SL -L -c', mn, ''),
('testing_zhemm', '-SL -U -c', mn, ''),
('testing_zhemm', '-SR -L -c', mn, ''),
('testing_zhemm', '-SR -U -c', mn, ''),
# lower/upper
('testing_zhemv', '-L -c', n, ''),
('testing_zhemv', '-U -c', n, ''),
# lower/upper, no-trans/conj-trans
('testing_zherk', '-L -c', nk, 'cublas only'),
('testing_zherk', '-L -C -c', nk, 'cublas only'),
('testing_zherk', '-U -c', nk, 'cublas only'),
('testing_zherk', '-U -C -c', nk, 'cublas only'),
# real trans
('testing_dsyrk', '-L -T -c', nk, 'cublas only'),
('testing_dsyrk', '-U -T -c', nk, 'cublas only'),
# lower/upper, no-trans/conj-trans
('testing_zher2k', '-L -c', nk, 'cublas only'),
('testing_zher2k', '-L -C -c', nk, 'cublas only'),
('testing_zher2k', '-U -c', nk, 'cublas only'),
('testing_zher2k', '-U -C -c', nk, 'cublas only'),
# real trans
('testing_dsyr2k', '-L -T -c', nk, 'cublas only'),
('testing_dsyr2k', '-U -T -c', nk, 'cublas only'),
# lower/upper
('testing_zsymv', '-L -c', n, ''),
('testing_zsymv', '-U -c', n, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrmm', '-SL -L -DN -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -L -DU -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -L -C -DN -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -L -C -DU -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -L -T -DN -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -L -T -DU -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -U -DN -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -U -DU -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -U -C -DN -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -U -C -DU -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -U -T -DN -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SL -U -T -DU -c', n + wide, 'cublas only'),
('testing_ztrmm', '-SR -L -DN -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -L -DU -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -L -C -DN -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -L -C -DU -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -L -T -DN -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -L -T -DU -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -U -DN -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -U -DU -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -U -C -DN -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -U -C -DU -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -U -T -DN -c', n + tall, 'cublas only'),
('testing_ztrmm', '-SR -U -T -DU -c', n + tall, 'cublas only'),
# lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrmv', '-L -DN -c', n, 'cublas only'),
('testing_ztrmv', '-L -DU -c', n, 'cublas only'),
('testing_ztrmv', '-L -C -DN -c', n, 'cublas only'),
('testing_ztrmv', '-L -C -DU -c', n, 'cublas only'),
('testing_ztrmv', '-L -T -DN -c', n, 'cublas only'),
('testing_ztrmv', '-L -T -DU -c', n, 'cublas only'),
('testing_ztrmv', '-U -DN -c', n, 'cublas only'),
('testing_ztrmv', '-U -DU -c', n, 'cublas only'),
('testing_ztrmv', '-U -C -DN -c', n, 'cublas only'),
('testing_ztrmv', '-U -C -DU -c', n, 'cublas only'),
('testing_ztrmv', '-U -T -DN -c', n, 'cublas only'),
('testing_ztrmv', '-U -T -DU -c', n, 'cublas only'),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrsm', '-SL -L -DN -c', n + wide, ''),
('testing_ztrsm', '-SL -L -DU -c', n + wide, ''),
('testing_ztrsm', '-SL -L -C -DN -c', n + wide, ''),
('testing_ztrsm', '-SL -L -C -DU -c', n + wide, ''),
('testing_ztrsm', '-SL -L -T -DN -c', n + wide, ''),
('testing_ztrsm', '-SL -L -T -DU -c', n + wide, ''),
('testing_ztrsm', '-SL -U -DN -c', n + wide, ''),
('testing_ztrsm', '-SL -U -DU -c', n + wide, ''),
('testing_ztrsm', '-SL -U -C -DN -c', n + wide, ''),
('testing_ztrsm', '-SL -U -C -DU -c', n + wide, ''),
('testing_ztrsm', '-SL -U -T -DN -c', n + wide, ''),
('testing_ztrsm', '-SL -U -T -DU -c', n + wide, ''),
('testing_ztrsm', '-SR -L -DN -c', n + tall, ''),
('testing_ztrsm', '-SR -L -DU -c', n + tall, ''),
('testing_ztrsm', '-SR -L -C -DN -c', n + tall, ''),
('testing_ztrsm', '-SR -L -C -DU -c', n + tall, ''),
('testing_ztrsm', '-SR -L -T -DN -c', n + tall, ''),
('testing_ztrsm', '-SR -L -T -DU -c', n + tall, ''),
('testing_ztrsm', '-SR -U -DN -c', n + tall, ''),
('testing_ztrsm', '-SR -U -DU -c', n + tall, ''),
('testing_ztrsm', '-SR -U -C -DN -c', n + tall, ''),
('testing_ztrsm', '-SR -U -C -DU -c', n + tall, ''),
('testing_ztrsm', '-SR -U -T -DN -c', n + tall, ''),
('testing_ztrsm', '-SR -U -T -DU -c', n + tall, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrsm', ngpu + '-SL -L -DN -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -L -DU -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -L -C -DN -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -L -C -DU -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -L -T -DN -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -L -T -DU -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -U -DN -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -U -DU -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -U -C -DN -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -U -C -DU -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -U -T -DN -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SL -U -T -DU -c', n + wide, ''),
('testing_ztrsm', ngpu + '-SR -L -DN -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -L -DU -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -L -C -DN -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -L -C -DU -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -L -T -DN -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -L -T -DU -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -U -DN -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -U -DU -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -U -C -DN -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -U -C -DU -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -U -T -DN -c', n + tall, ''),
('testing_ztrsm', ngpu + '-SR -U -T -DU -c', n + tall, ''),
# lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrsv', '-L -DN -c', n, 'cublas only'),
('testing_ztrsv', '-L -DU -c', n, 'cublas only'),
('testing_ztrsv', '-L -C -DN -c', n, 'cublas only'),
('testing_ztrsv', '-L -C -DU -c', n, 'cublas only'),
('testing_ztrsv', '-L -T -DN -c', n, 'cublas only'),
('testing_ztrsv', '-L -T -DU -c', n, 'cublas only'),
('testing_ztrsv', '-U -DN -c', n, 'cublas only'),
('testing_ztrsv', '-U -DU -c', n, 'cublas only'),
('testing_ztrsv', '-U -C -DN -c', n, 'cublas only'),
('testing_ztrsv', '-U -C -DU -c', n, 'cublas only'),
('testing_ztrsv', '-U -T -DN -c', n, 'cublas only'),
('testing_ztrsv', '-U -T -DU -c', n, 'cublas only'),
('testing_zhemm_mgpu', ngpu + '-L -c', n, ''),
('#testing_zhemm_mgpu', ngpu + '-U -c', n, 'upper not implemented'),
('testing_zhemv_mgpu', ngpu + '-L -c', n, ''),
('testing_zhemv_mgpu', ngpu + '-U -c', n, ''),
('testing_zher2k_mgpu', ngpu + '-L -c', nk, ''),
('testing_zher2k_mgpu', ngpu + '-U -c', nk, ''),
('#testing_blas_z', '-c', mnk, 'takes long time; cublas only'),
('testing_cblas_z', '-c', n, ''),
)
if (opts.blas):
tests += blas
aux = (
# ----------
# auxiliary
('testing_zgeadd', '--version 1 -c', mn, ''),
('testing_zgeadd', '--version 2 -c', mn, ''),
('testing_zlacpy', '-c', mn, ''),
('testing_zlag2c', '-c', mn, ''),
('testing_zlange', '-c', mn, ''),
# lower/upper handled internally in one call
('testing_zlanhe', '-c', n, ''),
('testing_zlarfg', '-c', n, ''),
('testing_zlascl', '-c', mn, ''),
('testing_zlaset', '-c', mn, ''),
('testing_zlaset_band', '-c', mn, ''),
('testing_zlat2c', '-c', n, ''),
('testing_znan_inf', '-c', mn, ''),
('testing_zprint', '-c', '-n 10 -n 5,100 -n 100,5', ''),
# lower/upper
('testing_zsymmetrize', '-L -c', n, ''),
('testing_zsymmetrize', '-U -c', n, ''),
# lower/upper
('testing_zsymmetrize_tiles', '-L -c', n, ''),
('testing_zsymmetrize_tiles', '-U -c', n, ''),
('testing_zswap', '-c', n, ''),
('testing_ztranspose', '-c', mn, ''),
# lower/upper
('testing_ztrtri_diag', '-L -c', n, ''),
('testing_ztrtri_diag', '-U -c', n, ''),
#('testing_auxiliary', '-c', '', ''), # run_tests misinterprets output as errors
('testing_constants', '-c', '', ''),
('testing_operators', '-c', '', ''),
('testing_parse_opts', '-c', '', ''),
)
if (opts.aux):
tests += aux
chol = (
# ----------
# Cholesky, GPU interface
('testing_zcposv_gpu', '-L -c', n, ''),
('testing_zcposv_gpu', '-U -c', n, ''),
('testing_zposv_gpu', '-L -c', n, ''),
('testing_zposv_gpu', '-U -c', n, ''),
('testing_zpotrf_gpu', '--version 1 -L -c2', n, ''),
('testing_zpotrf_gpu', '--version 1 -U -c2', n, ''),
('testing_zpotrf_gpu', '--version 2 -L -c2', n, ''), # zpotrf_native, lower
('testing_zpotrf_gpu', '--version 2 -U -c2', n, ''), # zpotrf_native, upper
('testing_zpotrf_gpu', '--version 3 -L -c2', n, ''), # zpotrf_hybrid, expert api, lower
('testing_zpotrf_gpu', '--version 3 -U -c2', n, ''), # zpotrf_hybrid, expert api, upper
('testing_zpotrf_gpu', '--version 4 -L -c2', n, ''), # zpotrf_native, expert api, lower
('testing_zpotrf_gpu', '--version 4 -U -c2', n, ''), # zpotrf_native, expert api, upper
('testing_zpotf2_gpu', '-L -c', n + tall, ''),
('testing_zpotf2_gpu', '-U -c', n + tall, ''),
('testing_zpotri_gpu', '-L -c', n, ''),
('testing_zpotri_gpu', '-U -c', n, ''),
# lower/upper, unit/non-unit
('testing_ztrtri_gpu', '-L -DU -c', n, ''),
('testing_ztrtri_gpu', '-L -DN -c', n, ''),
('testing_ztrtri_gpu', '-U -DU -c', n, ''),
('testing_ztrtri_gpu', '-U -DN -c', n, ''),
('testing_ztrtri_gpu', '--version 2 -L -DU -c', n, ''),
('testing_ztrtri_gpu', '--version 2 -L -DN -c', n, ''),
('testing_ztrtri_gpu', '--version 2 -U -DU -c', n, ''),
('testing_ztrtri_gpu', '--version 2 -U -DN -c', n, ''),
('testing_zpotrf_mgpu', ngpu + '-L -c', n, ''),
('testing_zpotrf_mgpu', ngpu + '-U -c', n, ''),
# ----------
# Cholesky, CPU interface
('testing_zposv', '-L -c', n, ''),
('testing_zposv', '-U -c', n, ''),
('testing_zpotrf', '-L -c', n, ''),
('testing_zpotrf', '-U -c', n, ''),
('testing_zpotri', '-L -c', n, ''),
('testing_zpotri', '-U -c', n, ''),
# lower/upper, unit/non-unit
('testing_ztrtri', '-L -DU -c', n, ''),
('testing_ztrtri', '-L -DN -c', n, ''),
('testing_ztrtri', '-U -DU -c', n, ''),
('testing_ztrtri', '-U -DN -c', n, ''),
)
if (opts.chol):
tests += chol
hesv = (
# ----------
# Symmetric Indefinite
('testing_zhesv', '-L -c', n, ''),
('testing_zhesv', '-U -c', n, ''),
('testing_zhesv_nopiv_gpu', '-L -c', n, ''),
('testing_zhesv_nopiv_gpu', '-U -c', n, ''),
('testing_zsysv_nopiv_gpu', '-L -c', n, ''),
('testing_zsysv_nopiv_gpu', '-U -c', n, ''),
# Bunch-Kauffman
('testing_zhetrf', '-L --version 1 -c2', n, ''),
('testing_zhetrf', '-U --version 1 -c2', n, ''),
# no-pivot LDLt, CPU interface
('testing_zhetrf', '-L --version 3 -c2', n, ''),
('testing_zhetrf', '-U --version 3 -c2', n, ''),
# no-pivot LDLt, GPU interface
('testing_zhetrf', '-L --version 4 -c2', n, ''),
('testing_zhetrf', '-U --version 4 -c2', n, ''),
# Aasen's
('testing_zhetrf', '-L --version 6 -c2', n, ''),
('#testing_zhetrf','-U --version 6 -c2', n, 'upper not implemented'),
)
if (opts.hesv):
tests += hesv
lu = (
# ----------
# LU, GPU interface
('testing_zcgesv_gpu', '-c', n, ''),
('testing_zgesv_gpu', '-c', n, ''),
('testing_zgetrf_gpu', '--version 1 -c2', n, ''),
('testing_zgetrf_gpu', '--version 2 -c2', n, ''), # zgetrf_nopiv_gpu
('testing_zgetrf_gpu', '--version 3 -c2', n, ''), # zgetrf_native
('testing_zgetrf_gpu', '--version 4 -c2', n, ''), # zgetrf hybrid expert api
('testing_zgetrf_gpu', '--version 5 -c2', n, ''), # zgetrf native expert api
('testing_zgetf2_gpu', '-c', n + tall, ''),
('testing_zgetri_gpu', '-c', n, ''),
('testing_zgetri_gpu', '--version 2 -c', n, ''),
('testing_zgetrf_mgpu', ngpu + '-c2', n, ''),
# ----------
# LU, CPU interface
('testing_zgesv', '-c', n, ''),
('testing_zgesv_rbt', '-c', n, ''),
('testing_zgetrf', '--version 1 -c2', n, ''),
('testing_zgetrf', '--version 2 -c2', n, ''), # zgetrf_nopiv
('testing_zgetrf', '--version 3 -c2', n, ''), # zgetf2_nopiv
)
if (opts.lu):
tests += lu
qr = (
# ----------
# QR and least squares, GPU interface
('testing_zcgeqrsv_gpu', '-c', mn, ''),
('testing_zgegqr_gpu', '--version 1 -c', mn, ''),
('testing_zgegqr_gpu', '--version 2 -c', mn, ''),
('testing_zgegqr_gpu', '--version 3 -c', mn, ''),
('testing_zgegqr_gpu', '--version 4 -c', mn, ''),
('testing_zgelqf_gpu', '-c', mn, ''),
('testing_zgels_gpu', '-c', mn, ''),
('testing_zgels3_gpu', '-c', mn, ''),
('testing_zgeqp3_gpu', '-c', mn, ''),
('testing_zgeqr2_gpu', '-c', mn, ''),
('testing_zgeqr2x_gpu', '--version 1 -c', mn, ''),
('testing_zgeqr2x_gpu', '--version 2 -c', mn, ''),
('testing_zgeqr2x_gpu', '--version 3 -c', mn, ''),
('testing_zgeqr2x_gpu', '--version 4 -c', mn, ''),
('testing_zgeqrf_gpu', '--version 1 -c2', mn, ''), # version 1 requires check=2
('testing_zgeqrf_gpu', '--version 2 -c', mn, ''), # check=1 allows any M, N
('testing_zgeqrf_gpu', '--version 3 -c', mn, ''),
('testing_zgeqrf_gpu', '--version 4 -c2', mn, ''), # version 4 requires check=2
('testing_zlarfb_gpu', '--version 1 -c', mnk, ''),
('testing_zlarfb_gpu', '--version 2 -c', mnk, ''),
('testing_zungqr_gpu', '-c', mnk, ''),
('testing_zunmql_gpu', '-c', mnk, ''),
('testing_zunmqr_gpu', '--version 1 -c', mnk, ''),
('testing_zunmqr_gpu', '--version 2 -c', mnk, ''),
('testing_zgeqrf_mgpu', ngpu + '-c2', mn, ''),
# ----------
# QR, CPU interface
('testing_zgelqf', '-c', mn, ''),
('testing_zgels', '-c', mn, ''),
('testing_zgeqlf', '-c', mn, ''),
('testing_zgeqp3', '-c', mn, ''),
('testing_zgeqrf', '-c2', mn, ''),
('testing_zunglq', '-c', mnk, ''),
('testing_zungqr', '--version 1 -c', mnk, ''),
('testing_zungqr', '--version 2 -c', mnk, ''),
('testing_zungqr', ngpu + '-c', mnk, ''),
('testing_zunmlq', '-c', mnk, ''),
('testing_zunmql', '-c', mnk, ''),
('testing_zunmqr', '-c', mnk, ''),
('testing_zunmqr', ngpu + '-c', mnk, ''),
)
if (opts.qr):
tests += qr
syev = (
# ----------
# symmetric eigenvalues, GPU interface
# no-vectors/vectors, lower/upper
# version 1 is zheevd_gpu
('testing_zheevd_gpu', '--version 1 -L -JN -c', n, ''),
('testing_zheevd_gpu', '--version 1 -U -JN -c', n, ''),
('testing_zheevd_gpu', '--version 1 -L -JV -c', n, ''),
('testing_zheevd_gpu', '--version 1 -U -JV -c', n, ''),
# version 2 is zheevdx_gpu
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevd_gpu', '--version 2 --fraction 1.0 -L -JN -c', n, ''),
('testing_zheevd_gpu', '--version 2 --fraction 1.0 -U -JN -c', n, ''),
('testing_zheevd_gpu', '--version 2 --fraction 1.0 -L -JV -c', n, ''),
('testing_zheevd_gpu', '--version 2 --fraction 1.0 -U -JV -c', n, ''),
# version 3 is zheevr_gpu
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevd_gpu', '--version 3 --fraction 1.0 -L -JN -c', n, ''),
('testing_zheevd_gpu', '--version 3 --fraction 1.0 -U -JN -c', n, ''),
('testing_zheevd_gpu', '--version 3 --fraction 1.0 -L -JV -c', n, ''),
('testing_zheevd_gpu', '--version 3 --fraction 1.0 -U -JV -c', n, ''),
# version 4 is zheevx_gpu
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevd_gpu', '--version 4 --fraction 1.0 -L -JN -c', n, ''),
('testing_zheevd_gpu', '--version 4 --fraction 1.0 -U -JN -c', n, ''),
('testing_zheevd_gpu', '--version 4 --fraction 1.0 -L -JV -c', n, ''),
('testing_zheevd_gpu', '--version 4 --fraction 1.0 -U -JV -c', n, ''),
# lower/upper, version 1 (cublas_hemv)/2 (fast_hemv)
('testing_zhetrd_gpu', '--version 1 -L -c', n, ''),
('testing_zhetrd_gpu', '--version 1 -U -c', n, ''),
('testing_zhetrd_gpu', '--version 2 -L -c', n, ''),
('testing_zhetrd_gpu', '--version 2 -U -c', n, ''),
# multi-gpu
('testing_zhetrd_mgpu', ngpu + '-L -c', n, ''),
('testing_zhetrd_mgpu', ngpu + '-U -c', n, ''),
# ----------
# symmetric eigenvalues, CPU interface
# no vectors/vectors, lower/upper
# version 1 is zheevd
('testing_zheevd', '--version 1 -L -JN -c', n, ''),
('testing_zheevd', '--version 1 -U -JN -c', n, ''),
('testing_zheevd', '--version 1 -L -JV -c', n, ''),
('testing_zheevd', '--version 1 -U -JV -c', n, ''),
('testing_zheevd', ngpu + '--version 1 -L -JN -c', n, ''),
('testing_zheevd', ngpu + '--version 1 -U -JN -c', n, ''),
('testing_zheevd', ngpu + '--version 1 -L -JV -c', n, ''),
('testing_zheevd', ngpu + '--version 1 -U -JV -c', n, ''),
# version 2 is zheevdx
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevd', '--version 2 --fraction 1.0 -L -JN -c', n, ''),
('testing_zheevd', '--version 2 --fraction 1.0 -U -JN -c', n, ''),
('testing_zheevd', '--version 2 --fraction 1.0 -L -JV -c', n, ''),
('testing_zheevd', '--version 2 --fraction 1.0 -U -JV -c', n, ''),
('testing_zheevd', ngpu + '--version 2 --fraction 1.0 -L -JN -c', n, ''),
('testing_zheevd', ngpu + '--version 2 --fraction 1.0 -U -JN -c', n, ''),
('testing_zheevd', ngpu + '--version 2 --fraction 1.0 -L -JV -c', n, ''),
('testing_zheevd', ngpu + '--version 2 --fraction 1.0 -U -JV -c', n, ''),
# version 3 is zheevr
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevd', '--version 3 --fraction 1.0 -L -JN -c', n, ''),
('testing_zheevd', '--version 3 --fraction 1.0 -U -JN -c', n, ''),
('testing_zheevd', '--version 3 --fraction 1.0 -L -JV -c', n, ''),
('testing_zheevd', '--version 3 --fraction 1.0 -U -JV -c', n, ''),
# version 4 is zheevx
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevd', '--version 4 --fraction 1.0 -L -JN -c', n, ''),
('testing_zheevd', '--version 4 --fraction 1.0 -U -JN -c', n, ''),
('testing_zheevd', '--version 4 --fraction 1.0 -L -JV -c', n, ''),
('testing_zheevd', '--version 4 --fraction 1.0 -U -JV -c', n, ''),
# lower/upper
('testing_zhetrd', '-L -c', n, ''),
('testing_zhetrd', '-U -c', n, ''),
# ----------
# symmetric eigenvalues, 2-stage
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevdx_2stage', '--fraction 1.0 -L -JN -c', n, ''),
('testing_zheevdx_2stage', '--fraction 1.0 -L -JV -c', n, ''),
('#testing_zheevdx_2stage', '--fraction 1.0 -U -JN -c', n, 'upper not implemented'),
('#testing_zheevdx_2stage', '--fraction 1.0 -U -JV -c', n, 'upper not implemented'),
# same tester for multi-GPU version
# TODO test multi-GPU version with ngpu=1
# TODO test with --fraction < 1; checks don't seem to work.
('testing_zheevdx_2stage', ngpu + '--fraction 1.0 -L -JN -c', n, ''),
('testing_zheevdx_2stage', ngpu + '--fraction 1.0 -L -JV -c', n, ''),
('#testing_zheevdx_2stage', ngpu + '--fraction 1.0 -U -JN -c', n, 'upper not implemented'),
('#testing_zheevdx_2stage', ngpu + '--fraction 1.0 -U -JV -c', n, 'upper not implemented'),
)
if (opts.syev):
tests += syev
sygv = (
# ----------
# generalized symmetric eigenvalues
('testing_zhegst', '-L --itype 1 -c', n, ''),
('testing_zhegst', '-L --itype 2 -c', n, ''),
# itype 2 == itype 3 for hegst
('testing_zhegst', '-U --itype 1 -c', n, ''),
('testing_zhegst', '-U --itype 2 -c', n, ''),
('testing_zhegst_gpu', '-L --itype 1 -c', n, ''),
('testing_zhegst_gpu', '-L --itype 2 -c', n, ''),
('testing_zhegst_gpu', '-U --itype 1 -c', n, ''),
('testing_zhegst_gpu', '-U --itype 2 -c', n, ''),
# no-vector/vector, lower/upper, itypes
('testing_zhegvd', '-L -JN --itype 1 -c', n, ''),
('testing_zhegvd', '-L -JN --itype 2 -c', n, ''),
('testing_zhegvd', '-L -JN --itype 3 -c', n, ''),
('testing_zhegvd', '-U -JN --itype 1 -c', n, ''),
('testing_zhegvd', '-U -JN --itype 2 -c', n, ''),
('testing_zhegvd', '-U -JN --itype 3 -c', n, ''),
('testing_zhegvd', '-L -JV --itype 1 -c', n, ''),
('testing_zhegvd', '-L -JV --itype 2 -c', n, ''),
('testing_zhegvd', '-L -JV --itype 3 -c', n, ''),
('testing_zhegvd', '-U -JV --itype 1 -c', n, ''),
('testing_zhegvd', '-U -JV --itype 2 -c', n, ''),
('testing_zhegvd', '-U -JV --itype 3 -c', n, ''),
# lower/upper, no-vector/vector, itypes, add ngpu to call zhegvd_m
('testing_zhegvd', ngpu + '-L -JN --itype 1 -c', n, ''),
('testing_zhegvd', ngpu + '-L -JN --itype 2 -c', n, ''),
('testing_zhegvd', ngpu + '-L -JN --itype 3 -c', n, ''),
('testing_zhegvd', ngpu + '-U -JN --itype 1 -c', n, ''),
('testing_zhegvd', ngpu + '-U -JN --itype 2 -c', n, ''),
('testing_zhegvd', ngpu + '-U -JN --itype 3 -c', n, ''),
('testing_zhegvd', ngpu + '-L -JV --itype 1 -c', n, ''),
('testing_zhegvd', ngpu + '-L -JV --itype 2 -c', n, ''),
('testing_zhegvd', ngpu + '-L -JV --itype 3 -c', n, ''),
('testing_zhegvd', ngpu + '-U -JV --itype 1 -c', n, 'upper not implemented ??'),
('testing_zhegvd', ngpu + '-U -JV --itype 2 -c', n, 'upper not implemented ??'),
('testing_zhegvd', ngpu + '-U -JV --itype 3 -c', n, 'upper not implemented ??'),
# lower/upper, no-vector/vector, itypes
# TODO fraction
('testing_zhegvdx', '--version 1 -L -JN --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 1 -L -JN --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 1 -L -JN --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 1 -U -JN --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 1 -U -JN --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 1 -U -JN --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 1 -L -JV --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 1 -L -JV --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 1 -L -JV --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 1 -U -JV --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 1 -U -JV --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 1 -U -JV --itype 3 -c', n, ''),
# lower/upper, no-vector/vector, itypes, add ngpu to call zhegvdx_m
# TODO fraction
('testing_zhegvdx', ngpu + '--version 1 -L -JN --itype 1 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -L -JN --itype 2 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -L -JN --itype 3 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -U -JN --itype 1 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -U -JN --itype 2 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -U -JN --itype 3 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -L -JV --itype 1 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -L -JV --itype 2 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -L -JV --itype 3 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -U -JV --itype 1 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -U -JV --itype 2 -c', n, ''),
('testing_zhegvdx', ngpu + '--version 1 -U -JV --itype 3 -c', n, ''),
# version 2 is zhegvx
# TODO fraction
('testing_zhegvdx', '--version 2 -L -JN --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 2 -L -JN --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 2 -L -JN --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 2 -U -JN --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 2 -U -JN --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 2 -U -JN --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 2 -L -JV --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 2 -L -JV --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 2 -L -JV --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 2 -U -JV --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 2 -U -JV --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 2 -U -JV --itype 3 -c', n, ''),
# version 2 is zhegvr
# TODO fraction
('testing_zhegvdx', '--version 3 -L -JN --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 3 -L -JN --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 3 -L -JN --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 3 -U -JN --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 3 -U -JN --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 3 -U -JN --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 3 -L -JV --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 3 -L -JV --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 3 -L -JV --itype 3 -c', n, ''),
('testing_zhegvdx', '--version 3 -U -JV --itype 1 -c', n, ''),
('testing_zhegvdx', '--version 3 -U -JV --itype 2 -c', n, ''),
('testing_zhegvdx', '--version 3 -U -JV --itype 3 -c', n, ''),
# lower/upper, no-vector/vector, itypes
('testing_zhegvdx_2stage', '-L -JN --itype 1 -c', n, ''),
('testing_zhegvdx_2stage', '-L -JN --itype 2 -c', n, ''),
('testing_zhegvdx_2stage', '-L -JN --itype 3 -c', n, ''),
('#testing_zhegvdx_2stage', '-U -JN --itype 1 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', '-U -JN --itype 2 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', '-U -JN --itype 3 -c', n, 'upper not implemented'),
('testing_zhegvdx_2stage', '-L -JV --itype 1 -c', n, ''),
('testing_zhegvdx_2stage', '-L -JV --itype 2 -c', n, ''),
('testing_zhegvdx_2stage', '-L -JV --itype 3 -c', n, ''),
('#testing_zhegvdx_2stage', '-U -JV --itype 1 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', '-U -JV --itype 2 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', '-U -JV --itype 3 -c', n, 'upper not implemented'),
# lower/upper, no-vector/vector, itypes
('testing_zhegvdx_2stage', ngpu + '-L -JN --itype 1 -c', n, ''),
('testing_zhegvdx_2stage', ngpu + '-L -JN --itype 2 -c', n, ''),
('testing_zhegvdx_2stage', ngpu + '-L -JN --itype 3 -c', n, ''),
('#testing_zhegvdx_2stage', ngpu + '-U -JN --itype 1 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', ngpu + '-U -JN --itype 2 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', ngpu + '-U -JN --itype 3 -c', n, 'upper not implemented'),
('testing_zhegvdx_2stage', ngpu + '-L -JV --itype 1 -c', n, ''),
('testing_zhegvdx_2stage', ngpu + '-L -JV --itype 2 -c', n, ''),
('testing_zhegvdx_2stage', ngpu + '-L -JV --itype 3 -c', n, ''),
('#testing_zhegvdx_2stage', ngpu + '-U -JV --itype 1 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', ngpu + '-U -JV --itype 2 -c', n, 'upper not implemented'),
('#testing_zhegvdx_2stage', ngpu + '-U -JV --itype 3 -c', n, 'upper not implemented'),
)
if (opts.sygv):
tests += sygv
geev = (
# ----------
# non-symmetric eigenvalues
# right & left no-vector/vector; not all combos are tested here
#('testing_dgeev', '', n, ''), # covered by testing_zgeev
('testing_zgeev', '-RN -LN -c', n, ''),
('testing_zgeev', '-RV -LV -c', n, ''),
('testing_zgeev', ngpu + '-RN -LN -c', n, ''),
('testing_zgeev', ngpu + '-RV -LV -c', n, ''),
('testing_zgehrd', '--version 1 -c', n, ''),
('testing_zgehrd', '--version 2 -c', n, ''),
('testing_zgehrd', ngpu + '-c', n, ''),
)
if (opts.geev):
tests += geev
svd = (
# ----------
# SVD
# U & V none/some/overwrite/all
# gesdd only has one jobz (taken from -U), while
# gesvd can set U & V independently; not all combos are tested here
('testing_zgesdd', '--jobu n -c', mn, ''),
('testing_zgesdd', '--jobu s -c', mn, ''),
('testing_zgesdd', '--jobu o -c', mn, ''),
('testing_zgesdd', '--jobu a -c', n, ''), # todo: do tall & wide, but avoid excessive sizes
('testing_zgesvd', '--jobu n --jobv n -c', mn, ''),
('testing_zgesvd', '--jobu s --jobv s -c', mn, ''),
('testing_zgesvd', '--jobu o --jobv s -c', mn, ''),
('testing_zgesvd', '--jobu a --jobv a -c', n, ''), # todo: do tall & wide, but avoid excessive sizes
('testing_zgebrd', '-c', mn, ''),
('testing_zungbr', '-c', mnk, ''),
('testing_zunmbr', '-c', mnk, ''),
)
if (opts.svd):
tests += svd
batched = (
# ----------
# batched (BLAS, LU, etc.)
('testing_zgeadd_batched', batch + ' -c', mn, ''),
# no-trans/conj-trans; there are other combinations with trans
('testing_zgemm_batched', batch + '-NN -c', mn, ''),
('testing_zgemm_batched', batch + '-NC -c', mn, ''),
('testing_zgemm_batched', batch + '-CN -c', mn, ''),
('testing_zgemm_batched', batch + '-CC -c', mn, ''),
('testing_zgemm_batched', batch + '-NT -c', mn, ''),
('testing_zgemm_batched', batch + '-TN -c', mn, ''),
('testing_zgemm_batched', batch + '-TT -c', mn, ''),
# no-trans/trans/conj-trans
('testing_zgemv_batched', batch + ' -c', mn, ''),
('testing_zgemv_batched', batch + '-T -c', mn, ''),
('testing_zgemv_batched', batch + '-C -c', mn, ''),
('testing_zgemv_batched', batch + ' --version 2 -c', mn, ''),
('testing_zgemv_batched', batch + '-T --version 2 -c', mn, ''),
('testing_zgemv_batched', batch + '-C --version 2 -c', mn, ''),
# left/right lower/upper
('testing_zhemm_batched', batch + '-SL -L -c', mn, ''),
('testing_zhemm_batched', batch + '-SL -U -c', mn, ''),
('testing_zhemm_batched', batch + '-SR -L -c', mn, ''),
('testing_zhemm_batched', batch + '-SR -U -c', mn, ''),
# lower/upper
('testing_zhemv_batched', batch + ' -L -c', n, ''),
('testing_zhemv_batched', batch + ' -U -c', n, ''),
# lower/upper, no-trans/conj-trans
('testing_zherk_batched', batch + ' -L -c', nk, ''),
('testing_zherk_batched', batch + ' -L -C -c', nk, ''),
('testing_zherk_batched', batch + ' -U -c', nk, ''),
('testing_zherk_batched', batch + ' -U -C -c', nk, ''),
# real trans
('testing_dsyrk_batched', batch + ' -L -T -c', nk, ''),
('testing_dsyrk_batched', batch + ' -U -T -c', nk, ''),
# lower/upper, no-trans/conj-trans
('testing_zher2k_batched', batch + ' -L -c', nk, ''),
('testing_zher2k_batched', batch + ' -L -C -c', nk, ''),
('testing_zher2k_batched', batch + ' -U -c', nk, ''),
('testing_zher2k_batched', batch + ' -U -C -c', nk, ''),
# real trans
('testing_dsyr2k_batched', batch + ' -L -T -c', nk, ''),
('testing_dsyr2k_batched', batch + ' -U -T -c', nk, ''),
('testing_zlacpy_batched', batch + ' -c', mn, ''),
# lower/upper, no-trans/trans
('testing_zsyr2k_batched', batch + ' -L -c', nk, ''),
('testing_zsyr2k_batched', batch + ' -L -T -c', nk, ''),
('testing_zsyr2k_batched', batch + ' -U -c', nk, ''),
('testing_zsyr2k_batched', batch + ' -U -T -c', nk, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrmm_batched', batch + '-SL -L -DN -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -L -DU -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -L -C -DN -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -L -C -DU -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -L -T -DN -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -L -T -DU -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -U -DN -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -U -DU -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -U -C -DN -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -U -C -DU -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -U -T -DN -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SL -U -T -DU -c', n + wide, ''),
('testing_ztrmm_batched', batch + '-SR -L -DN -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -L -DU -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -L -C -DN -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -L -C -DU -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -L -T -DN -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -L -T -DU -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -U -DN -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -U -DU -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -U -C -DN -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -U -C -DU -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -U -T -DN -c', n + tall, ''),
('testing_ztrmm_batched', batch + '-SR -U -T -DU -c', n + tall, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
# version 1 (invert diag. block, out-of-place)
('testing_ztrsm_batched', batch + '-SL -L -DN -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -DU -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -C -DN -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -C -DU -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -T -DN -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -T -DU -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -DN -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -DU -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -C -DN -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -C -DU -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -T -DN -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -T -DU -c', n + wide, ''),
('testing_ztrsm_batched', batch + '-SR -L -DN -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -DU -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -C -DN -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -C -DU -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -T -DN -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -T -DU -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -DN -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -DU -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -C -DN -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -C -DU -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -T -DN -c', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -T -DU -c', n + tall, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
# version 2 (invert diag. block, in-place)
('testing_ztrsm_batched', batch + '-SL -L -DN -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -DU -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -C -DN -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -C -DU -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -T -DN -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -L -T -DU -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -DN -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -DU -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -C -DN -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -C -DU -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -T -DN -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SL -U -T -DU -c --version 2', n + wide, ''),
('testing_ztrsm_batched', batch + '-SR -L -DN -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -DU -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -C -DN -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -C -DU -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -T -DN -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -L -T -DU -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -DN -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -DU -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -C -DN -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -C -DU -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -T -DN -c --version 2', n + tall, ''),
('testing_ztrsm_batched', batch + '-SR -U -T -DU -c --version 2', n + tall, ''),
# lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrsv_batched', batch + ' -L -DN -c', n, ''),
('testing_ztrsv_batched', batch + ' -L -DU -c', n, ''),
('testing_ztrsv_batched', batch + ' -L -C -DN -c', n, ''),
('testing_ztrsv_batched', batch + ' -L -C -DU -c', n, ''),
('testing_ztrsv_batched', batch + ' -L -T -DN -c', n, ''),
('testing_ztrsv_batched', batch + ' -L -T -DU -c', n, ''),
('testing_ztrsv_batched', batch + ' -U -DN -c', n, ''),
('testing_ztrsv_batched', batch + ' -U -DU -c', n, ''),
('testing_ztrsv_batched', batch + ' -U -C -DN -c', n, ''),
('testing_ztrsv_batched', batch + ' -U -C -DU -c', n, ''),
('testing_ztrsv_batched', batch + ' -U -T -DN -c', n, ''),
('testing_ztrsv_batched', batch + ' -U -T -DU -c', n, ''),
# ----- QR
('testing_zgeqrf_batched', batch + ' -c', mn, ''),
# ----- LU
('testing_zgesv_batched', batch + ' -c', mn, ''),
('testing_zgesv_nopiv_batched', batch + ' -c', mn, ''),
('testing_zgetrf_batched', batch + ' -c', mn, ''),
('testing_zgetrf_nopiv_batched', batch + ' -c2', mn, ''),
('testing_zgetri_batched', batch + ' -c', n, ''),
# ----- Cholesky
('testing_zposv_batched', batch + ' -L -c', n, ''),
('#testing_zposv_batched', batch + ' -U -c', n, 'upper not implemented'),
('testing_zpotrf_batched', batch + ' -L -c2', n, ''),
('#testing_zpotrf_batched', batch + ' -U -c2', n, 'upper not implemented'),
)
if (opts.batched):
tests += batched
vbatched = (
# ----------
# vbatched (BLAS, LU, etc.)
# no-trans/conj-trans; there are other combinations with trans
('testing_zgemm_vbatched', batch + '-NN -c', mn, ''),
('testing_zgemm_vbatched', batch + '-NC -c', mn, ''),
('testing_zgemm_vbatched', batch + '-CN -c', mn, ''),
('testing_zgemm_vbatched', batch + '-CC -c', mn, ''),
('testing_zgemm_vbatched', batch + '-NT -c', mn, ''),
('testing_zgemm_vbatched', batch + '-TN -c', mn, ''),
('testing_zgemm_vbatched', batch + '-TT -c', mn, ''),
# no-trans/trans/conj-trans
('testing_zgemv_vbatched', batch + ' -c', mn, ''),
('testing_zgemv_vbatched', batch + '-T -c', mn, ''),
('testing_zgemv_vbatched', batch + '-C -c', mn, ''),
# left/right lower/upper
('testing_zhemm_vbatched', batch + '-SL -L -c', mn, ''),
('testing_zhemm_vbatched', batch + '-SL -U -c', mn, ''),
('testing_zhemm_vbatched', batch + '-SR -L -c', mn, ''),
('testing_zhemm_vbatched', batch + '-SR -U -c', mn, ''),
# lower/upper
('testing_zhemv_vbatched', batch + ' -L -c', n, ''),
('testing_zhemv_vbatched', batch + ' -U -c', n, ''),
# lower/upper, no-trans/conj-trans
('testing_zherk_vbatched', batch + ' -L -c', nk, ''),
('testing_zherk_vbatched', batch + ' -L -C -c', nk, ''),
('testing_zherk_vbatched', batch + ' -U -c', nk, ''),
('testing_zherk_vbatched', batch + ' -U -C -c', nk, ''),
# real trans
('testing_dsyrk_vbatched', batch + ' -L -T -c', nk, ''),
('testing_dsyrk_vbatched', batch + ' -U -T -c', nk, ''),
# lower/upper, no-trans/conj-trans
('testing_zher2k_vbatched', batch + ' -L -c', nk, ''),
('testing_zher2k_vbatched', batch + ' -L -C -c', nk, ''),
('testing_zher2k_vbatched', batch + ' -U -c', nk, ''),
('testing_zher2k_vbatched', batch + ' -U -C -c', nk, ''),
# real trans
('testing_dsyr2k_vbatched', batch + ' -L -T -c', nk, ''),
('testing_dsyr2k_vbatched', batch + ' -U -T -c', nk, ''),
# lower/upper, no-trans/trans
('testing_zsyrk_vbatched', batch + ' -L -c', nk, ''),
('testing_zsyrk_vbatched', batch + ' -L -T -c', nk, ''),
('testing_zsyrk_vbatched', batch + ' -U -c', nk, ''),
('testing_zsyrk_vbatched', batch + ' -U -T -c', nk, ''),
# lower/upper, no-trans/trans
('testing_zsyr2k_vbatched', batch + ' -L -c', nk, ''),
('testing_zsyr2k_vbatched', batch + ' -L -T -c', nk, ''),
('testing_zsyr2k_vbatched', batch + ' -U -c', nk, ''),
('testing_zsyr2k_vbatched', batch + ' -U -T -c', nk, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
('testing_ztrmm_vbatched', batch + '-SL -L -DN -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -L -DU -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -L -C -DN -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -L -C -DU -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -L -T -DN -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -L -T -DU -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -U -DN -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -U -DU -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -U -C -DN -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -U -C -DU -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -U -T -DN -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SL -U -T -DU -c', n + wide, ''),
('testing_ztrmm_vbatched', batch + '-SR -L -DN -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -L -DU -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -L -C -DN -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -L -C -DU -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -L -T -DN -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -L -T -DU -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -U -DN -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -U -DU -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -U -C -DN -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -U -C -DU -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -U -T -DN -c', n + tall, ''),
('testing_ztrmm_vbatched', batch + '-SR -U -T -DU -c', n + tall, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
# out-of-place
('testing_ztrsm_vbatched', batch + '-SL -L -DN -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -DU -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -C -DN -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -C -DU -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -T -DN -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -T -DU -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -DN -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -DU -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -C -DN -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -C -DU -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -T -DN -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -T -DU -c --version 1', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -DN -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -DU -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -C -DN -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -C -DU -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -T -DN -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -T -DU -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -DN -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -DU -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -C -DN -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -C -DU -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -T -DN -c --version 1', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -T -DU -c --version 1', n + tall, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
# in-place
('testing_ztrsm_vbatched', batch + '-SL -L -DN -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -DU -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -C -DN -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -C -DU -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -T -DN -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -T -DU -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -DN -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -DU -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -C -DN -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -C -DU -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -T -DN -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -T -DU -c --version 2', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -DN -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -DU -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -C -DN -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -C -DU -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -T -DN -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -T -DU -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -DN -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -DU -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -C -DN -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -C -DU -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -T -DN -c --version 2', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -T -DU -c --version 2', n + tall, ''),
# left/right, lower/upper, no-trans/conj-trans, non-unit/unit diag
# in-place
('testing_ztrsm_vbatched', batch + '-SL -L -DN -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -DU -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -C -DN -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -C -DU -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -T -DN -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -L -T -DU -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -DN -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -DU -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -C -DN -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -C -DU -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -T -DN -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SL -U -T -DU -c --version 3', n + wide, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -DN -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -DU -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -C -DN -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -C -DU -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -T -DN -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -L -T -DU -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -DN -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -DU -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -C -DN -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -C -DU -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -T -DN -c --version 3', n + tall, ''),
('testing_ztrsm_vbatched', batch + '-SR -U -T -DU -c --version 3', n + tall, ''),
# ----- Cholesky
('testing_zpotrf_vbatched', batch + ' -L -c2', n, ''),
('#testing_zposv_vbatched', batch + ' -U -c2', n, 'upper not implemented'),
# ----- LU
('testing_zgetrf_vbatched', batch + ' -c', mn, ''),
)
if (opts.vbatched):
tests += vbatched
# ----------------------------------------------------------------------
# select multi-GPU tests
if (opts.mgpu):
tests2 = []
for test in tests:
m1 = re.search( '(_m|_mgpu)$', test[0] )
m2 = re.search( '--ngpu', test[1] )
if (m1 or m2):
tests2.append( test )
# end
tests = tests2
# end
# ----------------------------------------------------------------------
# select non-multi-GPU tests
if (opts.no_mgpu):
tests2 = []
for test in tests:
m1 = re.search( '(_m|_mgpu)$', test[0] )
m2 = re.search( '--ngpu', test[1] )
if (not (m1 or m2)):
tests2.append( test )
# end
tests = tests2
# end
# ----------------------------------------------------------------------
# select subset of commands
options = []
if (opts.itype): options.append('--itype %s' % (opts.itype))
if (opts.version): options.append('--version %s' % (opts.version))
if (opts.jobz): options.append('-J%s' % (opts.jobz))
if (opts.diag): options.append('-D%s' % (opts.diag))
if (opts.fraction): options.append('--fraction %s' % (opts.fraction))
if (opts.lower): options.append('-L')
elif (opts.upper): options.append('-U')
if (opts.C): options.append('-C')
elif (opts.T): options.append('-T')
if (opts.UN): options.append('-UN')
if (opts.UO): options.append('-UO')
if (opts.US): options.append('-US')
if (opts.UA): options.append('-UA')
if (opts.VN): options.append('-VN')
if (opts.VO): options.append('-VO')
if (opts.VS): options.append('-VS')
if (opts.VA): options.append('-VA')
if (opts.NN): options.append('-NN')
if (opts.NT): options.append('-NT')
if (opts.TN): options.append('-TN')
if (opts.TT): options.append('-TT')
if (opts.NC): options.append('-NC')
if (opts.CN): options.append('-CN')
if (opts.CC): options.append('-CC')
if len(options) > 0:
tests2 = []
for test in tests:
match = True
for opt in options:
if not re.search( opt, test[1] ):
match = False
break
if match:
tests2.append( test )
# end
tests = tests2
# end
# ----------------------------------------------------------------------
precisions = (
's', 'd', 'c', 'z'
)
subs = (
('', 'testing_dlag2s', '', 'testing_zlag2c'),
('', 'testing_dlat2s', '', 'testing_zlat2c'),
('ssy', 'dsy', 'ssy', 'dsy' ),
('ssy', 'dsy', 'che', 'zhe' ),
('ssy', 'dsy', 'csy', 'zsy' ),
('sor', 'dor', 'cun', 'zun' ),
('sy2sb', 'sy2sb', 'he2hb', 'he2hb' ),
('', 'testing_ds', '', 'testing_zc' ),
('testing_s', 'testing_d', 'testing_c', 'testing_z' ),
('lansy', 'lansy', 'lanhe', 'lanhe' ),
('blas_s', 'blas_d', 'blas_c', 'blas_z' ),
)
# ----------
# simple precision generation
def substitute( txt, pfrom, pto ):
if (pfrom != pto):
ifrom = precisions.index( pfrom )
ito = precisions.index( pto )
for sub in subs:
txt = re.sub( sub[ifrom], sub[ito], txt )
# end
return txt
# end
# ----------------------------------------------------------------------
# runs command in a subprocess.
# returns list (okay, fail, errors, status)
# okay is count of "ok" in output.
# fail is count of "failed" in output.
# error is count of indications of other errors (exit, CUDA error, etc.).
# status is exit status of the command.
def run( cmd ):
words = re.split( ' +', cmd.strip() )
# stdout & stderr are merged
p = subprocess.Popen( words, stdout=PIPE, stderr=STDOUT )
okay = 0
fail = 0
error = 0
# read unbuffered ("for line in p.stdout" will buffer)
while True:
# .decode() required for Python3
line = p.stdout.readline().decode()
if not line:
break
print( line.rstrip() )
if re.search( r'\bok *$', line ):
okay += 1
if re.search( 'failed', line ):
fail += 1
if re.search( 'exit|memory leak|memory mapping error|CUDA runtime error|CL_INVALID|illegal value|ERROR SUMMARY: [1-9]', line ):
error += 1
# end
status = p.wait()
return (okay, fail, error, status)
# end
# ----------------------------------------------------------------------
ntest = 0
nokay = 0
nfail = 0
nerror = 0
failures = {}
start = None
if (opts.start):
start = re.compile( opts.start + r'\b' )
seen = {}
global_options = ''
if (opts.tol):
global_options += ' --tol ' + opts.tol + ' '
if (opts.dev is not None):
global_options += ' --dev ' + opts.dev + ' '
if (int(opts.niter) != 1):
global_options += ' --niter ' + opts.niter + ' '
last_cmd = None
for test in tests:
(cmd, options, sizes, comments) = test
for precision in opts.precisions:
# precision generation
# in a few cases this doesn't produce a valid tester name (e.g., testing_zcposv_gpu -> posv_gpu)
cmdp = substitute( cmd, 'z', precision )
if (not re.match( 'testing_', cmdp )):
continue
# debian-specific: the testing executables are in /usr/lib/libmagma-test/testing
if os.path.exists(os.path.join('/usr/lib/libmagma-test/testing', cmdp)):
cmdp = os.path.join('/usr/lib/libmagma-test/testing', cmdp)
elif glob.glob('/usr/lib/*/libmagma-rocm-test'):
deb_specific_dir = glob.glob('/usr/lib/*/libmagma-rocm-test')[0]
cmdp = os.path.join(deb_specific_dir, 'testing', cmdp)
disabled = (cmdp[0] == '#')
if (disabled):
cmdp = cmdp[1:]
# command to run
cmd_args = cmdp +' '+ options +' '+ global_options + sizes
cmd_args = re.sub( ' +', ' ', cmd_args ) # compress spaces
# command to print on console, lacks sizes
cmd_opts = cmdp +' '+ options
cmd_opts = re.sub( ' +', ' ', cmd_opts ) # compress spaces
# skip tests before start
if (start and not start.search( cmdp )):
continue
start = None
# skip tests not in args, or duplicates
# skip and warn about non-existing
if ( (args and not cmdp in args)
or (cmd_opts in seen) ):
continue
# end
if (not os.path.exists( cmdp )):
print( cmdp, "doesn't exist (original name: " + cmd
+ ", precision: " + precision + ")", file=sys.stderr )
continue
# end
seen[ cmd_opts ] = True
if (opts.memcheck):
cmd_args = 'cuda-memcheck ' + cmd_args
repeat_test = True
while repeat_test:
repeat_test = False
print()
print('*'*100)
print(cmd_args)
print('*'*100)
sys.stdout.flush()
if (output_to_file):
if (last_cmd and cmd != last_cmd):
sys.stderr.write( '\n' ) # to console
last_cmd = cmd
sys.stderr.write( '%-48s' % cmd_opts ) # to console
sys.stderr.flush()
# end
if (disabled):
if (comments):
sys.stderr.write( ' (disabled: ' + comments + ')\n' )
else:
sys.stderr.write( ' (disabled)\n' )
break
# end
t = time.time()
(okay, fail, error, status) = run( cmd_args )
t = time.time() - t
# count stats
ntest += 1
nokay += okay
nfail += fail
nerror += error
errmsg = ''
if (fail > 0):
errmsg += ' ** %d tests failed' % (fail)
if (error > 0):
errmsg += ' ** %d errors' % (error)
if (status < 0):
errmsg += ' ** exit with signal %d' % (-status)
nerror += 1 # count crash as an error
if (errmsg != ''):
if (output_to_file):
sys.stderr.write( errmsg + '\n' ) # to console
sys.stdout.write( errmsg + '\n' ) # to file
failures[ cmd_opts ] = True
else:
sys.stderr.write( ' ok\n' )
# end
if (opts.interactive):
x = raw_input( '[enter to continue; M to make and re-run] ' )
if (x in ('m','M')):
make = 'make ' + cmdp
print(make)
run( make )
repeat_test = True
# end
# end
# end
# end
# end
# print summary
msg = '\n'
msg += '*'*100 + '\n'
msg += 'summary' + '\n'
msg += '*'*100 + '\n'
if (nfail == 0 and nerror == 0):
msg += 'all %d tests in %d commands passed!\n' % (nokay, ntest)
else:
msg += '%5d tests in %d commands passed\n' % (nokay, ntest)
msg += '%5d tests failed accuracy test\n' % (nfail)
msg += '%5d errors detected (crashes, CUDA errors, etc.)\n' % (nerror)
f = sorted( failures.keys() )
msg += 'routines with failures:\n ' + '\n '.join( f ) + '\n'
# end
if (output_to_file):
sys.stderr.write( msg ) # to console
sys.stdout.write( msg ) # to file
|