File size: 183,605 Bytes
d1396f0 |
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 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
+ source /gpfsscratch/rech/eha/commun/start-prod
+++ type -t module
++ '[' -z function ']'
++ module purge
++ unset _mlshdbg
++ '[' 0 = 1 ']'
++ unset _mlre _mlIFS
++ '[' -n x ']'
++ _mlIFS='
'
++ IFS=' '
++ for _mlv in ${MODULES_RUN_QUARANTINE:-}
++ '[' LD_LIBRARY_PATH = LD_LIBRARY_PATH -a LD_LIBRARY_PATH = LD_LIBRARY_PATH ']'
+++ eval 'echo ${LD_LIBRARY_PATH+x}'
++++ echo x
++ '[' -n x ']'
+++ eval 'echo ${LD_LIBRARY_PATH}'
++++ echo /gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib
++ _mlre='LD_LIBRARY_PATH_modquar='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\'' '
++ _mlrv=MODULES_RUNENV_LD_LIBRARY_PATH
+++ eval 'echo ${MODULES_RUNENV_LD_LIBRARY_PATH:-}'
++++ echo
++ _mlre='LD_LIBRARY_PATH_modquar='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\'' LD_LIBRARY_PATH='\'''\'' '
++ '[' -n 'LD_LIBRARY_PATH_modquar='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\'' LD_LIBRARY_PATH='\'''\'' ' ']'
+++ eval 'LD_LIBRARY_PATH_modquar='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\''' 'LD_LIBRARY_PATH='\'''\''' /gpfslocalsup/spack_soft/tcl/8.6.8/gcc-4.8.5-5nqkfcnctewdheju62zvqbsonnzszr6m/bin/tclsh /gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/libexec/modulecmd.tcl bash '"$@"'
++++ LD_LIBRARY_PATH_modquar=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib
++++ LD_LIBRARY_PATH=
++++ /gpfslocalsup/spack_soft/tcl/8.6.8/gcc-4.8.5-5nqkfcnctewdheju62zvqbsonnzszr6m/bin/tclsh /gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/libexec/modulecmd.tcl bash purge
++ eval unset 'PSM2_GPUDIRECT;
LD_LIBRARY_PATH=/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib;' export 'LD_LIBRARY_PATH;
unset' 'MODULES_LMPREREQ;
unset' 'CPATH;
unset' 'SLURM_MPI_TYPE;
unset' 'OMPI_MCA_mtl;
MANPATH=:/opt/c3/man:/opt/clmgr/man:/opt/sgi/share/man:/opt/clmgr/share/man:/opt/clmgr/lib/cm-cli/man:/gpfslocalsys/slurm/current/share/man:/usr/share/catman:/usr/share/man:/usr/catman:/usr/man;' export 'MANPATH;
unset' 'LIBRARY_PATH;
unset' 'MKLROOT_modshare;
unset' 'MPIF77;
unset' 'CMAKE_PREFIX_PATH;
unset' 'LOADEDMODULES;
unset' '_LMFILES_;
unset' 'MODULES_LMALTNAME;
unset' 'PKG_CONFIG_PATH;
MANPATH_modshare=:1:/opt/sgi/share/man:1:/opt/c3/man:1:/gpfslocalsys/slurm/current/share/man:1:/opt/clmgr/share/man:1:/opt/clmgr/lib/cm-cli/man:1:/usr/catman:2:/usr/man:2:/opt/clmgr/man:1:/usr/share/catman:2:/usr/share/man:2;' export 'MANPATH_modshare;
unset' 'LIBRARY_PATH_modshare;
unset' 'MODULES_LMCONFLICT;
unset' 'NLSPATH_modshare;
unset' 'MPICC;
unset' 'INTEL_LICENSE_FILE;
unset' 'MODULES_LMALTNAME_modshare;
unset' 'OMPI_MCA_pml;
unset' 'PKG_CONFIG_PATH_modshare;
unset' 'MODULES_LMCONFLICT_modshare;
unset' 'CUDA_INSTALL_PATH;
unset' 'INTEL_LICENSE_FILE_modshare;
unset' 'MODULES_LMNOTUASKED;
unset' 'MKLROOT;
unset' 'PYTHONUNBUFFERED;
unset' 'CUDA_PATH;
unset' 'MODULES_LMNOTUASKED_modshare;
unset' 'MPICXX;
unset' 'C_INCLUDE_PATH;
unset' 'NLSPATH;
unset' 'PSM2_CUDA_MEMCACHE_SIZE;
LD_LIBRARY_PATH_modshare=/gpfslocalsys/slurm/current/lib/slurm:1:/gpfslocalsys/slurm/current/lib:1;' export 'LD_LIBRARY_PATH_modshare;
unset' 'MODULES_LMPREREQ_modshare;
unset' 'CPATH_modshare;
unset' 'CMAKE_PREFIX_PATH_modshare;
unset' 'LOADEDMODULES_modshare;
unset' '_LMFILES__modshare;
unset' 'CUDA_HOME;
unset' 'MPIF90;
PATH=/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin;' export 'PATH;
unset' 'PSM2_CUDA;
PATH_modshare=/usr/bin:1:/gpfslocalsup/bin:1:/usr/local/bin:1:/opt/sgi/bin:1:/gpfslocalsys/slurm/current/bin:1:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:1:/opt/clmgr/bin:1:/linkhome/rech/genhug01/ura81os/bin:1:/linkhome/rech/genhug01/ura81os/.local/bin:1:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:1:/opt/sgi/sbin:1:/bin:1:/opt/clmgr/sbin:1:/gpfslocalsys/bin:1:/sbin:1:/usr/sbin:1:/gpfslocalsys/idrzap/current/bin:1:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:1:/usr/local/sbin:1:/usr/lpp/mmfs/bin:1:/opt/c3/bin:1;' export 'PATH_modshare;
test' '0;'
+++ unset PSM2_GPUDIRECT
+++ LD_LIBRARY_PATH=/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib
+++ export LD_LIBRARY_PATH
+++ unset MODULES_LMPREREQ
+++ unset CPATH
+++ unset SLURM_MPI_TYPE
+++ unset OMPI_MCA_mtl
+++ MANPATH=:/opt/c3/man:/opt/clmgr/man:/opt/sgi/share/man:/opt/clmgr/share/man:/opt/clmgr/lib/cm-cli/man:/gpfslocalsys/slurm/current/share/man:/usr/share/catman:/usr/share/man:/usr/catman:/usr/man
+++ export MANPATH
+++ unset LIBRARY_PATH
+++ unset MKLROOT_modshare
+++ unset MPIF77
+++ unset CMAKE_PREFIX_PATH
+++ unset LOADEDMODULES
+++ unset _LMFILES_
+++ unset MODULES_LMALTNAME
+++ unset PKG_CONFIG_PATH
+++ MANPATH_modshare=:1:/opt/sgi/share/man:1:/opt/c3/man:1:/gpfslocalsys/slurm/current/share/man:1:/opt/clmgr/share/man:1:/opt/clmgr/lib/cm-cli/man:1:/usr/catman:2:/usr/man:2:/opt/clmgr/man:1:/usr/share/catman:2:/usr/share/man:2
+++ export MANPATH_modshare
+++ unset LIBRARY_PATH_modshare
+++ unset MODULES_LMCONFLICT
+++ unset NLSPATH_modshare
+++ unset MPICC
+++ unset INTEL_LICENSE_FILE
+++ unset MODULES_LMALTNAME_modshare
+++ unset OMPI_MCA_pml
+++ unset PKG_CONFIG_PATH_modshare
+++ unset MODULES_LMCONFLICT_modshare
+++ unset CUDA_INSTALL_PATH
+++ unset INTEL_LICENSE_FILE_modshare
+++ unset MODULES_LMNOTUASKED
+++ unset MKLROOT
+++ unset PYTHONUNBUFFERED
+++ unset CUDA_PATH
+++ unset MODULES_LMNOTUASKED_modshare
+++ unset MPICXX
+++ unset C_INCLUDE_PATH
+++ unset NLSPATH
+++ unset PSM2_CUDA_MEMCACHE_SIZE
+++ LD_LIBRARY_PATH_modshare=/gpfslocalsys/slurm/current/lib/slurm:1:/gpfslocalsys/slurm/current/lib:1
+++ export LD_LIBRARY_PATH_modshare
+++ unset MODULES_LMPREREQ_modshare
+++ unset CPATH_modshare
+++ unset CMAKE_PREFIX_PATH_modshare
+++ unset LOADEDMODULES_modshare
+++ unset _LMFILES__modshare
+++ unset CUDA_HOME
+++ unset MPIF90
+++ PATH=/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ export PATH
+++ unset PSM2_CUDA
+++ PATH_modshare=/usr/bin:1:/gpfslocalsup/bin:1:/usr/local/bin:1:/opt/sgi/bin:1:/gpfslocalsys/slurm/current/bin:1:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:1:/opt/clmgr/bin:1:/linkhome/rech/genhug01/ura81os/bin:1:/linkhome/rech/genhug01/ura81os/.local/bin:1:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:1:/opt/sgi/sbin:1:/bin:1:/opt/clmgr/sbin:1:/gpfslocalsys/bin:1:/sbin:1:/usr/sbin:1:/gpfslocalsys/idrzap/current/bin:1:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:1:/usr/local/sbin:1:/usr/lpp/mmfs/bin:1:/opt/c3/bin:1
+++ export PATH_modshare
+++ test 0
++ _mlstatus=0
++ '[' -n x ']'
++ IFS='
'
++ unset _mlre _mlv _mlrv _mlIFS
++ '[' -n '' ']'
++ unset _mlshdbg
++ return 0
++ module load pytorch-gpu/py3/1.8.0
++ unset _mlshdbg
++ '[' 0 = 1 ']'
++ unset _mlre _mlIFS
++ '[' -n x ']'
++ _mlIFS='
'
++ IFS=' '
++ for _mlv in ${MODULES_RUN_QUARANTINE:-}
++ '[' LD_LIBRARY_PATH = LD_LIBRARY_PATH -a LD_LIBRARY_PATH = LD_LIBRARY_PATH ']'
+++ eval 'echo ${LD_LIBRARY_PATH+x}'
++++ echo x
++ '[' -n x ']'
+++ eval 'echo ${LD_LIBRARY_PATH}'
++++ echo /gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib
++ _mlre='LD_LIBRARY_PATH_modquar='\''/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\'' '
++ _mlrv=MODULES_RUNENV_LD_LIBRARY_PATH
+++ eval 'echo ${MODULES_RUNENV_LD_LIBRARY_PATH:-}'
++++ echo
++ _mlre='LD_LIBRARY_PATH_modquar='\''/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\'' LD_LIBRARY_PATH='\'''\'' '
++ '[' -n 'LD_LIBRARY_PATH_modquar='\''/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\'' LD_LIBRARY_PATH='\'''\'' ' ']'
+++ eval 'LD_LIBRARY_PATH_modquar='\''/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib'\''' 'LD_LIBRARY_PATH='\'''\''' /gpfslocalsup/spack_soft/tcl/8.6.8/gcc-4.8.5-5nqkfcnctewdheju62zvqbsonnzszr6m/bin/tclsh /gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/libexec/modulecmd.tcl bash '"$@"'
++++ LD_LIBRARY_PATH_modquar=/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib
++++ LD_LIBRARY_PATH=
++++ /gpfslocalsup/spack_soft/tcl/8.6.8/gcc-4.8.5-5nqkfcnctewdheju62zvqbsonnzszr6m/bin/tclsh /gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/libexec/modulecmd.tcl bash load pytorch-gpu/py3/1.8.0
Loading pytorch-gpu/py3/1.8.0
Loading requirement: gcc/8.3.1 cuda/10.2 nccl/2.8.3-1-cuda
cudnn/8.0.4.30-cuda-10.2 intel-mkl/2020.4 magma/2.5.4-cuda
openmpi/4.0.5-cuda
++ eval 'PSM2_GPUDIRECT=1;' export 'PSM2_GPUDIRECT;
MODULES_LMPREREQ=nccl/2.8.3-1-cuda\&cuda/11.2\|cuda/10.2:magma/2.5.4-cuda\&intel-compilers/19.0.4\|gcc/8.3.1\&cuda/11.2\|cuda/10.2:openmpi/4.0.5-cuda\&nvidia-compilers/21.3\|nvidia-compilers/20.11\|nvidia-compilers/20.7\|pgi/20.4\|gcc/8.3.1\&cuda/11.2\|cuda/10.2:pytorch-gpu/py3/1.8.0\&gcc/8.3.1\&cuda/10.2\&nccl/2.8.3-1-cuda\&cudnn/8.0.4.30-cuda-10.2\&intel-mkl/2020.4\&magma/2.5.4-cuda\&openmpi/4.0.5-cuda;' export 'MODULES_LMPREREQ;
CPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/include:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/include:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/include:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/include:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/include;' export 'CPATH;
LD_LIBRARY_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib;' export 'LD_LIBRARY_PATH;
SLURM_MPI_TYPE=pmix;' export 'SLURM_MPI_TYPE;
OMPI_MCA_mtl=psm2;' export 'OMPI_MCA_mtl;
MANPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/share/man:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/man/common:/gpfslocalsys/cuda/10.2/doc/man::/opt/c3/man:/opt/clmgr/man:/opt/sgi/share/man:/opt/clmgr/share/man:/opt/clmgr/lib/cm-cli/man:/gpfslocalsys/slurm/current/share/man:/usr/share/catman:/usr/share/man:/usr/catman:/usr/man;' export 'MANPATH;
LIBRARY_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/lib64/stubs:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib;' export 'LIBRARY_PATH;
MPIF77=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpif77;' export 'MPIF77;
MKLROOT_modshare=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl:1;' export 'MKLROOT_modshare;
CMAKE_PREFIX_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/;' export 'CMAKE_PREFIX_PATH;
LOADEDMODULES=gcc/8.3.1:cuda/10.2:nccl/2.8.3-1-cuda:cudnn/8.0.4.30-cuda-10.2:intel-mkl/2020.4:magma/2.5.4-cuda:openmpi/4.0.5-cuda:pytorch-gpu/py3/1.8.0;' export 'LOADEDMODULES;
_LMFILES_=/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/gcc/8.3.1:/gpfslocalsup/pub/module-rh/modulefiles/cuda/10.2:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/nccl/2.8.3-1-cuda:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/cudnn/8.0.4.30-cuda-10.2:/gpfslocalsup/pub/module-rh/modulefiles/intel-mkl/2020.4:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/magma/2.5.4-cuda:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/openmpi/4.0.5-cuda:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/pytorch-gpu/py3/1.8.0;' export '_LMFILES_;
MODULES_LMALTNAME=openmpi/4.0.5-cuda\&openmpi/default\&openmpi;' export 'MODULES_LMALTNAME;
PKG_CONFIG_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib/pkgconfig:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib/pkgconfig:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/bin/pkgconfig:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib/pkgconfig;' export 'PKG_CONFIG_PATH;
MANPATH_modshare=:1:/opt/sgi/share/man:1:/opt/c3/man:1:/gpfslocalsys/slurm/current/share/man:1:/opt/clmgr/share/man:1:/opt/clmgr/lib/cm-cli/man:1:/usr/man:3:/usr/catman:3:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/share/man:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/man/common:1:/opt/clmgr/man:1:/gpfslocalsys/cuda/10.2/doc/man:1:/usr/share/man:3:/usr/share/catman:3;' export 'MANPATH_modshare;
LIBRARY_PATH_modshare=/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:1:/gpfslocalsys/slurm/current/lib:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:1:/gpfslocalsys/cuda/10.2/lib64/stubs:1:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:1:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:1:/gpfslocalsys/cuda/10.2/nvvm/lib64:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:1:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:1:/gpfslocalsys/cuda/10.2/lib64:1:/gpfslocalsys/slurm/current/lib/slurm:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:1:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:1;' export 'LIBRARY_PATH_modshare;
MODULES_LMCONFLICT=gcc/8.3.1\&gcc:cuda/10.2\&cuda:nccl/2.8.3-1-cuda\&nccl:cudnn/8.0.4.30-cuda-10.2\&cudnn:intel-mkl/2020.4\&intel-mkl:magma/2.5.4-cuda\&magma:openmpi/4.0.5-cuda\&openmpi\&intel-mpi:pytorch-gpu/py3/1.8.0\&tensorflow\&pytorch\&caffe\&anaconda-py2\&anaconda-py3;' export 'MODULES_LMCONFLICT;
MPICC=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpicc;' export 'MPICC;
NLSPATH_modshare=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;' export 'NLSPATH_modshare;
MODULES_LMALTNAME_modshare=openmpi/4.0.5-cuda\&openmpi/default\&openmpi:1;' export 'MODULES_LMALTNAME_modshare;
OMPI_MCA_pml=cm;' export 'OMPI_MCA_pml;
INTEL_LICENSE_FILE=/gpfslocalsys/intel/licenses/site_license.lic;' export 'INTEL_LICENSE_FILE;
PKG_CONFIG_PATH_modshare=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib/pkgconfig:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/bin/pkgconfig:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib/pkgconfig:1:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib/pkgconfig:1;' export 'PKG_CONFIG_PATH_modshare;
MODULES_LMCONFLICT_modshare=cuda/10.2\&cuda:1:magma/2.5.4-cuda\&magma:1:intel-mkl/2020.4\&intel-mkl:1:openmpi/4.0.5-cuda\&openmpi\&intel-mpi:1:nccl/2.8.3-1-cuda\&nccl:1:cudnn/8.0.4.30-cuda-10.2\&cudnn:1:pytorch-gpu/py3/1.8.0\&tensorflow\&pytorch\&caffe\&anaconda-py2\&anaconda-py3:1:gcc/8.3.1\&gcc:1;' export 'MODULES_LMCONFLICT_modshare;
INTEL_LICENSE_FILE_modshare=/gpfslocalsys/intel/licenses/site_license.lic:1;' export 'INTEL_LICENSE_FILE_modshare;
CUDA_INSTALL_PATH=/gpfslocalsys/cuda/10.2;' export 'CUDA_INSTALL_PATH;
MODULES_LMNOTUASKED=gcc/8.3.1:cuda/10.2:nccl/2.8.3-1-cuda:cudnn/8.0.4.30-cuda-10.2:intel-mkl/2020.4:magma/2.5.4-cuda:openmpi/4.0.5-cuda;' export 'MODULES_LMNOTUASKED;
PYTHONUNBUFFERED=1;' export 'PYTHONUNBUFFERED;
MKLROOT=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl;' export 'MKLROOT;
MPICXX=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpic++;' export 'MPICXX;
CUDA_PATH=/gpfslocalsys/cuda/10.2;' export 'CUDA_PATH;
MODULES_LMNOTUASKED_modshare=gcc/8.3.1:1:nccl/2.8.3-1-cuda:1:cudnn/8.0.4.30-cuda-10.2:1:cuda/10.2:1:openmpi/4.0.5-cuda:1:intel-mkl/2020.4:1:magma/2.5.4-cuda:1;' export 'MODULES_LMNOTUASKED_modshare;
PSM2_CUDA_MEMCACHE_SIZE=1024;' export 'PSM2_CUDA_MEMCACHE_SIZE;
NLSPATH=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin/locale/%l_%t/%N;' export 'NLSPATH;
MODULES_LMPREREQ_modshare=openmpi/4.0.5-cuda\&nvidia-compilers/21.3\|nvidia-compilers/20.11\|nvidia-compilers/20.7\|pgi/20.4\|gcc/8.3.1\&cuda/11.2\|cuda/10.2:1:nccl/2.8.3-1-cuda\&cuda/11.2\|cuda/10.2:1:magma/2.5.4-cuda\&intel-compilers/19.0.4\|gcc/8.3.1\&cuda/11.2\|cuda/10.2:1:pytorch-gpu/py3/1.8.0\&gcc/8.3.1\&cuda/10.2\&nccl/2.8.3-1-cuda\&cudnn/8.0.4.30-cuda-10.2\&intel-mkl/2020.4\&magma/2.5.4-cuda\&openmpi/4.0.5-cuda:1;' export 'MODULES_LMPREREQ_modshare;
CPATH_modshare=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/include:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/include:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/include:1:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/include:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/include:1;' export 'CPATH_modshare;
C_INCLUDE_PATH=/gpfslocalsys/cuda/10.2/include;' export 'C_INCLUDE_PATH;
LD_LIBRARY_PATH_modshare=/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:1:/gpfslocalsys/slurm/current/lib:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:1:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:1:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:1:/gpfslocalsys/cuda/10.2/nvvm/lib64:1:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:1:/gpfslocalsys/slurm/current/lib/slurm:1:/gpfslocalsys/cuda/10.2/lib64:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:1:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:1;' export 'LD_LIBRARY_PATH_modshare;
CMAKE_PREFIX_PATH_modshare=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/:1:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/:1;' export 'CMAKE_PREFIX_PATH_modshare;
LOADEDMODULES_modshare=gcc/8.3.1:1:nccl/2.8.3-1-cuda:1:cudnn/8.0.4.30-cuda-10.2:1:pytorch-gpu/py3/1.8.0:1:cuda/10.2:1:intel-mkl/2020.4:1:openmpi/4.0.5-cuda:1:magma/2.5.4-cuda:1;' export 'LOADEDMODULES_modshare;
_LMFILES__modshare=/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/pytorch-gpu/py3/1.8.0:1:/gpfslocalsup/pub/module-rh/modulefiles/cuda/10.2:1:/gpfslocalsup/pub/module-rh/modulefiles/intel-mkl/2020.4:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/openmpi/4.0.5-cuda:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/magma/2.5.4-cuda:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/gcc/8.3.1:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/nccl/2.8.3-1-cuda:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/cudnn/8.0.4.30-cuda-10.2:1;' export '_LMFILES__modshare;
MPIF90=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpif90;' export 'MPIF90;
CUDA_HOME=/gpfslocalsys/cuda/10.2;' export 'CUDA_HOME;
PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin;' export 'PATH;
PSM2_CUDA=1;' export 'PSM2_CUDA;
PATH_modshare=/usr/bin:1:/gpfslocalsup/bin:1:/usr/local/bin:1:/gpfslocalsys/cuda/10.2/nvvm/bin:1:/opt/sgi/bin:1:/gpfslocalsys/slurm/current/bin:1:/gpfslocalsys/cuda/10.2/bin:1:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:1:/opt/clmgr/bin:1:/opt/sgi/sbin:1:/linkhome/rech/genhug01/ura81os/bin:1:/linkhome/rech/genhug01/ura81os/.local/bin:1:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:1:/bin:1:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:1:/opt/clmgr/sbin:1:/gpfslocalsys/cuda/10.2/samples:1:/gpfslocalsys/bin:1:/sbin:1:/usr/sbin:1:/gpfslocalsys/idrzap/current/bin:1:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:1:/usr/local/sbin:1:/usr/lpp/mmfs/bin:1:/opt/c3/bin:1;' export 'PATH_modshare;
.' '/gpfslocalsup/pub/anaconda-py3/2020.02/etc/profile.d/conda.sh;
conda' 'deactivate;
conda' activate 'pytorch-gpu-1.8.0;
test' '0;'
+++ PSM2_GPUDIRECT=1
+++ export PSM2_GPUDIRECT
+++ MODULES_LMPREREQ='nccl/2.8.3-1-cuda&cuda/11.2|cuda/10.2:magma/2.5.4-cuda&intel-compilers/19.0.4|gcc/8.3.1&cuda/11.2|cuda/10.2:openmpi/4.0.5-cuda&nvidia-compilers/21.3|nvidia-compilers/20.11|nvidia-compilers/20.7|pgi/20.4|gcc/8.3.1&cuda/11.2|cuda/10.2:pytorch-gpu/py3/1.8.0&gcc/8.3.1&cuda/10.2&nccl/2.8.3-1-cuda&cudnn/8.0.4.30-cuda-10.2&intel-mkl/2020.4&magma/2.5.4-cuda&openmpi/4.0.5-cuda'
+++ export MODULES_LMPREREQ
+++ CPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/include:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/include:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/include:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/include:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/include
+++ export CPATH
+++ LD_LIBRARY_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib
+++ export LD_LIBRARY_PATH
+++ SLURM_MPI_TYPE=pmix
+++ export SLURM_MPI_TYPE
+++ OMPI_MCA_mtl=psm2
+++ export OMPI_MCA_mtl
+++ MANPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/share/man:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/man/common:/gpfslocalsys/cuda/10.2/doc/man::/opt/c3/man:/opt/clmgr/man:/opt/sgi/share/man:/opt/clmgr/share/man:/opt/clmgr/lib/cm-cli/man:/gpfslocalsys/slurm/current/share/man:/usr/share/catman:/usr/share/man:/usr/catman:/usr/man
+++ export MANPATH
+++ LIBRARY_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:/gpfslocalsys/cuda/10.2/lib64/stubs:/gpfslocalsys/cuda/10.2/nvvm/lib64:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:/gpfslocalsys/cuda/10.2/lib64:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:/gpfslocalsys/slurm/current/lib/slurm:/gpfslocalsys/slurm/current/lib
+++ export LIBRARY_PATH
+++ MPIF77=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpif77
+++ export MPIF77
+++ MKLROOT_modshare=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl:1
+++ export MKLROOT_modshare
+++ CMAKE_PREFIX_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/
+++ export CMAKE_PREFIX_PATH
+++ LOADEDMODULES=gcc/8.3.1:cuda/10.2:nccl/2.8.3-1-cuda:cudnn/8.0.4.30-cuda-10.2:intel-mkl/2020.4:magma/2.5.4-cuda:openmpi/4.0.5-cuda:pytorch-gpu/py3/1.8.0
+++ export LOADEDMODULES
+++ _LMFILES_=/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/gcc/8.3.1:/gpfslocalsup/pub/module-rh/modulefiles/cuda/10.2:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/nccl/2.8.3-1-cuda:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/cudnn/8.0.4.30-cuda-10.2:/gpfslocalsup/pub/module-rh/modulefiles/intel-mkl/2020.4:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/magma/2.5.4-cuda:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/openmpi/4.0.5-cuda:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/pytorch-gpu/py3/1.8.0
+++ export _LMFILES_
+++ MODULES_LMALTNAME='openmpi/4.0.5-cuda&openmpi/default&openmpi'
+++ export MODULES_LMALTNAME
+++ PKG_CONFIG_PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib/pkgconfig:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib/pkgconfig:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/bin/pkgconfig:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib/pkgconfig
+++ export PKG_CONFIG_PATH
+++ MANPATH_modshare=:1:/opt/sgi/share/man:1:/opt/c3/man:1:/gpfslocalsys/slurm/current/share/man:1:/opt/clmgr/share/man:1:/opt/clmgr/lib/cm-cli/man:1:/usr/man:3:/usr/catman:3:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/share/man:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/man/common:1:/opt/clmgr/man:1:/gpfslocalsys/cuda/10.2/doc/man:1:/usr/share/man:3:/usr/share/catman:3
+++ export MANPATH_modshare
+++ LIBRARY_PATH_modshare=/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:1:/gpfslocalsys/slurm/current/lib:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:1:/gpfslocalsys/cuda/10.2/lib64/stubs:1:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:1:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:1:/gpfslocalsys/cuda/10.2/nvvm/lib64:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:1:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:1:/gpfslocalsys/cuda/10.2/lib64:1:/gpfslocalsys/slurm/current/lib/slurm:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:1:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:1
+++ export LIBRARY_PATH_modshare
+++ MODULES_LMCONFLICT='gcc/8.3.1&gcc:cuda/10.2&cuda:nccl/2.8.3-1-cuda&nccl:cudnn/8.0.4.30-cuda-10.2&cudnn:intel-mkl/2020.4&intel-mkl:magma/2.5.4-cuda&magma:openmpi/4.0.5-cuda&openmpi&intel-mpi:pytorch-gpu/py3/1.8.0&tensorflow&pytorch&caffe&anaconda-py2&anaconda-py3'
+++ export MODULES_LMCONFLICT
+++ MPICC=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpicc
+++ export MPICC
+++ NLSPATH_modshare=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1
+++ export NLSPATH_modshare
+++ MODULES_LMALTNAME_modshare='openmpi/4.0.5-cuda&openmpi/default&openmpi:1'
+++ export MODULES_LMALTNAME_modshare
+++ OMPI_MCA_pml=cm
+++ export OMPI_MCA_pml
+++ INTEL_LICENSE_FILE=/gpfslocalsys/intel/licenses/site_license.lic
+++ export INTEL_LICENSE_FILE
+++ PKG_CONFIG_PATH_modshare=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib/pkgconfig:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/bin/pkgconfig:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib/pkgconfig:1:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib/pkgconfig:1
+++ export PKG_CONFIG_PATH_modshare
+++ MODULES_LMCONFLICT_modshare='cuda/10.2&cuda:1:magma/2.5.4-cuda&magma:1:intel-mkl/2020.4&intel-mkl:1:openmpi/4.0.5-cuda&openmpi&intel-mpi:1:nccl/2.8.3-1-cuda&nccl:1:cudnn/8.0.4.30-cuda-10.2&cudnn:1:pytorch-gpu/py3/1.8.0&tensorflow&pytorch&caffe&anaconda-py2&anaconda-py3:1:gcc/8.3.1&gcc:1'
+++ export MODULES_LMCONFLICT_modshare
+++ INTEL_LICENSE_FILE_modshare=/gpfslocalsys/intel/licenses/site_license.lic:1
+++ export INTEL_LICENSE_FILE_modshare
+++ CUDA_INSTALL_PATH=/gpfslocalsys/cuda/10.2
+++ export CUDA_INSTALL_PATH
+++ MODULES_LMNOTUASKED=gcc/8.3.1:cuda/10.2:nccl/2.8.3-1-cuda:cudnn/8.0.4.30-cuda-10.2:intel-mkl/2020.4:magma/2.5.4-cuda:openmpi/4.0.5-cuda
+++ export MODULES_LMNOTUASKED
+++ PYTHONUNBUFFERED=1
+++ export PYTHONUNBUFFERED
+++ MKLROOT=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl
+++ export MKLROOT
+++ MPICXX=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpic++
+++ export MPICXX
+++ CUDA_PATH=/gpfslocalsys/cuda/10.2
+++ export CUDA_PATH
+++ MODULES_LMNOTUASKED_modshare=gcc/8.3.1:1:nccl/2.8.3-1-cuda:1:cudnn/8.0.4.30-cuda-10.2:1:cuda/10.2:1:openmpi/4.0.5-cuda:1:intel-mkl/2020.4:1:magma/2.5.4-cuda:1
+++ export MODULES_LMNOTUASKED_modshare
+++ PSM2_CUDA_MEMCACHE_SIZE=1024
+++ export PSM2_CUDA_MEMCACHE_SIZE
+++ NLSPATH=/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin/locale/%l_%t/%N
+++ export NLSPATH
+++ MODULES_LMPREREQ_modshare='openmpi/4.0.5-cuda&nvidia-compilers/21.3|nvidia-compilers/20.11|nvidia-compilers/20.7|pgi/20.4|gcc/8.3.1&cuda/11.2|cuda/10.2:1:nccl/2.8.3-1-cuda&cuda/11.2|cuda/10.2:1:magma/2.5.4-cuda&intel-compilers/19.0.4|gcc/8.3.1&cuda/11.2|cuda/10.2:1:pytorch-gpu/py3/1.8.0&gcc/8.3.1&cuda/10.2&nccl/2.8.3-1-cuda&cudnn/8.0.4.30-cuda-10.2&intel-mkl/2020.4&magma/2.5.4-cuda&openmpi/4.0.5-cuda:1'
+++ export MODULES_LMPREREQ_modshare
+++ CPATH_modshare=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/include:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/include:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/include:1:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/include:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/include:1
+++ export CPATH_modshare
+++ C_INCLUDE_PATH=/gpfslocalsys/cuda/10.2/include
+++ export C_INCLUDE_PATH
+++ LD_LIBRARY_PATH_modshare=/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/lib:1:/gpfslocalsys/slurm/current/lib:1:/gpfslocalsys/intel/parallel_studio_xe_2020_update4_cluster_edition/compilers_and_libraries_2020.4.304/linux/mkl/lib/intel64_lin:1:/gpfslocalsys/cuda/10.2/targets/x86_64-linux/lib:1:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/lib:1:/gpfslocalsys/cuda/10.2/nvvm/lib64:1:/gpfslocalsys/cuda/10.2/samples/common/lib/linux/x86_64:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/lib:1:/gpfslocalsys/slurm/current/lib/slurm:1:/gpfslocalsys/cuda/10.2/lib64:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/lib64:1:/gpfslocalsys/cuda/10.2/extras/CUPTI/lib64:1
+++ export LD_LIBRARY_PATH_modshare
+++ CMAKE_PREFIX_PATH_modshare=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/:1:/gpfslocalsup/spack_soft/magma/2.5.4/gcc-8.3.1-kmos2sznxduyph2ycjzwrbygyojzzqa4/:1:/gpfslocalsup/spack_soft/cudnn/8.0.4.30-10.2-linux-x64/gcc-8.3.1-iwlboerqjev5b667qn7b2fxvrjtmtksp/:1:/gpfslocalsup/spack_soft/nccl/2.8.3-1/gcc-8.3.1-k63lvicy45sxedhmivziuwlwt3wy4fws/:1
+++ export CMAKE_PREFIX_PATH_modshare
+++ LOADEDMODULES_modshare=gcc/8.3.1:1:nccl/2.8.3-1-cuda:1:cudnn/8.0.4.30-cuda-10.2:1:pytorch-gpu/py3/1.8.0:1:cuda/10.2:1:intel-mkl/2020.4:1:openmpi/4.0.5-cuda:1:magma/2.5.4-cuda:1
+++ export LOADEDMODULES_modshare
+++ _LMFILES__modshare=/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/pytorch-gpu/py3/1.8.0:1:/gpfslocalsup/pub/module-rh/modulefiles/cuda/10.2:1:/gpfslocalsup/pub/module-rh/modulefiles/intel-mkl/2020.4:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/openmpi/4.0.5-cuda:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/magma/2.5.4-cuda:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/gcc/8.3.1:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/nccl/2.8.3-1-cuda:1:/gpfslocalsup/pub/modules-idris-env4/modulefiles/linux-rhel8-skylake_avx512/cudnn/8.0.4.30-cuda-10.2:1
+++ export _LMFILES__modshare
+++ MPIF90=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin/mpif90
+++ export MPIF90
+++ CUDA_HOME=/gpfslocalsys/cuda/10.2
+++ export CUDA_HOME
+++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ export PATH
+++ PSM2_CUDA=1
+++ export PSM2_CUDA
+++ PATH_modshare=/usr/bin:1:/gpfslocalsup/bin:1:/usr/local/bin:1:/gpfslocalsys/cuda/10.2/nvvm/bin:1:/opt/sgi/bin:1:/gpfslocalsys/slurm/current/bin:1:/gpfslocalsys/cuda/10.2/bin:1:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:1:/opt/clmgr/bin:1:/opt/sgi/sbin:1:/linkhome/rech/genhug01/ura81os/bin:1:/linkhome/rech/genhug01/ura81os/.local/bin:1:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:1:/bin:1:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:1:/opt/clmgr/sbin:1:/gpfslocalsys/cuda/10.2/samples:1:/gpfslocalsys/bin:1:/sbin:1:/usr/sbin:1:/gpfslocalsys/idrzap/current/bin:1:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:1:/usr/local/sbin:1:/usr/lpp/mmfs/bin:1:/opt/c3/bin:1
+++ export PATH_modshare
+++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/profile.d/conda.sh
++++ export CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ export _CE_M=
++++ _CE_M=
++++ export _CE_CONDA=
++++ _CE_CONDA=
++++ export CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ '[' -z x ']'
+++ conda deactivate
+++ '[' 1 -lt 1 ']'
+++ local cmd=deactivate
+++ shift
+++ case "$cmd" in
+++ __conda_activate deactivate
+++ '[' -n '' ']'
+++ local cmd=deactivate
+++ shift
+++ local ask_conda
+++ CONDA_INTERNAL_OLDPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ __add_sys_prefix_to_path
+++ '[' -n '' ']'
++++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
+++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02/bin
++++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin
+++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02
+++ '[' -n '' ']'
+++ PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ export PATH
++++ PS1=
++++ /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda shell.posix deactivate
+++ ask_conda='export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
unset CONDA_PREFIX_2
PS1='\''(base) '\''
export CONDA_PREFIX='\''/gpfslocalsup/pub/anaconda-py3/2020.02'\''
export CONDA_SHLVL='\''2'\''
export CONDA_DEFAULT_ENV='\''base'\''
export CONDA_PROMPT_MODIFIER='\''(base) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/gdal-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/geotiff-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/proj4-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/udunits2-activate.sh"'
+++ rc=0
+++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ eval 'export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
unset CONDA_PREFIX_2
PS1='\''(base) '\''
export CONDA_PREFIX='\''/gpfslocalsup/pub/anaconda-py3/2020.02'\''
export CONDA_SHLVL='\''2'\''
export CONDA_DEFAULT_ENV='\''base'\''
export CONDA_PROMPT_MODIFIER='\''(base) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/gdal-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/geotiff-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/proj4-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/udunits2-activate.sh"'
++++ export PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++++ unset CONDA_PREFIX_2
++++ PS1='(base) '
++++ export CONDA_PREFIX=/gpfslocalsup/pub/anaconda-py3/2020.02
++++ CONDA_PREFIX=/gpfslocalsup/pub/anaconda-py3/2020.02
++++ export CONDA_SHLVL=2
++++ CONDA_SHLVL=2
++++ export CONDA_DEFAULT_ENV=base
++++ CONDA_DEFAULT_ENV=base
++++ export 'CONDA_PROMPT_MODIFIER=(base) '
++++ CONDA_PROMPT_MODIFIER='(base) '
++++ export CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ export _CE_M=
++++ _CE_M=
++++ export _CE_CONDA=
++++ _CE_CONDA=
++++ export CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/gdal-activate.sh
+++++ [[ -n '' ]]
+++++ [[ -n '' ]]
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/gdal ']'
+++++ export GDAL_DATA=/gpfslocalsup/pub/anaconda-py3/2020.02/share/gdal
+++++ GDAL_DATA=/gpfslocalsup/pub/anaconda-py3/2020.02/share/gdal
+++++ export GDAL_DRIVER_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/lib/gdalplugins
+++++ GDAL_DRIVER_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/lib/gdalplugins
+++++ [[ ! -d /gpfslocalsup/pub/anaconda-py3/2020.02/lib/gdalplugins ]]
+++++ unset GDAL_DRIVER_PATH
+++++ export CPL_ZIP_ENCODING=UTF-8
+++++ CPL_ZIP_ENCODING=UTF-8
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/geotiff-activate.sh
+++++ [[ -n '' ]]
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/epsg_csv ']'
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/Library/share/epsg_csv ']'
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/proj4-activate.sh
+++++ '[' -n '' ']'
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/proj ']'
+++++ export PROJ_LIB=/gpfslocalsup/pub/anaconda-py3/2020.02/share/proj
+++++ PROJ_LIB=/gpfslocalsup/pub/anaconda-py3/2020.02/share/proj
+++++ '[' -f /gpfslocalsup/pub/anaconda-py3/2020.02/share/proj/copyright_and_licenses.csv ']'
+++++ export PROJ_NETWORK=ON
+++++ PROJ_NETWORK=ON
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/udunits2-activate.sh
+++++ [[ -n '' ]]
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/udunits ']'
+++++ export UDUNITS2_XML_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/share/udunits/udunits2.xml
+++++ UDUNITS2_XML_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/share/udunits/udunits2.xml
+++ '[' 0 '!=' 0 ']'
+++ __conda_hashr
+++ '[' -n '' ']'
+++ '[' -n '' ']'
+++ hash -r
+++ conda activate pytorch-gpu-1.8.0
+++ '[' 2 -lt 1 ']'
+++ local cmd=activate
+++ shift
+++ case "$cmd" in
+++ __conda_activate activate pytorch-gpu-1.8.0
+++ '[' -n '' ']'
+++ local cmd=activate
+++ shift
+++ local ask_conda
+++ CONDA_INTERNAL_OLDPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ __add_sys_prefix_to_path
+++ '[' -n '' ']'
++++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
+++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02/bin
++++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin
+++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02
+++ '[' -n '' ']'
+++ PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ export PATH
++++ PS1='(base) '
++++ /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda shell.posix activate pytorch-gpu-1.8.0
+++ ask_conda='export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/udunits2-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/proj4-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/geotiff-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/gdal-deactivate.sh"
unset CONDA_PREFIX_1
PS1='\''(pytorch-gpu-1.8.0) '\''
export CONDA_PREFIX='\''/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0'\''
export CONDA_SHLVL='\''1'\''
export CONDA_DEFAULT_ENV='\''pytorch-gpu-1.8.0'\''
export CONDA_PROMPT_MODIFIER='\''(pytorch-gpu-1.8.0) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/etc/conda/activate.d/proj4-activate.sh"'
+++ rc=0
+++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ eval 'export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/udunits2-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/proj4-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/geotiff-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/gdal-deactivate.sh"
unset CONDA_PREFIX_1
PS1='\''(pytorch-gpu-1.8.0) '\''
export CONDA_PREFIX='\''/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0'\''
export CONDA_SHLVL='\''1'\''
export CONDA_DEFAULT_ENV='\''pytorch-gpu-1.8.0'\''
export CONDA_PROMPT_MODIFIER='\''(pytorch-gpu-1.8.0) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/etc/conda/activate.d/proj4-activate.sh"'
++++ export PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/udunits2-deactivate.sh
+++++ unset UDUNITS2_XML_PATH
+++++ [[ -n '' ]]
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/proj4-deactivate.sh
+++++ unset PROJ_LIB
+++++ unset PROJ_NETWORK
+++++ '[' -n '' ']'
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/geotiff-deactivate.sh
+++++ unset GEOTIFF_CSV
+++++ [[ -n '' ]]
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/gdal-deactivate.sh
+++++ unset GDAL_DATA
+++++ [[ -n '' ]]
+++++ unset GDAL_DRIVER_PATH
+++++ [[ -n '' ]]
+++++ unset CPL_ZIP_ENCODING
++++ unset CONDA_PREFIX_1
++++ PS1='(pytorch-gpu-1.8.0) '
++++ export CONDA_PREFIX=/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0
++++ CONDA_PREFIX=/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0
++++ export CONDA_SHLVL=1
++++ CONDA_SHLVL=1
++++ export CONDA_DEFAULT_ENV=pytorch-gpu-1.8.0
++++ CONDA_DEFAULT_ENV=pytorch-gpu-1.8.0
++++ export 'CONDA_PROMPT_MODIFIER=(pytorch-gpu-1.8.0) '
++++ CONDA_PROMPT_MODIFIER='(pytorch-gpu-1.8.0) '
++++ export CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ export _CE_M=
++++ _CE_M=
++++ export _CE_CONDA=
++++ _CE_CONDA=
++++ export CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/etc/conda/activate.d/proj4-activate.sh
+++++ '[' -n '' ']'
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/share/proj ']'
+++++ export PROJ_LIB=/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/share/proj
+++++ PROJ_LIB=/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/share/proj
+++++ '[' -f /gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/share/proj/copyright_and_licenses.csv ']'
+++++ export PROJ_NETWORK=ON
+++++ PROJ_NETWORK=ON
+++ '[' 0 '!=' 0 ']'
+++ __conda_hashr
+++ '[' -n '' ']'
+++ '[' -n '' ']'
+++ hash -r
+++ test 0
++ _mlstatus=0
++ '[' -n x ']'
++ IFS='
'
++ unset _mlre _mlv _mlrv _mlIFS
++ '[' -n '' ']'
++ unset _mlshdbg
++ return 0
++ export GIT_PROMPT_ONLY_IN_REPO=0
++ GIT_PROMPT_ONLY_IN_REPO=0
++ export GIT_PROMPT_THEME=JZPRod
++ GIT_PROMPT_THEME=JZPRod
++ source /gpfsscratch/rech/eha/commun/envs/.bash-git-prompt/gitprompt.sh
+++ _have_find_mmin=1
+++ gp_install_prompt
+++ '[' -z '' ']'
+++ OLD_GITPROMPT='(pytorch-gpu-1.8.0) '
+++ '[' -z '' ']'
++++ we_are_on_repo
+++++ git rev-parse --git-dir
++++ [[ -e '' ]]
++++ echo 0
+++ GIT_PROMPT_OLD_DIR_WAS_GIT=0
+++ '[' -z '' ']'
+++ PROMPT_COMMAND=setGitPrompt
+++ local setLastCommandStateEntry=setLastCommandState
+++ case ";$PROMPT_COMMAND;" in
+++ PROMPT_COMMAND='setLastCommandState;setGitPrompt'
+++ git_prompt_dir
+++ '[' -z '' ']'
+++ local SOURCE=/gpfsscratch/rech/eha/commun/envs/.bash-git-prompt/gitprompt.sh
+++ '[' -h /gpfsscratch/rech/eha/commun/envs/.bash-git-prompt/gitprompt.sh ']'
+++++ dirname /gpfsscratch/rech/eha/commun/envs/.bash-git-prompt/gitprompt.sh
++++ command cd -P /gpfsscratch/rech/eha/commun/envs/.bash-git-prompt
++++ cd -P /gpfsscratch/rech/eha/commun/envs/.bash-git-prompt
++++ pwd
+++ __GIT_PROMPT_DIR=/gpfsssd/scratch/rech/eha/commun/envs/.bash-git-prompt
+++ source /gpfsssd/scratch/rech/eha/commun/envs/.bash-git-prompt/git-prompt-help.sh
++ export SBATCH_ACCOUNT=six@gpu
++ SBATCH_ACCOUNT=six@gpu
++ export SLURM_ACCOUNT=six@gpu
++ SLURM_ACCOUNT=six@gpu
++ export TRANSFORMERS_CACHE=/gpfsscratch/rech/eha/commun/models
++ TRANSFORMERS_CACHE=/gpfsscratch/rech/eha/commun/models
++ export HF_DATASETS_CACHE=/gpfsscratch/rech/eha/commun/datasets
++ HF_DATASETS_CACHE=/gpfsscratch/rech/eha/commun/datasets
++ export HF_MODULES_CACHE=/gpfsscratch/rech/eha/commun/modules
++ HF_MODULES_CACHE=/gpfsscratch/rech/eha/commun/modules
++ export HF_METRICS_CACHE=/gpfsscratch/rech/eha/commun/metrics
++ HF_METRICS_CACHE=/gpfsscratch/rech/eha/commun/metrics
++ export DATASETS_CUSTOM=/gpfsscratch/rech/eha/commun/datasets-custom
++ DATASETS_CUSTOM=/gpfsscratch/rech/eha/commun/datasets-custom
+++ /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda shell.bash hook
++ __conda_setup='export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
# Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
__add_sys_prefix_to_path() {
# In dev-mode CONDA_EXE is python.exe and on Windows
# it is in a different relative location to condabin.
if [ -n "${_CE_CONDA}" ] && [ -n "${WINDIR+x}" ]; then
SYSP=$(\dirname "${CONDA_EXE}")
else
SYSP=$(\dirname "${CONDA_EXE}")
SYSP=$(\dirname "${SYSP}")
fi
if [ -n "${WINDIR+x}" ]; then
PATH="${SYSP}/bin:${PATH}"
PATH="${SYSP}/Scripts:${PATH}"
PATH="${SYSP}/Library/bin:${PATH}"
PATH="${SYSP}/Library/usr/bin:${PATH}"
PATH="${SYSP}/Library/mingw-w64/bin:${PATH}"
PATH="${SYSP}:${PATH}"
else
PATH="${SYSP}/bin:${PATH}"
fi
\export PATH
}
__conda_hashr() {
if [ -n "${ZSH_VERSION:+x}" ]; then
\rehash
elif [ -n "${POSH_VERSION:+x}" ]; then
: # pass
else
\hash -r
fi
}
__conda_activate() {
if [ -n "${CONDA_PS1_BACKUP:+x}" ]; then
# Handle transition from shell activated with conda <= 4.3 to a subsequent activation
# after conda updated to >= 4.4. See issue #6173.
PS1="$CONDA_PS1_BACKUP"
\unset CONDA_PS1_BACKUP
fi
\local cmd="$1"
shift
\local ask_conda
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
ask_conda="$(PS1="$PS1" "$CONDA_EXE" $_CE_M $_CE_CONDA shell.posix "$cmd" "$@")" || \return $?
rc=$?
PATH="${CONDA_INTERNAL_OLDPATH}"
\eval "$ask_conda"
if [ $rc != 0 ]; then
\export PATH
fi
__conda_hashr
}
__conda_reactivate() {
\local ask_conda
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
ask_conda="$(PS1="$PS1" "$CONDA_EXE" $_CE_M $_CE_CONDA shell.posix reactivate)" || \return $?
PATH="${CONDA_INTERNAL_OLDPATH}"
\eval "$ask_conda"
__conda_hashr
}
conda() {
if [ "$#" -lt 1 ]; then
"$CONDA_EXE" $_CE_M $_CE_CONDA
else
\local cmd="$1"
shift
case "$cmd" in
activate|deactivate)
__conda_activate "$cmd" "$@"
;;
install|update|upgrade|remove|uninstall)
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
"$CONDA_EXE" $_CE_M $_CE_CONDA "$cmd" "$@"
\local t1=$?
PATH="${CONDA_INTERNAL_OLDPATH}"
if [ $t1 = 0 ]; then
__conda_reactivate
else
return $t1
fi
;;
*)
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
"$CONDA_EXE" $_CE_M $_CE_CONDA "$cmd" "$@"
\local t1=$?
PATH="${CONDA_INTERNAL_OLDPATH}"
return $t1
;;
esac
fi
}
if [ -z "${CONDA_SHLVL+x}" ]; then
\export CONDA_SHLVL=0
# In dev-mode CONDA_EXE is python.exe and on Windows
# it is in a different relative location to condabin.
if [ -n "${_CE_CONDA:+x}" ] && [ -n "${WINDIR+x}" ]; then
PATH="$(\dirname "$CONDA_EXE")/condabin${PATH:+":${PATH}"}"
else
PATH="$(\dirname "$(\dirname "$CONDA_EXE")")/condabin${PATH:+":${PATH}"}"
fi
\export PATH
# We'\''re not allowing PS1 to be unbound. It must at least be set.
# However, we'\''re not exporting it, which can cause problems when starting a second shell
# via a first shell (i.e. starting zsh from bash).
if [ -z "${PS1+x}" ]; then
PS1=
fi
fi
conda activate base'
++ '[' 0 -eq 0 ']'
++ eval 'export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
# Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
__add_sys_prefix_to_path() {
# In dev-mode CONDA_EXE is python.exe and on Windows
# it is in a different relative location to condabin.
if [ -n "${_CE_CONDA}" ] && [ -n "${WINDIR+x}" ]; then
SYSP=$(\dirname "${CONDA_EXE}")
else
SYSP=$(\dirname "${CONDA_EXE}")
SYSP=$(\dirname "${SYSP}")
fi
if [ -n "${WINDIR+x}" ]; then
PATH="${SYSP}/bin:${PATH}"
PATH="${SYSP}/Scripts:${PATH}"
PATH="${SYSP}/Library/bin:${PATH}"
PATH="${SYSP}/Library/usr/bin:${PATH}"
PATH="${SYSP}/Library/mingw-w64/bin:${PATH}"
PATH="${SYSP}:${PATH}"
else
PATH="${SYSP}/bin:${PATH}"
fi
\export PATH
}
__conda_hashr() {
if [ -n "${ZSH_VERSION:+x}" ]; then
\rehash
elif [ -n "${POSH_VERSION:+x}" ]; then
: # pass
else
\hash -r
fi
}
__conda_activate() {
if [ -n "${CONDA_PS1_BACKUP:+x}" ]; then
# Handle transition from shell activated with conda <= 4.3 to a subsequent activation
# after conda updated to >= 4.4. See issue #6173.
PS1="$CONDA_PS1_BACKUP"
\unset CONDA_PS1_BACKUP
fi
\local cmd="$1"
shift
\local ask_conda
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
ask_conda="$(PS1="$PS1" "$CONDA_EXE" $_CE_M $_CE_CONDA shell.posix "$cmd" "$@")" || \return $?
rc=$?
PATH="${CONDA_INTERNAL_OLDPATH}"
\eval "$ask_conda"
if [ $rc != 0 ]; then
\export PATH
fi
__conda_hashr
}
__conda_reactivate() {
\local ask_conda
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
ask_conda="$(PS1="$PS1" "$CONDA_EXE" $_CE_M $_CE_CONDA shell.posix reactivate)" || \return $?
PATH="${CONDA_INTERNAL_OLDPATH}"
\eval "$ask_conda"
__conda_hashr
}
conda() {
if [ "$#" -lt 1 ]; then
"$CONDA_EXE" $_CE_M $_CE_CONDA
else
\local cmd="$1"
shift
case "$cmd" in
activate|deactivate)
__conda_activate "$cmd" "$@"
;;
install|update|upgrade|remove|uninstall)
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
"$CONDA_EXE" $_CE_M $_CE_CONDA "$cmd" "$@"
\local t1=$?
PATH="${CONDA_INTERNAL_OLDPATH}"
if [ $t1 = 0 ]; then
__conda_reactivate
else
return $t1
fi
;;
*)
CONDA_INTERNAL_OLDPATH="${PATH}"
__add_sys_prefix_to_path
"$CONDA_EXE" $_CE_M $_CE_CONDA "$cmd" "$@"
\local t1=$?
PATH="${CONDA_INTERNAL_OLDPATH}"
return $t1
;;
esac
fi
}
if [ -z "${CONDA_SHLVL+x}" ]; then
\export CONDA_SHLVL=0
# In dev-mode CONDA_EXE is python.exe and on Windows
# it is in a different relative location to condabin.
if [ -n "${_CE_CONDA:+x}" ] && [ -n "${WINDIR+x}" ]; then
PATH="$(\dirname "$CONDA_EXE")/condabin${PATH:+":${PATH}"}"
else
PATH="$(\dirname "$(\dirname "$CONDA_EXE")")/condabin${PATH:+":${PATH}"}"
fi
\export PATH
# We'\''re not allowing PS1 to be unbound. It must at least be set.
# However, we'\''re not exporting it, which can cause problems when starting a second shell
# via a first shell (i.e. starting zsh from bash).
if [ -z "${PS1+x}" ]; then
PS1=
fi
fi
conda activate base'
+++ export CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
+++ CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
+++ export _CE_M=
+++ _CE_M=
+++ export _CE_CONDA=
+++ _CE_CONDA=
+++ export CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
+++ CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
+++ '[' -z x ']'
+++ conda activate base
+++ '[' 2 -lt 1 ']'
+++ local cmd=activate
+++ shift
+++ case "$cmd" in
+++ __conda_activate activate base
+++ '[' -n '' ']'
+++ local cmd=activate
+++ shift
+++ local ask_conda
+++ CONDA_INTERNAL_OLDPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ __add_sys_prefix_to_path
+++ '[' -n '' ']'
++++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
+++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02/bin
++++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin
+++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02
+++ '[' -n '' ']'
+++ PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ export PATH
++++ PS1='(pytorch-gpu-1.8.0) '
++++ /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda shell.posix activate base
+++ ask_conda='. "/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/etc/conda/deactivate.d/proj4-deactivate.sh"
PS1='\''(base) '\''
export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
export CONDA_PREFIX='\''/gpfslocalsup/pub/anaconda-py3/2020.02'\''
export CONDA_SHLVL='\''2'\''
export CONDA_DEFAULT_ENV='\''base'\''
export CONDA_PROMPT_MODIFIER='\''(base) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
export CONDA_PREFIX_1='\''/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/gdal-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/geotiff-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/proj4-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/udunits2-activate.sh"'
+++ rc=0
+++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ eval '. "/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/etc/conda/deactivate.d/proj4-deactivate.sh"
PS1='\''(base) '\''
export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
export CONDA_PREFIX='\''/gpfslocalsup/pub/anaconda-py3/2020.02'\''
export CONDA_SHLVL='\''2'\''
export CONDA_DEFAULT_ENV='\''base'\''
export CONDA_PROMPT_MODIFIER='\''(base) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
export CONDA_PREFIX_1='\''/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0'\''
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/gdal-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/geotiff-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/proj4-activate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/udunits2-activate.sh"'
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0/etc/conda/deactivate.d/proj4-deactivate.sh
+++++ unset PROJ_LIB
+++++ unset PROJ_NETWORK
+++++ '[' -n '' ']'
++++ PS1='(base) '
++++ export PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++++ export CONDA_PREFIX=/gpfslocalsup/pub/anaconda-py3/2020.02
++++ CONDA_PREFIX=/gpfslocalsup/pub/anaconda-py3/2020.02
++++ export CONDA_SHLVL=2
++++ CONDA_SHLVL=2
++++ export CONDA_DEFAULT_ENV=base
++++ CONDA_DEFAULT_ENV=base
++++ export 'CONDA_PROMPT_MODIFIER=(base) '
++++ CONDA_PROMPT_MODIFIER='(base) '
++++ export CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++++ export _CE_M=
++++ _CE_M=
++++ export _CE_CONDA=
++++ _CE_CONDA=
++++ export CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
++++ export CONDA_PREFIX_1=/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0
++++ CONDA_PREFIX_1=/gpfslocalsup/pub/anaconda-py3/2020.02/envs/pytorch-gpu-1.8.0
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/gdal-activate.sh
+++++ [[ -n '' ]]
+++++ [[ -n '' ]]
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/gdal ']'
+++++ export GDAL_DATA=/gpfslocalsup/pub/anaconda-py3/2020.02/share/gdal
+++++ GDAL_DATA=/gpfslocalsup/pub/anaconda-py3/2020.02/share/gdal
+++++ export GDAL_DRIVER_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/lib/gdalplugins
+++++ GDAL_DRIVER_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/lib/gdalplugins
+++++ [[ ! -d /gpfslocalsup/pub/anaconda-py3/2020.02/lib/gdalplugins ]]
+++++ unset GDAL_DRIVER_PATH
+++++ export CPL_ZIP_ENCODING=UTF-8
+++++ CPL_ZIP_ENCODING=UTF-8
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/geotiff-activate.sh
+++++ [[ -n '' ]]
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/epsg_csv ']'
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/Library/share/epsg_csv ']'
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/proj4-activate.sh
+++++ '[' -n '' ']'
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/proj ']'
+++++ export PROJ_LIB=/gpfslocalsup/pub/anaconda-py3/2020.02/share/proj
+++++ PROJ_LIB=/gpfslocalsup/pub/anaconda-py3/2020.02/share/proj
+++++ '[' -f /gpfslocalsup/pub/anaconda-py3/2020.02/share/proj/copyright_and_licenses.csv ']'
+++++ export PROJ_NETWORK=ON
+++++ PROJ_NETWORK=ON
++++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/activate.d/udunits2-activate.sh
+++++ [[ -n '' ]]
+++++ '[' -d /gpfslocalsup/pub/anaconda-py3/2020.02/share/udunits ']'
+++++ export UDUNITS2_XML_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/share/udunits/udunits2.xml
+++++ UDUNITS2_XML_PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/share/udunits/udunits2.xml
+++ '[' 0 '!=' 0 ']'
+++ __conda_hashr
+++ '[' -n '' ']'
+++ '[' -n '' ']'
+++ hash -r
++ unset __conda_setup
++ export CONDA_ENVS_PATH=/gpfsscratch/rech/eha/commun/conda
++ CONDA_ENVS_PATH=/gpfsscratch/rech/eha/commun/conda
++ conda activate hf-prod
++ '[' 2 -lt 1 ']'
++ local cmd=activate
++ shift
++ case "$cmd" in
++ __conda_activate activate hf-prod
++ '[' -n '' ']'
++ local cmd=activate
++ shift
++ local ask_conda
++ CONDA_INTERNAL_OLDPATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++ __add_sys_prefix_to_path
++ '[' -n '' ']'
+++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02/bin
+++ dirname /gpfslocalsup/pub/anaconda-py3/2020.02/bin
++ SYSP=/gpfslocalsup/pub/anaconda-py3/2020.02
++ '[' -n '' ']'
++ PATH=/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++ export PATH
+++ PS1='(base) '
+++ /gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda shell.posix activate hf-prod
++ ask_conda='. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/udunits2-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/proj4-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/geotiff-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/gdal-deactivate.sh"
PS1='\''(/gpfsscratch/rech/eha/commun/conda/hf-prod) '\''
export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
export CONDA_PREFIX='\''/gpfsscratch/rech/eha/commun/conda/hf-prod'\''
export CONDA_SHLVL='\''3'\''
export CONDA_DEFAULT_ENV='\''/gpfsscratch/rech/eha/commun/conda/hf-prod'\''
export CONDA_PROMPT_MODIFIER='\''(/gpfsscratch/rech/eha/commun/conda/hf-prod) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
export CONDA_PREFIX_2='\''/gpfslocalsup/pub/anaconda-py3/2020.02'\'''
++ rc=0
++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
++ eval '. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/udunits2-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/proj4-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/geotiff-deactivate.sh"
. "/gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/gdal-deactivate.sh"
PS1='\''(/gpfsscratch/rech/eha/commun/conda/hf-prod) '\''
export PATH='\''/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin'\''
export CONDA_PREFIX='\''/gpfsscratch/rech/eha/commun/conda/hf-prod'\''
export CONDA_SHLVL='\''3'\''
export CONDA_DEFAULT_ENV='\''/gpfsscratch/rech/eha/commun/conda/hf-prod'\''
export CONDA_PROMPT_MODIFIER='\''(/gpfsscratch/rech/eha/commun/conda/hf-prod) '\''
export CONDA_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda'\''
export _CE_M='\'''\''
export _CE_CONDA='\'''\''
export CONDA_PYTHON_EXE='\''/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python'\''
export CONDA_PREFIX_2='\''/gpfslocalsup/pub/anaconda-py3/2020.02'\'''
+++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/udunits2-deactivate.sh
++++ unset UDUNITS2_XML_PATH
++++ [[ -n '' ]]
+++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/proj4-deactivate.sh
++++ unset PROJ_LIB
++++ unset PROJ_NETWORK
++++ '[' -n '' ']'
+++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/geotiff-deactivate.sh
++++ unset GEOTIFF_CSV
++++ [[ -n '' ]]
+++ . /gpfslocalsup/pub/anaconda-py3/2020.02/etc/conda/deactivate.d/gdal-deactivate.sh
++++ unset GDAL_DATA
++++ [[ -n '' ]]
++++ unset GDAL_DRIVER_PATH
++++ [[ -n '' ]]
++++ unset CPL_ZIP_ENCODING
+++ PS1='(/gpfsscratch/rech/eha/commun/conda/hf-prod) '
+++ export PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ PATH=/gpfslocalsup/spack_soft/openmpi/4.0.5/gcc-8.3.1-h2g75yiqzwc5uct75ifhx5wz7uautdpr/bin:/gpfslocalsys/cuda/10.2/samples:/gpfslocalsys/cuda/10.2/nvvm/bin:/gpfslocalsys/cuda/10.2/bin:/linkhome/rech/genhug01/ura81os/bin:/linkhome/rech/genhug01/ura81os/.local/bin:/linkhome/rech/genhug01/ura81os/bin:/gpfsscratch/rech/eha/commun/conda/hf-prod/bin:/gpfslocalsup/pub/anaconda-py3/2020.02/condabin:/gpfslocalsup/spack_soft/environment-modules/4.3.1/gcc-4.8.5-ism7cdy4xverxywj27jvjstqwk5oxe2v/bin:/opt/clmgr/sbin:/opt/clmgr/bin:/opt/sgi/sbin:/opt/sgi/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/c3/bin:/usr/lpp/mmfs/bin:/sbin:/bin:/gpfslocalsys/slurm/current/bin:/gpfslocalsup/bin:/gpfslocalsys/bin:/gpfslocalsys/idrzap/current/bin
+++ export CONDA_PREFIX=/gpfsscratch/rech/eha/commun/conda/hf-prod
+++ CONDA_PREFIX=/gpfsscratch/rech/eha/commun/conda/hf-prod
+++ export CONDA_SHLVL=3
+++ CONDA_SHLVL=3
+++ export CONDA_DEFAULT_ENV=/gpfsscratch/rech/eha/commun/conda/hf-prod
+++ CONDA_DEFAULT_ENV=/gpfsscratch/rech/eha/commun/conda/hf-prod
+++ export 'CONDA_PROMPT_MODIFIER=(/gpfsscratch/rech/eha/commun/conda/hf-prod) '
+++ CONDA_PROMPT_MODIFIER='(/gpfsscratch/rech/eha/commun/conda/hf-prod) '
+++ export CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
+++ CONDA_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/conda
+++ export _CE_M=
+++ _CE_M=
+++ export _CE_CONDA=
+++ _CE_CONDA=
+++ export CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
+++ CONDA_PYTHON_EXE=/gpfslocalsup/pub/anaconda-py3/2020.02/bin/python
+++ export CONDA_PREFIX_2=/gpfslocalsup/pub/anaconda-py3/2020.02
+++ CONDA_PREFIX_2=/gpfslocalsup/pub/anaconda-py3/2020.02
++ '[' 0 '!=' 0 ']'
++ __conda_hashr
++ '[' -n '' ']'
++ '[' -n '' ']'
++ hash -r
+ nvidia-smi
Sun May 23 08:51:59 2021
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 460.32.03 Driver Version: 460.32.03 CUDA Version: 11.2 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|===============================+======================+======================|
| 0 Tesla V100-SXM2... On | 00000000:1A:00.0 Off | 0 |
| N/A 44C P0 46W / 300W | 0MiB / 32510MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 1 Tesla V100-SXM2... On | 00000000:1C:00.0 Off | 0 |
| N/A 44C P0 46W / 300W | 0MiB / 32510MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 2 Tesla V100-SXM2... On | 00000000:88:00.0 Off | 0 |
| N/A 45C P0 46W / 300W | 0MiB / 32510MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 3 Tesla V100-SXM2... On | 00000000:8A:00.0 Off | 0 |
| N/A 45C P0 44W / 300W | 0MiB / 32510MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+
+ cd /linkhome/rech/genhug01/ura81os/prod/code/megatron-lm/
+ CHECKPOINT_PATH=/gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release
+ VOCAB_FILE=/gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-vocab.json
+ MERGE_FILE=/gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-merges.txt
+ DATA_PATH=/gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document
+ SAVE_CHECKPOINT_PATH=/gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node
++ perl -le '$_=$ENV{"SLURM_JOB_NODELIST"}; s/,.*//; s/-.*//; s/\[//; print'
+ MASTER_ADDR=r6i5n1
+ MASTER_PORT=6000
+ NODE_RANK=0
+ NNODES=32
+ PP_SIZE=32
+ MSIZE=109
+ [[ 109 == 7 ]]
+ [[ 109 == 14 ]]
+ [[ 109 == 18 ]]
+ [[ 109 == 23 ]]
+ [[ 109 == 28 ]]
+ [[ 109 == 39 ]]
+ [[ 109 == 48 ]]
+ [[ 109 == 61 ]]
+ [[ 109 == 75 ]]
+ [[ 109 == 91 ]]
+ [[ 109 == 109 ]]
+ NHIDDEN=12288
+ NLAYERS=64
+ GPUS_PER_NODE=4
+ NHEADS=32
+ SEQ_LEN=1024
+ VOCAB_SIZE=50257
+ MICRO_BATCH_SIZE=1
+ PP_CHUNKS=4
+ DP_SIZE=1
+ TP_SIZE=4
+ GLOBAL_BATCH_SIZE=4
+ WORLD_SIZE=128
+ GPT_ARGS=' --num-layers 64 --hidden-size 12288 --num-attention-heads 32 --seq-length 1024 --max-position-embeddings 1024 --micro-batch-size 1 --global-batch-size 4
--lr 0.00015 --lr-decay-style cosine --min-lr 1.0e-5 --train-iters 1000 --lr-decay-iters 800 --lr-warmup-fraction .01 --weight-decay 1e-2 --clip-grad 1.0 --vocab-file /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-vocab.json --merge-file /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-merges.txt --fp16 --checkpoint-activations '
+ OUTPUT_ARGS=' --log-interval 10 --save-interval 500 --eval-interval 100 --eval-iters 10 '
+ export 'LAUNCHER=python -u -m torch.distributed.launch --nproc_per_node 4 --nnodes 32 --master_addr r6i5n1 --master_port 6000 '
+ LAUNCHER='python -u -m torch.distributed.launch --nproc_per_node 4 --nnodes 32 --master_addr r6i5n1 --master_port 6000 '
++ pwd
+ export 'CMD= /linkhome/rech/genhug01/ura81os/prod/code/megatron-lm/pretrain_gpt.py --tensor-model-parallel-size 4 --pipeline-model-parallel-size 32 --num-layers 64 --hidden-size 12288 --num-attention-heads 32 --seq-length 1024 --max-position-embeddings 1024 --micro-batch-size 1 --global-batch-size 4
--lr 0.00015 --lr-decay-style cosine --min-lr 1.0e-5 --train-iters 1000 --lr-decay-iters 800 --lr-warmup-fraction .01 --weight-decay 1e-2 --clip-grad 1.0 --vocab-file /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-vocab.json --merge-file /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-merges.txt --fp16 --checkpoint-activations --log-interval 10 --save-interval 500 --eval-interval 100 --eval-iters 10 --save /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node --load /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node --data-path /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document --data-impl mmap --split 949,50,1 --distributed-backend nccl '
+ CMD=' /linkhome/rech/genhug01/ura81os/prod/code/megatron-lm/pretrain_gpt.py --tensor-model-parallel-size 4 --pipeline-model-parallel-size 32 --num-layers 64 --hidden-size 12288 --num-attention-heads 32 --seq-length 1024 --max-position-embeddings 1024 --micro-batch-size 1 --global-batch-size 4
--lr 0.00015 --lr-decay-style cosine --min-lr 1.0e-5 --train-iters 1000 --lr-decay-iters 800 --lr-warmup-fraction .01 --weight-decay 1e-2 --clip-grad 1.0 --vocab-file /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-vocab.json --merge-file /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-merges.txt --fp16 --checkpoint-activations --log-interval 10 --save-interval 500 --eval-interval 100 --eval-iters 10 --save /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node --load /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node --data-path /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document --data-impl mmap --split 949,50,1 --distributed-backend nccl '
+ rm -rf /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node
+ python -c 'h=12288; l=64; s=1024; v=50257; print(f'\''Model size: {(l * (12*h**2 + 13*h) + (v * h) + (s * h) ) / 2**30 :.0f}B'\'')'
Model size: 109B
+ srun --jobid 1809620 bash -c '$LAUNCHER --node_rank $SLURM_PROCID $CMD'
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
*****************************************
Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
*****************************************
using world size: 128, data-parallel-size: 1, tensor-model-parallel size: 4, pipeline-model-parallel size: 32
using torch.float16 for parameters ...
------------------------ arguments ------------------------
accumulate_allreduce_grads_in_fp32 .............. False
adam_beta1 ...................................... 0.9
adam_beta2 ...................................... 0.999
adam_eps ........................................ 1e-08
adlr_autoresume ................................. False
adlr_autoresume_interval ........................ 1000
apply_query_key_layer_scaling ................... True
apply_residual_connection_post_layernorm ........ False
attention_dropout ............................... 0.1
attention_softmax_in_fp32 ....................... False
bert_binary_head ................................ True
bert_load ....................................... None
bf16 ............................................ False
bias_dropout_fusion ............................. True
bias_gelu_fusion ................................ True
biencoder_projection_dim ........................ 0
biencoder_shared_query_context_model ............ False
block_data_path ................................. None
checkpoint_activations .......................... True
checkpoint_num_layers ........................... 1
clip_grad ....................................... 1.0
consumed_train_samples .......................... 0
consumed_valid_samples .......................... 0
data_impl ....................................... mmap
data_parallel_size .............................. 1
data_path ....................................... ['/gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document']
dataloader_type ................................. single
DDP_impl ........................................ local
decoder_seq_length .............................. None
distribute_checkpointed_activations ............. False
distributed_backend ............................. nccl
embedding_path .................................. None
encoder_seq_length .............................. 1024
eod_mask_loss ................................... False
eval_interval ................................... 100
eval_iters ...................................... 10
evidence_data_path .............................. None
exit_duration_in_mins ........................... None
exit_interval ................................... None
ffn_hidden_size ................................. 49152
finetune ........................................ False
fp16 ............................................ True
fp16_lm_cross_entropy ........................... False
fp32_residual_connection ........................ False
global_batch_size ............................... 4
hidden_dropout .................................. 0.1
hidden_size ..................................... 12288
hysteresis ...................................... 2
ict_head_size ................................... None
ict_load ........................................ None
img_dim ......................................... 224
indexer_batch_size .............................. 128
indexer_log_interval ............................ 1000
init_method_std ................................. 0.02
init_method_xavier_uniform ...................... False
initial_loss_scale .............................. 4294967296
kv_channels ..................................... 384
layernorm_epsilon ............................... 1e-05
lazy_mpu_init ................................... None
load ............................................ /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node
local_rank ...................................... 0
log_batch_size_to_tensorboard ................... False
log_interval .................................... 10
log_learning_rate_to_tensorboard ................ True
log_loss_scale_to_tensorboard ................... True
log_num_zeros_in_grad ........................... False
log_params_norm ................................. False
log_timers_to_tensorboard ....................... False
log_validation_ppl_to_tensorboard ............... False
loss_scale ...................................... None
loss_scale_window ............................... 1000
lr .............................................. 0.00015
lr_decay_iters .................................. 800
lr_decay_samples ................................ None
lr_decay_style .................................. cosine
lr_warmup_fraction .............................. 0.01
lr_warmup_iters ................................. 0
lr_warmup_samples ............................... 0
make_vocab_size_divisible_by .................... 128
mask_prob ....................................... 0.15
masked_softmax_fusion ........................... True
max_position_embeddings ......................... 1024
merge_file ...................................... /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-merges.txt
micro_batch_size ................................ 1
min_loss_scale .................................. 1.0
min_lr .......................................... 1e-05
mmap_warmup ..................................... False
no_load_optim ................................... None
no_load_rng ..................................... None
no_save_optim ................................... None
no_save_rng ..................................... None
num_attention_heads ............................. 32
num_channels .................................... 3
num_classes ..................................... 1000
num_layers ...................................... 64
num_layers_per_virtual_pipeline_stage ........... None
num_workers ..................................... 2
onnx_safe ....................................... None
openai_gelu ..................................... False
optimizer ....................................... adam
override_lr_scheduler ........................... False
params_dtype .................................... torch.float16
patch_dim ....................................... 16
pipeline_model_parallel_size .................... 32
query_in_block_prob ............................. 0.1
rampup_batch_size ............................... None
rank ............................................ 0
reset_attention_mask ............................ False
reset_position_ids .............................. False
retriever_report_topk_accuracies ................ []
retriever_score_scaling ......................... False
retriever_seq_length ............................ 256
sample_rate ..................................... 1.0
save ............................................ /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node
save_interval ................................... 500
scatter_gather_tensors_in_pipeline .............. True
seed ............................................ 1234
seq_length ...................................... 1024
sgd_momentum .................................... 0.9
short_seq_prob .................................. 0.1
split ........................................... 949,50,1
tensor_model_parallel_size ...................... 4
tensorboard_dir ................................. None
tensorboard_log_interval ........................ 1
tensorboard_queue_size .......................... 1000
titles_data_path ................................ None
tokenizer_type .................................. GPT2BPETokenizer
train_iters ..................................... 1000
train_samples ................................... None
use_checkpoint_lr_scheduler ..................... False
use_contiguous_buffers_in_ddp ................... False
use_cpu_initialization .......................... None
use_one_sent_docs ............................... False
virtual_pipeline_model_parallel_size ............ None
vocab_extra_ids ................................. 0
vocab_file ...................................... /gpfsscratch/rech/eha/commun/models-custom/megatron-gpt2/megatron_lm_345m_v0.0/release/gpt2-vocab.json
weight_decay .................................... 0.01
world_size ...................................... 128
-------------------- end of arguments ---------------------
setting number of micro-batches to constant 4
> building GPT2BPETokenizer tokenizer ...
> padded vocab (size: 50257) with 431 dummy tokens (new size: 50688)
> initializing torch distributed ...
> initializing tensor model parallel with size 4
> initializing pipeline model parallel with size 32
> setting random seeds to 1234 ...
> initializing model parallel cuda seeds on global rank 0, model parallel rank 0, and data parallel rank 0 with model parallel seed: 3952 and data parallel seed: 1234
> compiling dataset index builder ...
make: Entering directory '/gpfsdswork/projects/rech/eha/commun/code/megatron-lm/megatron/data'
make: Nothing to be done for 'default'.
make: Leaving directory '/gpfsdswork/projects/rech/eha/commun/code/megatron-lm/megatron/data'
>>> done with dataset index builder. Compilation time: 0.109 seconds
> compiling and loading fused kernels ...
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
Detected CUDA files, patching ldflags
Emitting ninja build file /gpfsdswork/projects/rech/eha/commun/code/megatron-lm/megatron/fused_kernels/build/build.ninja...
Building extension module scaled_upper_triang_masked_softmax_cuda...
Allowing ninja to set a default number of workers... (overridable by setting the environment variable MAX_JOBS=N)
ninja: no work to do.
Loading extension module scaled_upper_triang_masked_softmax_cuda...
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
Detected CUDA files, patching ldflags
Emitting ninja build file /gpfsdswork/projects/rech/eha/commun/code/megatron-lm/megatron/fused_kernels/build/build.ninja...
Building extension module scaled_masked_softmax_cuda...
Allowing ninja to set a default number of workers... (overridable by setting the environment variable MAX_JOBS=N)
ninja: no work to do.
Loading extension module scaled_masked_softmax_cuda...
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
Detected CUDA files, patching ldflags
Emitting ninja build file /gpfsdswork/projects/rech/eha/commun/code/megatron-lm/megatron/fused_kernels/build/build.ninja...
Building extension module fused_mix_prec_layer_norm_cuda...
Allowing ninja to set a default number of workers... (overridable by setting the environment variable MAX_JOBS=N)
ninja: no work to do.
Loading extension module fused_mix_prec_layer_norm_cuda...
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
/gpfsscratch/rech/eha/commun/conda/hf-prod/lib/python3.8/site-packages/torch/utils/cpp_extension.py:283: UserWarning:
!! WARNING !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (c++) is not compatible with the compiler Pytorch was
built with for this platform, which is g++ on linux. Please
use g++ to to compile your extension. Alternatively, you may
compile PyTorch from source using c++, and then you can also use
c++ to compile your extension.
See https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md for help
with compiling PyTorch from source.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! WARNING !!
warnings.warn(WRONG_COMPILER_WARNING.format(
>>> done with compiling and loading fused kernels. Compilation time: 10.881 seconds
time to initialize megatron (seconds): 32.370
[after megatron is initialized] datetime: 2021-05-23 08:52:16
building GPT model ...
> number of parameters on (tensor, pipeline) model parallel rank (2, 8): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 8): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 15): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 15): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 5): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 8): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 15): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 5): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 5): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 5): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 15): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 8): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 6): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 2): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 6): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 2): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 18): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 26): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 18): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 26): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 19): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 2): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 3): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 27): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 26): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 19): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 3): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 20): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 27): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 1): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 16): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 10): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 13): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 28): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 20): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 18): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 2): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 1): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 7): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 19): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 13): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 28): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 20): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 27): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 18): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 23): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 16): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 4): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 24): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 7): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 19): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 10): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 6): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 13): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 3): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 28): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 20): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 27): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 22): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 12): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 1): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 23): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 16): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 14): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 4): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 24): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 25): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 7): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 10): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 6): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 21): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 3): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 22): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 12): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 1): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 23): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 16): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 24): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 7): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 10): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 21): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 13): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 28): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 17): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 22): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 12): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 9): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 23): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 14): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 11): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 4): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 24): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 26): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 21): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 29): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 22): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 12): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 9): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 14): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 11): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 4): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 21): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 29): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 9): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 25): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 17): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 9): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 17): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 25): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 29): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 17): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 29): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (3, 30): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 11): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 30): 906160128 > number of parameters on (tensor, pipeline) model parallel rank (1, 30): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (1, 25): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 14): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (2, 30): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 11): 906160128
> number of parameters on (tensor, pipeline) model parallel rank (0, 31): 1061898240
> number of parameters on (tensor, pipeline) model parallel rank (1, 31): 1061898240
> number of parameters on (tensor, pipeline) model parallel rank (2, 31): 1061898240
> number of parameters on (tensor, pipeline) model parallel rank (1, 0): 1074456576
> number of parameters on (tensor, pipeline) model parallel rank (2, 0): 1074456576
> number of parameters on (tensor, pipeline) model parallel rank (3, 31): 1061898240
> number of parameters on (tensor, pipeline) model parallel rank (0, 0): 1074456576
> number of parameters on (tensor, pipeline) model parallel rank (3, 0): 1074456576
> learning rate decay style: cosine
WARNING: could not find the metadata file /gpfsscratch/rech/eha/commun/checkpoints/gpt2-1-node/latest_checkpointed_iteration.txt
will not load any checkpoints and will start from random
time (ms) | load-checkpoint: 0.54
[after model, optimizer, and learning rate scheduler are built] datetime: 2021-05-23 08:52:16
> building train, validation, and test datasets ...
> datasets target sizes (minimum size):
train: 4000
validation: 440
test: 40
> building train, validation, and test datasets for GPT ...
> building dataset index ...
reading sizes...
reading pointers...
reading document index...
creating numpy buffer of mmap...
creating memory view of numpy buffer...
> finished creating indexed dataset in 0.001573 seconds
number of documents: 10000
> dataset split:
train:
document indices in [0, 9490) total of 9490 documents
validation:
document indices in [9490, 9990) total of 500 documents
test:
document indices in [9990, 10000) total of 10 documents
> loading doc-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_train_indexmap_4000ns_1024sl_1234s_doc_idx.npy
> loading sample-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_train_indexmap_4000ns_1024sl_1234s_sample_idx.npy
> loading shuffle-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_train_indexmap_4000ns_1024sl_1234s_shuffle_idx.npy
loaded indexed file in 0.002 seconds
total number of samples: 10353
total number of epochs: 1
> loading doc-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_valid_indexmap_440ns_1024sl_1234s_doc_idx.npy
> loading sample-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_valid_indexmap_440ns_1024sl_1234s_sample_idx.npy
> loading shuffle-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_valid_indexmap_440ns_1024sl_1234s_shuffle_idx.npy
loaded indexed file in 0.002 seconds
total number of samples: 622
total number of epochs: 1
> loading doc-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_test_indexmap_40ns_1024sl_1234s_doc_idx.npy
> loading sample-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_test_indexmap_40ns_1024sl_1234s_sample_idx.npy
> loading shuffle-idx mapping from /gpfsscratch/rech/eha/commun/datasets-custom/openwebtext-10k/meg-gpt2_text_document_test_indexmap_40ns_1024sl_1234s_shuffle_idx.npy
loaded indexed file in 0.002 seconds
total number of samples: 46
total number of epochs: 3
> finished creating GPT datasets ...
[after dataloaders are built] datetime: 2021-05-23 08:52:17
done with setup ...
training ...
time (ms) | model-and-optimizer-setup: 443.30 | train/valid/test-data-iterators-setup: 480.62
[before the start of training step] datetime: 2021-05-23 08:52:17
iteration 10/ 1000 | consumed samples: 40 | elapsed time per iteration (ms): 10462.5 | learning rate: 0.000E+00 | global batch size: 4 | loss scale: 8388608.0 | number of skipped iterations: 10 | number of nan iterations: 0 |
time (ms) | forward-compute: 250.22 | forward-recv: 4687.11 | backward-compute: 435.59 | backward-send: 64.83 | backward-send-forward-recv: 154.93 | backward-params-all-reduce: 25.97 | backward-embedding-all-reduce: 4718.66 | optimizer-copy-to-main-grad: 9.40 | optimizer-unscale-and-check-inf: 114.63 | optimizer: 124.17 | batch-generator: 3.15
iteration 20/ 1000 | consumed samples: 80 | elapsed time per iteration (ms): 4209.4 | learning rate: 3.750E-05 | global batch size: 4 | lm loss: 1.297589E+01 | loss scale: 32768.0 | number of skipped iterations: 8 | number of nan iterations: 0 |
[Rank 48] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 8] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 61] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 36] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 7] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 92] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 64] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 2] (after 20 iterations) memory (MB) | allocated: 20495.63671875 | max allocated: 23405.0654296875 | reserved: 28542.0 | max reserved: 28542.0
[Rank 58] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 44] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 16] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 96] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23828.0 | max reserved: 23828.0
[Rank 102] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 28] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 104] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 76] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 32] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 40] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 25] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 126] (after 20 iterations) memory (MB) | allocated: 20304.1064453125 | max allocated: 22959.53564453125 | reserved: 27792.0 | max reserved: 27792.0
[Rank 84] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 116] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 52] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 12] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 120] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19786.015625 | reserved: 23562.0 | max reserved: 23562.0
[Rank 112] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 80] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 20] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 68] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 108] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 72] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 88] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 60] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 4] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 0] (after 20 iterations) memory (MB) | allocated: 20495.63671875 | max allocated: 23405.0654296875 | reserved: 28902.0 | max reserved: 28902.0
[Rank 57] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 103] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 27] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 127] (after 20 iterations) memory (MB) | allocated: 20304.1064453125 | max allocated: 22959.53564453125 | reserved: 27792.0 | max reserved: 27792.0
[Rank 1] (after 20 iterations) memory (MB) | allocated: 20495.63671875 | max allocated: 23405.0654296875 | reserved: 28470.0 | max reserved: 28470.0
[Rank 3] (after 20 iterations) memory (MB) | allocated: 20495.63671875 | max allocated: 23405.0654296875 | reserved: 28398.0 | max reserved: 28398.0
[Rank 56] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 101] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 24] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 125] (after 20 iterations) memory (MB) | allocated: 20304.1064453125 | max allocated: 22959.53564453125 | reserved: 27792.0 | max reserved: 27792.0
[Rank 124] (after 20 iterations) memory (MB) | allocated: 20304.1064453125 | max allocated: 22959.53564453125 | reserved: 27792.0 | max reserved: 27792.0
[Rank 100] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
time (ms) | forward-compute: 130.83 | forward-recv: 913.07 | backward-compute: 365.80 | backward-send: 1.39 | backward-send-forward-recv: 8.67 | backward-params-all-reduce: 23.75 | backward-embedding-all-reduce: 2694.33 | optimizer-copy-to-main-grad: 9.41 | optimizer-unscale-and-check-inf: 45.86 | optimizer-clip-main-grad: 3.34 | optimizer-copy-main-to-model-params: 2.10 | optimizer: 70.64 | batch-generator: 2.80
[Rank 59] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 90] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0[Rank 89] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 62] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 18] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23756.0 | max reserved: 23756.0
[Rank 11] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 37] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 66] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 45] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 17] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 97] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 31] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 105] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0[Rank 106] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 78] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 34] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 42] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 87] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 119] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 53] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 13] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 121] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19786.015625 | reserved: 23550.0 | max reserved: 23550.0
[Rank 115] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 82] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 23] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 69] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 111] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 73] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0[Rank 75] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 9] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 39] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 46] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 19] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23756.0 | max reserved: 23756.0
[Rank 99] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 30] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 79] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 118] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 123] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19786.015625 | reserved: 23550.0 | max reserved: 23550.0
[Rank 113] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 110] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 98] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 107] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 50] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 93] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 6] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 35] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 41] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 15] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 63] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 38] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 65] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 29] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 26] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 5] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 67] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 86] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 54] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 83] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 70] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 10] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 122] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19786.015625 | reserved: 23550.0 | max reserved: 23550.0
[Rank 114] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 77] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 33] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 117] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 55] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 81] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 109] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 91] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 47] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 43] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 85] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 14] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 71] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 74] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 51] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 49] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 21] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 22] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23840.0 | max reserved: 23840.0
[Rank 95] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
[Rank 94] (after 20 iterations) memory (MB) | allocated: 17331.63671875 | max allocated: 19859.015625 | reserved: 23816.0 | max reserved: 23816.0
iteration 30/ 1000 | consumed samples: 120 | elapsed time per iteration (ms): 4237.8 | learning rate: 1.500E-04 | global batch size: 4 | lm loss: 5.028361E+01 | loss scale: 16384.0 | grad norm: 103.606 | number of skipped iterations: 1 | number of nan iterations: 0 |
time (ms) | forward-compute: 130.30 | forward-recv: 896.05 | backward-compute: 363.15 | backward-send: 1.38 | backward-send-forward-recv: 8.62 | backward-params-all-reduce: 25.06 | backward-embedding-all-reduce: 2707.29 | optimizer-copy-to-main-grad: 9.40 | optimizer-unscale-and-check-inf: 34.74 | optimizer-clip-main-grad: 14.99 | optimizer-copy-main-to-model-params: 8.54 | optimizer: 105.04 | batch-generator: 2.78
iteration 40/ 1000 | consumed samples: 160 | elapsed time per iteration (ms): 4234.7 | learning rate: 1.499E-04 | global batch size: 4 | lm loss: 2.272675E+01 | loss scale: 16384.0 | grad norm: 96.715 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 130.18 | forward-recv: 896.29 | backward-compute: 362.68 | backward-send: 1.38 | backward-send-forward-recv: 8.63 | backward-params-all-reduce: 20.87 | backward-embedding-all-reduce: 2697.71 | optimizer-copy-to-main-grad: 9.42 | optimizer-unscale-and-check-inf: 39.06 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 116.13 | batch-generator: 2.76
iteration 50/ 1000 | consumed samples: 200 | elapsed time per iteration (ms): 4224.4 | learning rate: 1.497E-04 | global batch size: 4 | lm loss: 1.449852E+01 | loss scale: 16384.0 | grad norm: 73.806 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 129.84 | forward-recv: 894.76 | backward-compute: 361.84 | backward-send: 1.39 | backward-send-forward-recv: 8.65 | backward-params-all-reduce: 20.81 | backward-embedding-all-reduce: 2690.45 | optimizer-copy-to-main-grad: 9.42 | optimizer-unscale-and-check-inf: 38.68 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 115.76 | batch-generator: 2.74
iteration 60/ 1000 | consumed samples: 240 | elapsed time per iteration (ms): 4219.9 | learning rate: 1.494E-04 | global batch size: 4 | lm loss: 9.795533E+00 | loss scale: 16384.0 | grad norm: 24.892 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 129.74 | forward-recv: 895.12 | backward-compute: 361.72 | backward-send: 1.40 | backward-send-forward-recv: 8.56 | backward-params-all-reduce: 20.78 | backward-embedding-all-reduce: 2687.34 | optimizer-copy-to-main-grad: 9.41 | optimizer-unscale-and-check-inf: 37.37 | optimizer-clip-main-grad: 16.62 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 114.38 | batch-generator: 2.75
iteration 70/ 1000 | consumed samples: 280 | elapsed time per iteration (ms): 4213.8 | learning rate: 1.490E-04 | global batch size: 4 | lm loss: 9.075775E+00 | loss scale: 16384.0 | grad norm: 7.750 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 129.56 | forward-recv: 894.14 | backward-compute: 360.57 | backward-send: 1.38 | backward-send-forward-recv: 8.65 | backward-params-all-reduce: 20.79 | backward-embedding-all-reduce: 2683.78 | optimizer-copy-to-main-grad: 9.41 | optimizer-unscale-and-check-inf: 37.08 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 114.11 | batch-generator: 2.78
iteration 80/ 1000 | consumed samples: 320 | elapsed time per iteration (ms): 4210.5 | learning rate: 1.485E-04 | global batch size: 4 | lm loss: 8.799008E+00 | loss scale: 16384.0 | grad norm: 7.250 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 129.31 | forward-recv: 893.93 | backward-compute: 360.01 | backward-send: 1.38 | backward-send-forward-recv: 8.69 | backward-params-all-reduce: 20.75 | backward-embedding-all-reduce: 2680.66 | optimizer-copy-to-main-grad: 9.42 | optimizer-unscale-and-check-inf: 37.85 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.50 | optimizer: 114.94 | batch-generator: 2.77
iteration 90/ 1000 | consumed samples: 360 | elapsed time per iteration (ms): 4210.6 | learning rate: 1.478E-04 | global batch size: 4 | lm loss: 8.625793E+00 | loss scale: 16384.0 | grad norm: 7.647 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 129.24 | forward-recv: 894.59 | backward-compute: 359.69 | backward-send: 1.38 | backward-send-forward-recv: 8.61 | backward-params-all-reduce: 20.74 | backward-embedding-all-reduce: 2682.29 | optimizer-copy-to-main-grad: 9.41 | optimizer-unscale-and-check-inf: 36.13 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 113.20 | batch-generator: 2.78
iteration 100/ 1000 | consumed samples: 400 | elapsed time per iteration (ms): 4210.1 | learning rate: 1.471E-04 | global batch size: 4 | lm loss: 8.531094E+00 | loss scale: 16384.0 | grad norm: 6.114 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 129.48 | forward-recv: 894.08 | backward-compute: 360.36 | backward-send: 1.38 | backward-send-forward-recv: 8.58 | backward-params-all-reduce: 20.81 | backward-embedding-all-reduce: 2680.74 | optimizer-copy-to-main-grad: 9.42 | optimizer-unscale-and-check-inf: 36.79 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 113.88 | batch-generator: 2.76
-----------------------------------------------------------------------------------------------
validation loss at iteration 100 | lm loss value: 8.581882E+00 | lm loss PPL: 5.334132E+03 |
-----------------------------------------------------------------------------------------------
iteration 110/ 1000 | consumed samples: 440 | elapsed time per iteration (ms): 4348.9 | learning rate: 1.462E-04 | global batch size: 4 | lm loss: 8.474951E+00 | loss scale: 16384.0 | grad norm: 5.332 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 257.74 | forward-recv: 901.06 | backward-compute: 360.72 | backward-send: 1.36 | backward-send-forward-recv: 8.69 | backward-params-all-reduce: 20.82 | backward-embedding-all-reduce: 2681.99 | optimizer-copy-to-main-grad: 9.41 | optimizer-unscale-and-check-inf: 38.15 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 115.22 | batch-generator: 5.00
iteration 120/ 1000 | consumed samples: 480 | elapsed time per iteration (ms): 4212.5 | learning rate: 1.453E-04 | global batch size: 4 | lm loss: 8.531981E+00 | loss scale: 16384.0 | grad norm: 5.915 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 129.44 | forward-recv: 893.57 | backward-compute: 360.12 | backward-send: 1.37 | backward-send-forward-recv: 8.66 | backward-params-all-reduce: 20.77 | backward-embedding-all-reduce: 2683.29 | optimizer-copy-to-main-grad: 9.41 | optimizer-unscale-and-check-inf: 37.44 | optimizer-clip-main-grad: 16.64 | optimizer-copy-main-to-model-params: 9.49 | optimizer: 114.48 | batch-generator: 2.79
srun: Job step aborted: Waiting up to 62 seconds for job step to finish.
slurmstepd: error: *** STEP 1809620.0 ON r6i5n1 CANCELLED AT 2021-05-23T09:02:07 ***
slurmstepd: error: *** JOB 1809620 ON r6i5n1 CANCELLED AT 2021-05-23T09:02:07 ***
Killing subprocess 75643
Killing subprocess 5687
Killing subprocess 71625
Killing subprocess 75644
Killing subprocess 5689
Killing subprocess 71626
Killing subprocess 5690
Killing subprocess 71627
Killing subprocess 5692
Killing subprocess 71628
Killing subprocess 75645
Main process received SIGTERM, exiting
Killing subprocess 75646
Main process received SIGTERM, exiting
Main process received SIGTERM, exiting
Killing subprocess 14597
Killing subprocess 14598
Killing subprocess 73621
Killing subprocess 68072
Killing subprocess 14599
Killing subprocess 73622
Killing subprocess 68073
Killing subprocess 68074
Killing subprocess 73624
Killing subprocess 14600
Killing subprocess 68075
Killing subprocess 73625
Main process received SIGTERM, exiting
Main process received SIGTERM, exiting
Killing subprocess 21884
Killing subprocess 45514
Killing subprocess 55389
Killing subprocess 45515
Killing subprocess 21885
Main process received SIGTERM, exiting
Killing subprocess 45516
Killing subprocess 21886
Killing subprocess 55390
Killing subprocess 63300
Killing subprocess 78233
Killing subprocess 30470
Killing subprocess 21887
Killing subprocess 63301
Killing subprocess 26023
Killing subprocess 78234
Killing subprocess 55391
Killing subprocess 45517
Killing subprocess 30472
Killing subprocess 81396
Killing subprocess 5544
Main process received SIGTERM, exiting
Killing subprocess 63302
Killing subprocess 78235
Killing subprocess 55393
Main process received SIGTERM, exiting
Killing subprocess 30476
Killing subprocess 63303
Killing subprocess 78236
Main process received SIGTERM, exiting
Killing subprocess 30479
Killing subprocess 17924
Killing subprocess 54928
Killing subprocess 5545
Main process received SIGTERM, exiting
Killing subprocess 55801
Killing subprocess 43273
Killing subprocess 81397
Killing subprocess 5546
Killing subprocess 26024
Killing subprocess 12635
Killing subprocess 9164
Killing subprocess 26025
Main process received SIGTERM, exiting
Killing subprocess 81398
Killing subprocess 17925
Killing subprocess 54931
Killing subprocess 43274
Main process received SIGTERM, exiting
Killing subprocess 55802
Killing subprocess 5547
Killing subprocess 43275
Killing subprocess 81399
Killing subprocess 55803
Killing subprocess 4245
Main process received SIGTERM, exiting
Killing subprocess 9165
Killing subprocess 44606
Killing subprocess 12636
Main process received SIGTERM, exiting
Killing subprocess 17926
Killing subprocess 55804
Killing subprocess 9166
Killing subprocess 54932
Killing subprocess 52742
Killing subprocess 54933
Killing subprocess 44607
Killing subprocess 43276
Main process received SIGTERM, exiting
Main process received SIGTERM, exiting
Killing subprocess 4246
Main process received SIGTERM, exiting
Killing subprocess 5582
Killing subprocess 77416
Killing subprocess 26026
Killing subprocess 44608
Killing subprocess 12637
Killing subprocess 52743
Main process received SIGTERM, exiting
Killing subprocess 29285
Killing subprocess 12638
Killing subprocess 9167
Killing subprocess 52744
Main process received SIGTERM, exiting
Killing subprocess 5583
Killing subprocess 4247
Killing subprocess 17927
Killing subprocess 46769
Killing subprocess 65443
Killing subprocess 39849
Killing subprocess 4248
Main process received SIGTERM, exiting
Killing subprocess 77417
Killing subprocess 5584
Killing subprocess 29286
Killing subprocess 77418
Killing subprocess 39850
Killing subprocess 65444
Killing subprocess 46770
Killing subprocess 5585
Killing subprocess 44609
Killing subprocess 77419
Main process received SIGTERM, exiting
Main process received SIGTERM, exiting
Killing subprocess 39851
Killing subprocess 52745
Main process received SIGTERM, exiting
Killing subprocess 29287
Main process received SIGTERM, exiting
Killing subprocess 29288
Main process received SIGTERM, exiting
Killing subprocess 65445
Killing subprocess 39852
Killing subprocess 65446
Killing subprocess 46771
Killing subprocess 46772
Main process received SIGTERM, exiting
Main process received SIGTERM, exiting
Killing subprocess 6091
Killing subprocess 6092
Main process received SIGTERM, exiting
Killing subprocess 76867
Main process received SIGTERM, exiting
Killing subprocess 6093
Main process received SIGTERM, exiting
Killing subprocess 6094
Main process received SIGTERM, exiting
Killing subprocess 76868
Killing subprocess 76869
Killing subprocess 76870
Main process received SIGTERM, exiting
|