File size: 140,847 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 |
+ 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:40:52 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... Off | 00000000:1A:00.0 Off | 0 |
| N/A 46C P0 44W / 300W | 0MiB / 32510MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 1 Tesla V100-SXM2... Off | 00000000:1C:00.0 Off | 0 |
| N/A 46C P0 44W / 300W | 0MiB / 32510MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 2 Tesla V100-SXM2... Off | 00000000:88:00.0 Off | 0 |
| N/A 45C P0 44W / 300W | 0MiB / 32510MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
| 3 Tesla V100-SXM2... Off | 00000000:8A:00.0 Off | 0 |
| N/A 45C P0 47W / 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=r8i3n1
+ MASTER_PORT=6000
+ NODE_RANK=0
+ NNODES=4
+ PP_SIZE=4
+ MSIZE=18
+ [[ 18 == 7 ]]
+ [[ 18 == 14 ]]
+ [[ 18 == 18 ]]
+ NHIDDEN=6144
+ NLAYERS=40
+ 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=16
+ GPT_ARGS=' --num-layers 40 --hidden-size 6144 --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 4 --master_addr r8i3n1 --master_port 6000 '
+ LAUNCHER='python -u -m torch.distributed.launch --nproc_per_node 4 --nnodes 4 --master_addr r8i3n1 --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 4 --num-layers 40 --hidden-size 6144 --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 4 --num-layers 40 --hidden-size 6144 --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=6144; l=40; s=1024; v=50257; print(f'\''Model size: {(l * (12*h**2 + 13*h) + (v * h) + (s * h) ) / 2**30 :.0f}B'\'')'
Model size: 17B
+ srun --jobid 1809579 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.
*****************************************
using world size: 16, data-parallel-size: 1, tensor-model-parallel size: 4, pipeline-model-parallel size: 4
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 ................................. 24576
finetune ........................................ False
fp16 ............................................ True
fp16_lm_cross_entropy ........................... False
fp32_residual_connection ........................ False
global_batch_size ............................... 4
hidden_dropout .................................. 0.1
hidden_size ..................................... 6144
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 ..................................... 192
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 ...................................... 40
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 .................... 4
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 ...................................... 16
-------------------- 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 4
> 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.112 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(
>>> done with compiling and loading fused kernels. Compilation time: 7.691 seconds
time to initialize megatron (seconds): 0.398
[after megatron is initialized] datetime: 2021-05-23 08:41:04
building GPT model ...
> number of parameters on (tensor, pipeline) model parallel rank (0, 1): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (3, 2): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (1, 1): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (2, 2): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (0, 2): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (3, 1): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (2, 1): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (1, 2): 1132938240
> number of parameters on (tensor, pipeline) model parallel rank (3, 0): 1217086464
> number of parameters on (tensor, pipeline) model parallel rank (3, 3): 1210807296
> number of parameters on (tensor, pipeline) model parallel rank (1, 0): 1217086464
> number of parameters on (tensor, pipeline) model parallel rank (1, 3): 1210807296
> number of parameters on (tensor, pipeline) model parallel rank (0, 3): 1210807296
> number of parameters on (tensor, pipeline) model parallel rank (0, 0): 1217086464
> number of parameters on (tensor, pipeline) model parallel rank (2, 0): 1217086464
> number of parameters on (tensor, pipeline) model parallel rank (2, 3): 1210807296
> 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.35
[after model, optimizer, and learning rate scheduler are built] datetime: 2021-05-23 08:41:04
> 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.001570 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:41:05
done with setup ...
time (ms) | model-and-optimizer-setup: 313.66 | train/valid/test-data-iterators-setup: 461.61
training ...
[before the start of training step] datetime: 2021-05-23 08:41:05
iteration 10/ 1000 | consumed samples: 40 | elapsed time per iteration (ms): 2152.2 | 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: 306.62 | forward-recv: 527.58 | backward-compute: 575.17 | backward-send: 62.89 | backward-send-forward-recv: 150.69 | backward-params-all-reduce: 26.70 | backward-embedding-all-reduce: 406.63 | optimizer-copy-to-main-grad: 11.07 | optimizer-unscale-and-check-inf: 83.48 | optimizer: 94.69 | batch-generator: 2.97
iteration 20/ 1000 | consumed samples: 80 | elapsed time per iteration (ms): 1354.9 | learning rate: 3.750E-05 | global batch size: 4 | lm loss: 1.203115E+01 | loss scale: 32768.0 | number of skipped iterations: 8 | number of nan iterations: 0 |
[Rank 7] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24432.009765625 | reserved: 29316.0 | max reserved: 29316.0[Rank 6] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24432.009765625 | reserved: 29312.0 | max reserved: 29312.0
[Rank 3] (after 20 iterations) memory (MB) | allocated: 23215.0859375 | max allocated: 26204.5595703125 | reserved: 30724.0 | max reserved: 30724.0
[Rank 11] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24299.009765625 | reserved: 29112.0 | max reserved: 29112.0
[Rank 13] (after 20 iterations) memory (MB) | allocated: 23121.3212890625 | max allocated: 25791.77197265625 | reserved: 30722.0 | max reserved: 30722.0[Rank 12] (after 20 iterations) memory (MB) | allocated: 23121.3212890625 | max allocated: 25791.771484375 | reserved: 30542.0 | max reserved: 30542.0[Rank 14] (after 20 iterations) memory (MB) | allocated: 23121.3212890625 | max allocated: 25791.77197265625 | reserved: 30712.0 | max reserved: 30712.0
[Rank 5] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24432.009765625 | reserved: 29180.0 | max reserved: 29180.0[Rank 4] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24432.009765625 | reserved: 29232.0 | max reserved: 29232.0
[Rank 0] (after 20 iterations) memory (MB) | allocated: 23215.0859375 | max allocated: 26204.5595703125 | reserved: 30772.0 | max reserved: 30772.0
[Rank 2] (after 20 iterations) memory (MB) | allocated: 23215.0859375 | max allocated: 26204.5595703125 | reserved: 30722.0 | max reserved: 30722.0
[Rank 10] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24299.009765625 | reserved: 29140.0 | max reserved: 29140.0
[Rank 9] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24299.009765625 | reserved: 29056.0 | max reserved: 29056.0
[Rank 15] (after 20 iterations) memory (MB) | allocated: 23121.3212890625 | max allocated: 25791.77197265625 | reserved: 30806.0 | max reserved: 30806.0
[Rank 1] (after 20 iterations) memory (MB) | allocated: 23215.0859375 | max allocated: 26204.5595703125 | reserved: 30764.0 | max reserved: 30764.0
[Rank 8] (after 20 iterations) memory (MB) | allocated: 21633.0859375 | max allocated: 24299.009765625 | reserved: 29076.0 | max reserved: 29076.0
time (ms) | forward-compute: 176.39 | forward-recv: 127.53 | backward-compute: 514.82 | backward-send: 0.67 | backward-send-forward-recv: 4.76 | backward-params-all-reduce: 42.96 | backward-embedding-all-reduce: 415.87 | optimizer-copy-to-main-grad: 11.07 | optimizer-unscale-and-check-inf: 40.02 | optimizer-clip-main-grad: 3.91 | optimizer-copy-main-to-model-params: 2.27 | optimizer: 70.79 | batch-generator: 3.30
iteration 30/ 1000 | consumed samples: 120 | elapsed time per iteration (ms): 1376.1 | learning rate: 1.500E-04 | global batch size: 4 | lm loss: 2.247505E+01 | loss scale: 16384.0 | grad norm: 16.999 | number of skipped iterations: 1 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.79 | forward-recv: 126.09 | backward-compute: 515.15 | backward-send: 0.65 | backward-send-forward-recv: 4.75 | backward-params-all-reduce: 23.15 | backward-embedding-all-reduce: 420.78 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 26.78 | optimizer-clip-main-grad: 17.59 | optimizer-copy-main-to-model-params: 10.20 | optimizer: 108.58 | batch-generator: 2.55
iteration 40/ 1000 | consumed samples: 160 | elapsed time per iteration (ms): 1379.8 | learning rate: 1.499E-04 | global batch size: 4 | lm loss: 1.255556E+01 | loss scale: 16384.0 | grad norm: 51.641 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.59 | forward-recv: 126.20 | backward-compute: 514.12 | backward-send: 0.64 | backward-send-forward-recv: 4.80 | backward-params-all-reduce: 23.20 | backward-embedding-all-reduce: 420.71 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 23.84 | optimizer-clip-main-grad: 19.53 | optimizer-copy-main-to-model-params: 11.33 | optimizer: 113.44 | batch-generator: 2.55
iteration 50/ 1000 | consumed samples: 200 | elapsed time per iteration (ms): 1377.4 | learning rate: 1.497E-04 | global batch size: 4 | lm loss: 9.718885E+00 | loss scale: 16384.0 | grad norm: 14.286 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.62 | forward-recv: 126.30 | backward-compute: 513.68 | backward-send: 0.65 | backward-send-forward-recv: 4.76 | backward-params-all-reduce: 23.24 | backward-embedding-all-reduce: 418.95 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 23.58 | optimizer-clip-main-grad: 19.53 | optimizer-copy-main-to-model-params: 11.33 | optimizer: 113.17 | batch-generator: 2.57
iteration 60/ 1000 | consumed samples: 240 | elapsed time per iteration (ms): 1378.0 | learning rate: 1.494E-04 | global batch size: 4 | lm loss: 8.394111E+00 | loss scale: 16384.0 | grad norm: 5.275 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.85 | forward-recv: 126.51 | backward-compute: 513.93 | backward-send: 0.64 | backward-send-forward-recv: 4.73 | backward-params-all-reduce: 23.20 | backward-embedding-all-reduce: 418.85 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 23.56 | optimizer-clip-main-grad: 19.52 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 113.15 | batch-generator: 2.56
iteration 70/ 1000 | consumed samples: 280 | elapsed time per iteration (ms): 1380.0 | learning rate: 1.490E-04 | global batch size: 4 | lm loss: 8.152012E+00 | loss scale: 16384.0 | grad norm: 4.277 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.66 | forward-recv: 126.60 | backward-compute: 513.55 | backward-send: 0.65 | backward-send-forward-recv: 4.81 | backward-params-all-reduce: 23.17 | backward-embedding-all-reduce: 418.20 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 26.72 | optimizer-clip-main-grad: 19.52 | optimizer-copy-main-to-model-params: 11.33 | optimizer: 116.30 | batch-generator: 2.55
iteration 80/ 1000 | consumed samples: 320 | elapsed time per iteration (ms): 1380.6 | learning rate: 1.485E-04 | global batch size: 4 | lm loss: 8.156206E+00 | loss scale: 16384.0 | grad norm: 4.134 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.96 | forward-recv: 126.40 | backward-compute: 514.02 | backward-send: 0.65 | backward-send-forward-recv: 4.71 | backward-params-all-reduce: 23.15 | backward-embedding-all-reduce: 417.99 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 27.03 | optimizer-clip-main-grad: 19.55 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 116.66 | batch-generator: 2.56
iteration 90/ 1000 | consumed samples: 360 | elapsed time per iteration (ms): 1378.9 | learning rate: 1.478E-04 | global batch size: 4 | lm loss: 8.025711E+00 | loss scale: 16384.0 | grad norm: 3.351 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.72 | forward-recv: 126.31 | backward-compute: 513.69 | backward-send: 0.64 | backward-send-forward-recv: 4.78 | backward-params-all-reduce: 23.22 | backward-embedding-all-reduce: 418.60 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 25.25 | optimizer-clip-main-grad: 19.53 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 114.86 | batch-generator: 2.54
iteration 100/ 1000 | consumed samples: 400 | elapsed time per iteration (ms): 1379.8 | learning rate: 1.471E-04 | global batch size: 4 | lm loss: 7.974370E+00 | loss scale: 16384.0 | grad norm: 3.312 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.92 | forward-recv: 126.22 | backward-compute: 513.99 | backward-send: 0.64 | backward-send-forward-recv: 4.74 | backward-params-all-reduce: 23.19 | backward-embedding-all-reduce: 418.05 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 26.39 | optimizer-clip-main-grad: 19.51 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 115.99 | batch-generator: 2.56
-----------------------------------------------------------------------------------------------
validation loss at iteration 100 | lm loss value: 8.017406E+00 | lm loss PPL: 3.033300E+03 |
-----------------------------------------------------------------------------------------------
iteration 110/ 1000 | consumed samples: 440 | elapsed time per iteration (ms): 1564.1 | learning rate: 1.462E-04 | global batch size: 4 | lm loss: 7.902896E+00 | loss scale: 16384.0 | grad norm: 3.186 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 352.52 | forward-recv: 130.61 | backward-compute: 516.10 | backward-send: 0.64 | backward-send-forward-recv: 4.78 | backward-params-all-reduce: 23.20 | backward-embedding-all-reduce: 419.90 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 25.19 | optimizer-clip-main-grad: 19.52 | optimizer-copy-main-to-model-params: 11.32 | optimizer: 114.76 | batch-generator: 4.69
iteration 120/ 1000 | consumed samples: 480 | elapsed time per iteration (ms): 1380.4 | learning rate: 1.453E-04 | global batch size: 4 | lm loss: 7.811095E+00 | loss scale: 16384.0 | grad norm: 3.400 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 176.12 | forward-recv: 126.43 | backward-compute: 514.85 | backward-send: 0.65 | backward-send-forward-recv: 4.77 | backward-params-all-reduce: 23.20 | backward-embedding-all-reduce: 418.10 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 25.66 | optimizer-clip-main-grad: 19.50 | optimizer-copy-main-to-model-params: 11.32 | optimizer: 115.20 | batch-generator: 2.55
iteration 130/ 1000 | consumed samples: 520 | elapsed time per iteration (ms): 1380.6 | learning rate: 1.442E-04 | global batch size: 4 | lm loss: 7.782287E+00 | loss scale: 16384.0 | grad norm: 2.457 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 176.03 | forward-recv: 126.38 | backward-compute: 514.86 | backward-send: 0.65 | backward-send-forward-recv: 4.81 | backward-params-all-reduce: 23.17 | backward-embedding-all-reduce: 418.58 | optimizer-copy-to-main-grad: 11.09 | optimizer-unscale-and-check-inf: 25.39 | optimizer-clip-main-grad: 19.52 | optimizer-copy-main-to-model-params: 11.33 | optimizer: 114.98 | batch-generator: 2.54
iteration 140/ 1000 | consumed samples: 560 | elapsed time per iteration (ms): 1380.9 | learning rate: 1.431E-04 | global batch size: 4 | lm loss: 7.954872E+00 | loss scale: 16384.0 | grad norm: 6.660 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 176.13 | forward-recv: 126.41 | backward-compute: 514.91 | backward-send: 0.64 | backward-send-forward-recv: 4.76 | backward-params-all-reduce: 23.24 | backward-embedding-all-reduce: 418.46 | optimizer-copy-to-main-grad: 11.09 | optimizer-unscale-and-check-inf: 25.64 | optimizer-clip-main-grad: 19.51 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 115.23 | batch-generator: 2.54
iteration 150/ 1000 | consumed samples: 600 | elapsed time per iteration (ms): 1382.0 | learning rate: 1.418E-04 | global batch size: 4 | lm loss: 7.675903E+00 | loss scale: 16384.0 | grad norm: 4.777 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 176.02 | forward-recv: 126.48 | backward-compute: 515.43 | backward-send: 0.64 | backward-send-forward-recv: 4.73 | backward-params-all-reduce: 23.24 | backward-embedding-all-reduce: 419.38 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 25.43 | optimizer-clip-main-grad: 19.52 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 115.01 | batch-generator: 2.53
iteration 160/ 1000 | consumed samples: 640 | elapsed time per iteration (ms): 1383.3 | learning rate: 1.405E-04 | global batch size: 4 | lm loss: 7.538081E+00 | loss scale: 16384.0 | grad norm: 2.797 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 176.42 | forward-recv: 126.43 | backward-compute: 516.69 | backward-send: 0.65 | backward-send-forward-recv: 4.76 | backward-params-all-reduce: 23.21 | backward-embedding-all-reduce: 418.93 | optimizer-copy-to-main-grad: 11.09 | optimizer-unscale-and-check-inf: 25.52 | optimizer-clip-main-grad: 19.52 | optimizer-copy-main-to-model-params: 11.33 | optimizer: 115.11 | batch-generator: 2.55
iteration 170/ 1000 | consumed samples: 680 | elapsed time per iteration (ms): 1381.9 | learning rate: 1.390E-04 | global batch size: 4 | lm loss: 7.512811E+00 | loss scale: 16384.0 | grad norm: 3.182 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 176.10 | forward-recv: 126.48 | backward-compute: 515.84 | backward-send: 0.65 | backward-send-forward-recv: 4.68 | backward-params-all-reduce: 23.19 | backward-embedding-all-reduce: 418.58 | optimizer-copy-to-main-grad: 11.09 | optimizer-unscale-and-check-inf: 25.69 | optimizer-clip-main-grad: 19.50 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 115.26 | batch-generator: 2.56
iteration 180/ 1000 | consumed samples: 720 | elapsed time per iteration (ms): 1382.1 | learning rate: 1.375E-04 | global batch size: 4 | lm loss: 7.649580E+00 | loss scale: 16384.0 | grad norm: 3.637 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 176.08 | forward-recv: 126.41 | backward-compute: 515.74 | backward-send: 0.65 | backward-send-forward-recv: 4.71 | backward-params-all-reduce: 23.18 | backward-embedding-all-reduce: 418.55 | optimizer-copy-to-main-grad: 11.09 | optimizer-unscale-and-check-inf: 26.04 | optimizer-clip-main-grad: 19.52 | optimizer-copy-main-to-model-params: 11.33 | optimizer: 115.64 | batch-generator: 2.54
iteration 190/ 1000 | consumed samples: 760 | elapsed time per iteration (ms): 1381.7 | learning rate: 1.359E-04 | global batch size: 4 | lm loss: 7.416655E+00 | loss scale: 16384.0 | grad norm: 2.521 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.98 | forward-recv: 126.42 | backward-compute: 515.29 | backward-send: 0.67 | backward-send-forward-recv: 4.75 | backward-params-all-reduce: 23.18 | backward-embedding-all-reduce: 419.14 | optimizer-copy-to-main-grad: 11.09 | optimizer-unscale-and-check-inf: 25.63 | optimizer-clip-main-grad: 19.49 | optimizer-copy-main-to-model-params: 11.34 | optimizer: 115.19 | batch-generator: 2.54
iteration 200/ 1000 | consumed samples: 800 | elapsed time per iteration (ms): 1382.2 | learning rate: 1.342E-04 | global batch size: 4 | lm loss: 7.365868E+00 | loss scale: 16384.0 | grad norm: 3.952 | number of skipped iterations: 0 | number of nan iterations: 0 |
time (ms) | forward-compute: 175.99 | forward-recv: 126.34 | backward-compute: 515.47 | backward-send: 0.65 | backward-send-forward-recv: 4.71 | backward-params-all-reduce: 23.24 | backward-embedding-all-reduce: 419.47 | optimizer-copy-to-main-grad: 11.08 | optimizer-unscale-and-check-inf: 25.63 | optimizer-clip-main-grad: 19.53 | optimizer-copy-main-to-model-params: 11.33 | optimizer: 115.22 | batch-generator: 2.55
-----------------------------------------------------------------------------------------------
validation loss at iteration 200 | lm loss value: 7.487306E+00 | lm loss PPL: 1.785236E+03 |
-----------------------------------------------------------------------------------------------
srun: Job step aborted: Waiting up to 62 seconds for job step to finish.
Killing subprocess 7949
Killing subprocess 7950
Killing subprocess 45560
Killing subprocess 45561
Killing subprocess 64202
slurmstepd: error: *** STEP 1809579.0 ON r8i3n1 CANCELLED AT 2021-05-23T08:45:57 ***
Killing subprocess 7951
Killing subprocess 7952
Killing subprocess 45562
Killing subprocess 64203
Killing subprocess 45563
Killing subprocess 64204
Main process received SIGTERM, exiting
Killing subprocess 64205
Killing subprocess 16341
Main process received SIGTERM, exiting
Main process received SIGTERM, exiting
Killing subprocess 16342
Killing subprocess 16343
slurmstepd: error: *** JOB 1809579 ON r8i3n1 CANCELLED AT 2021-05-23T08:45:57 ***
Killing subprocess 16344
Main process received SIGTERM, exiting
|