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
|
/* ---------------------------------------------------------------------
*
* -- PBLAS routine (version 2.0) --
* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
* and University of California, Berkeley.
* April 1, 1998
*
* ---------------------------------------------------------------------
*/
/*
* This file includes PBLAS definitions. All PBLAS routines include this
* file.
*
* ---------------------------------------------------------------------
* #define macro constants
* ---------------------------------------------------------------------
*/
#if( _F2C_CALL_ == _F2C_ADD_ )
/*
* These defines set up the naming scheme required to have a FORTRAN
* routine call a C routine. No redefinition is necessary to have the
* following FORTRAN to C interface:
*
* FORTRAN CALL C DECLARATION
* CALL PDGEMM(...) void pdgemm_(...)
*
* This is the PBLAS default.
*/
#define PB_freebuf_ PB_freebuf_
#define PB_topget_ pb_topget_
#define PB_topset_ pb_topset_
#endif
#if( _F2C_CALL_ == _F2C_UPCASE )
/*
* These defines set up the naming scheme required to have a FORTRAN
* routine call a C routine. No redefinition is necessary to have the
* following FORTRAN to C interface:
*
* FORTRAN CALL C DECLARATION
* CALL PDGEMM(...) void PDGEMM(...)
*/
#define pilaenv_ PILAENV
#define PB_freebuf_ PB_FREEBUF
#define PB_topget_ PB_TOPGET
#define PB_topset_ PB_TOPSET
/* Level-1 PBLAS */
#define picopy_ PICOPY
#define pscopy_ PSCOPY
#define pdcopy_ PDCOPY
#define pccopy_ PCCOPY
#define pzcopy_ PZCOPY
#define psswap_ PSSWAP
#define pdswap_ PDSWAP
#define pcswap_ PCSWAP
#define pzswap_ PZSWAP
#define psaxpy_ PSAXPY
#define pdaxpy_ PDAXPY
#define pcaxpy_ PCAXPY
#define pzaxpy_ PZAXPY
#define psscal_ PSSCAL
#define pdscal_ PDSCAL
#define pcscal_ PCSCAL
#define pzscal_ PZSCAL
#define pcsscal_ PCSSCAL
#define pzdscal_ PZDSCAL
#define psasum_ PSASUM
#define pdasum_ PDASUM
#define pscasum_ PSCASUM
#define pdzasum_ PDZASUM
#define psnrm2_ PSNRM2
#define pdnrm2_ PDNRM2
#define pscnrm2_ PSCNRM2
#define pdznrm2_ PDZNRM2
#define psdot_ PSDOT
#define pddot_ PDDOT
#define pcdotu_ PCDOTU
#define pzdotu_ PZDOTU
#define pcdotc_ PCDOTC
#define pzdotc_ PZDOTC
#define psamax_ PSAMAX
#define pdamax_ PDAMAX
#define pcamax_ PCAMAX
#define pzamax_ PZAMAX
#define psgemv_ PSGEMV
#define pdgemv_ PDGEMV
#define pcgemv_ PCGEMV
#define pzgemv_ PZGEMV
#define psagemv_ PSAGEMV
#define pdagemv_ PDAGEMV
#define pcagemv_ PCAGEMV
#define pzagemv_ PZAGEMV
#define pssymv_ PSSYMV
#define pdsymv_ PDSYMV
#define pchemv_ PCHEMV
#define pzhemv_ PZHEMV
#define psasymv_ PSASYMV
#define pdasymv_ PDASYMV
#define pcahemv_ PCAHEMV
#define pzahemv_ PZAHEMV
#define pstrmv_ PSTRMV
#define pdtrmv_ PDTRMV
#define pctrmv_ PCTRMV
#define pztrmv_ PZTRMV
#define psatrmv_ PSATRMV
#define pdatrmv_ PDATRMV
#define pcatrmv_ PCATRMV
#define pzatrmv_ PZATRMV
#define pstrsv_ PSTRSV
#define pdtrsv_ PDTRSV
#define pctrsv_ PCTRSV
#define pztrsv_ PZTRSV
#define psger_ PSGER
#define pdger_ PDGER
#define pcgeru_ PCGERU
#define pzgeru_ PZGERU
#define pcgerc_ PCGERC
#define pzgerc_ PZGERC
#define pssyr_ PSSYR
#define pdsyr_ PDSYR
#define pcher_ PCHER
#define pzher_ PZHER
#define pssyr2_ PSSYR2
#define pdsyr2_ PDSYR2
#define pcher2_ PCHER2
#define pzher2_ PZHER2
#define psgemm_ PSGEMM
#define pdgemm_ PDGEMM
#define pcgemm_ PCGEMM
#define pzgemm_ PZGEMM
#define psgeadd_ PSGEADD
#define pdgeadd_ PDGEADD
#define pcgeadd_ PCGEADD
#define pzgeadd_ PZGEADD
#define pssymm_ PSSYMM
#define pdsymm_ PDSYMM
#define pcsymm_ PCSYMM
#define pchemm_ PCHEMM
#define pzsymm_ PZSYMM
#define pzhemm_ PZHEMM
#define pstrmm_ PSTRMM
#define pdtrmm_ PDTRMM
#define pctrmm_ PCTRMM
#define pztrmm_ PZTRMM
#define pstrsm_ PSTRSM
#define pdtrsm_ PDTRSM
#define pctrsm_ PCTRSM
#define pztrsm_ PZTRSM
#define pssyrk_ PSSYRK
#define pdsyrk_ PDSYRK
#define pcsyrk_ PCSYRK
#define pcherk_ PCHERK
#define pzsyrk_ PZSYRK
#define pzherk_ PZHERK
#define pssyr2k_ PSSYR2K
#define pdsyr2k_ PDSYR2K
#define pcsyr2k_ PCSYR2K
#define pcher2k_ PCHER2K
#define pzsyr2k_ PZSYR2K
#define pzher2k_ PZHER2K
#define pstradd_ PSTRADD
#define pdtradd_ PDTRADD
#define pctradd_ PCTRADD
#define pztradd_ PZTRADD
#define pstran_ PSTRAN
#define pdtran_ PDTRAN
#define pctranu_ PCTRANU
#define pztranu_ PZTRANU
#define pctranc_ PCTRANC
#define pztranc_ PZTRANC
#endif
#if( _F2C_CALL_ == _F2C_NOCHANGE )
/*
* These defines set up the naming scheme required to have a FORTRAN
* routine call a C routine with the following FORTRAN to C interface:
*
* FORTRAN CALL C DECLARATION
* CALLL PDGEMM(...) void pdgemm(...)
*/
#define pilaenv_ pilaenv
#define PB_freebuf_ PB_freebuf
#define PB_topget_ pb_topget
#define PB_topset_ pb_topset
#define picopy_ picopy
#define pscopy_ pscopy
#define pdcopy_ pdcopy
#define pccopy_ pccopy
#define pzcopy_ pzcopy
#define psswap_ psswap
#define pdswap_ pdswap
#define pcswap_ pcswap
#define pzswap_ pzswap
#define psaxpy_ psaxpy
#define pdaxpy_ pdaxpy
#define pcaxpy_ pcaxpy
#define pzaxpy_ pzaxpy
#define psscal_ psscal
#define pdscal_ pdscal
#define pcscal_ pcscal
#define pzscal_ pzscal
#define pcsscal_ pcsscal
#define pzdscal_ pzdscal
#define psasum_ psasum
#define pdasum_ pdasum
#define pscasum_ pscasum
#define pdzasum_ pdzasum
#define psnrm2_ psnrm2
#define pdnrm2_ pdnrm2
#define pscnrm2_ pscnrm2
#define pdznrm2_ pdznrm2
#define psdot_ psdot
#define pddot_ pddot
#define pcdotu_ pcdotu
#define pzdotu_ pzdotu
#define pcdotc_ pcdotc
#define pzdotc_ pzdotc
#define psamax_ psamax
#define pdamax_ pdamax
#define pcamax_ pcamax
#define pzamax_ pzamax
#define psgemv_ psgemv
#define pdgemv_ pdgemv
#define pcgemv_ pcgemv
#define pzgemv_ pzgemv
#define psagemv_ psagemv
#define pdagemv_ pdagemv
#define pcagemv_ pcagemv
#define pzagemv_ pzagemv
#define pssymv_ pssymv
#define pdsymv_ pdsymv
#define pchemv_ pchemv
#define pzhemv_ pzhemv
#define psasymv_ psasymv
#define pdasymv_ pdasymv
#define pcahemv_ pcahemv
#define pzahemv_ pzahemv
#define pstrmv_ pstrmv
#define pdtrmv_ pdtrmv
#define pctrmv_ pctrmv
#define pztrmv_ pztrmv
#define psatrmv_ psatrmv
#define pdatrmv_ pdatrmv
#define pcatrmv_ pcatrmv
#define pzatrmv_ pzatrmv
#define pstrsv_ pstrsv
#define pdtrsv_ pdtrsv
#define pctrsv_ pctrsv
#define pztrsv_ pztrsv
#define psger_ psger
#define pdger_ pdger
#define pcgeru_ pcgeru
#define pzgeru_ pzgeru
#define pcgerc_ pcgerc
#define pzgerc_ pzgerc
#define pssyr_ pssyr
#define pdsyr_ pdsyr
#define pcher_ pcher
#define pzher_ pzher
#define pssyr2_ pssyr2
#define pdsyr2_ pdsyr2
#define pcher2_ pcher2
#define pzher2_ pzher2
#define psgeadd_ psgeadd
#define pdgeadd_ pdgeadd
#define pcgeadd_ pcgeadd
#define pzgeadd_ pzgeadd
#define psgemm_ psgemm
#define pdgemm_ pdgemm
#define pcgemm_ pcgemm
#define pzgemm_ pzgemm
#define pssymm_ pssymm
#define pdsymm_ pdsymm
#define pcsymm_ pcsymm
#define pchemm_ pchemm
#define pzsymm_ pzsymm
#define pzhemm_ pzhemm
#define pstrmm_ pstrmm
#define pdtrmm_ pdtrmm
#define pctrmm_ pctrmm
#define pztrmm_ pztrmm
#define pstrsm_ pstrsm
#define pdtrsm_ pdtrsm
#define pctrsm_ pctrsm
#define pztrsm_ pztrsm
#define pssyrk_ pssyrk
#define pdsyrk_ pdsyrk
#define pcsyrk_ pcsyrk
#define pcherk_ pcherk
#define pzsyrk_ pzsyrk
#define pzherk_ pzherk
#define pssyr2k_ pssyr2k
#define pdsyr2k_ pdsyr2k
#define pcsyr2k_ pcsyr2k
#define pcher2k_ pcher2k
#define pzsyr2k_ pzsyr2k
#define pzher2k_ pzher2k
#define pstradd_ pstradd
#define pdtradd_ pdtradd
#define pctradd_ pctradd
#define pztradd_ pztradd
#define pstran_ pstran
#define pdtran_ pdtran
#define pctranu_ pctranu
#define pztranu_ pztranu
#define pctranc_ pctranc
#define pztranc_ pztranc
#endif
#if( _F2C_CALL_ == _F2C_F77ISF2C )
#define PB_freebuf_ PB_freebuf__
#define PB_topget_ pb_topget__
#define PB_topset_ pb_topset__
#endif
/*
* ---------------------------------------------------------------------
* Function prototypes
* ---------------------------------------------------------------------
*/
#ifdef __STDC__
void PB_freebuf_ ( void );
void PB_topget_ ( Int *, F_CHAR_T, F_CHAR_T,
F_CHAR_T );
void PB_topset_ ( Int *, F_CHAR_T, F_CHAR_T,
F_CHAR_T );
void picopy_ ( Int *, Int *, Int *,
Int *, Int *, Int *,
Int *, Int *, Int *,
Int *, Int * );
void pscopy_ ( Int *, float *, Int *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, Int * );
void pdcopy_ ( Int *, double *, Int *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, Int * );
void pccopy_ ( Int *, float *, Int *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, Int * );
void pzcopy_ ( Int *, double *, Int *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, Int * );
void psswap_ ( Int *, float *, Int *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, Int * );
void pdswap_ ( Int *, double *, Int *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, Int * );
void pcswap_ ( Int *, float *, Int *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, Int * );
void pzswap_ ( Int *, double *, Int *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, Int * );
void psaxpy_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int * );
void pdaxpy_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int * );
void pcaxpy_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int * );
void pzaxpy_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int * );
void psscal_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pdscal_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void pcscal_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pcsscal_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pzscal_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void pzdscal_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void psasum_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pdasum_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void pscasum_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pdzasum_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void psnrm2_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pdnrm2_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void pscnrm2_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pdznrm2_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void psdot_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int * );
void pddot_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int * );
void pcdotc_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int * );
void pcdotu_ ( Int *, float *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int * );
void pzdotc_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int * );
void pzdotu_ ( Int *, double *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int * );
void psamax_ ( Int *, float *, Int *,
float *, Int *, Int *,
Int *, Int * );
void pdamax_ ( Int *, double *, Int *,
double *, Int *, Int *,
Int *, Int * );
void pcamax_ ( Int *, float *, Int *,
float *, Int *, Int *,
Int *, Int * );
void pzamax_ ( Int *, double *, Int *,
double *, Int *, Int *,
Int *, Int * );
void psgemv_ ( F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pdgemv_ ( F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void pcgemv_ ( F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pzgemv_ ( F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void psagemv_ ( F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pdagemv_ ( F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void pcagemv_ ( F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
Int * );
void pzagemv_ ( F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
Int * );
void psger_ ( Int *, Int *, float *,
float *, Int *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int * );
void pdger_ ( Int *, Int *, double *,
double *, Int *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int * );
void pcgerc_ ( Int *, Int *, float *,
float *, Int *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int * );
void pcgeru_ ( Int *, Int *, float *,
float *, Int *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int * );
void pzgerc_ ( Int *, Int *, double *,
double *, Int *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int * );
void pzgeru_ ( Int *, Int *, double *,
double *, Int *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int * );
void pssymv_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int *, Int * );
void pdsymv_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int *, Int * );
void pchemv_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int *, Int * );
void pzhemv_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int *, Int * );
void psasymv_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int *, Int * );
void pdasymv_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int *, Int * );
void pcahemv_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int *, Int * );
void pzahemv_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int *, Int * );
void pssyr_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, Int *, float *,
Int *, Int *, Int * );
void pdsyr_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, Int *, double *,
Int *, Int *, Int * );
void pcher_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, Int *, float *,
Int *, Int *, Int * );
void pzher_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, Int *, double *,
Int *, Int *, Int * );
void pssyr2_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int * );
void pdsyr2_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int * );
void pcher2_ ( F_CHAR_T, Int *, float *,
float *, Int *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int *, float *, Int *,
Int *, Int * );
void pzher2_ ( F_CHAR_T, Int *, double *,
double *, Int *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int *, double *, Int *,
Int *, Int * );
void pstrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int * );
void pdtrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int * );
void pctrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int * );
void pztrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int * );
void psatrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int *, Int * );
void pdatrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int *, Int * );
void pcatrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int *, Int * );
void pzatrmv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int *, Int * );
void pstrsv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int * );
void pdtrsv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int * );
void pctrsv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int *,
Int * );
void pztrsv_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
Int *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int *,
Int * );
void psgeadd_ ( F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int * );
void pdgeadd_ ( F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int * );
void pcgeadd_ ( F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int * );
void pzgeadd_ ( F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int * );
void psgemm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int * );
void pdgemm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int * );
void pcgemm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int *, float *, Int *,
Int *, Int *, float *,
float *, Int *, Int *,
Int * );
void pzgemm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int *, double *, Int *,
Int *, Int *, double *,
double *, Int *, Int *,
Int * );
void pssymm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pdsymm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pcsymm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pzsymm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pchemm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pzhemm_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pssyr2k_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pdsyr2k_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pcsyr2k_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pzsyr2k_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pcher2k_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pzher2k_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pssyrk_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int * );
void pdsyrk_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int * );
void pcsyrk_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int * );
void pzsyrk_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int * );
void pcherk_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int * );
void pzherk_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int * );
void pstradd_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int * );
void pdtradd_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int * );
void pctradd_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, float *, float *,
Int *, Int *, Int *,
float *, float *, Int *,
Int *, Int * );
void pztradd_ ( F_CHAR_T, F_CHAR_T, Int *,
Int *, double *, double *,
Int *, Int *, Int *,
double *, double *, Int *,
Int *, Int * );
void pstran_ ( Int *, Int *, float *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pdtran_ ( Int *, Int *, double *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pctranc_ ( Int *, Int *, float *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pztranc_ ( Int *, Int *, double *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pctranu_ ( Int *, Int *, float *,
float *, Int *, Int *,
Int *, float *, float *,
Int *, Int *, Int * );
void pztranu_ ( Int *, Int *, double *,
double *, Int *, Int *,
Int *, double *, double *,
Int *, Int *, Int * );
void pstrmm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int * );
void pdtrmm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int * );
void pctrmm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int * );
void pztrmm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int * );
void pstrsm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int * );
void pdtrsm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int * );
void pctrsm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
float *, float *, Int *,
Int *, Int *, float *,
Int *, Int *, Int * );
void pztrsm_ ( F_CHAR_T, F_CHAR_T, F_CHAR_T,
F_CHAR_T, Int *, Int *,
double *, double *, Int *,
Int *, Int *, double *,
Int *, Int *, Int * );
#else
void PB_freebuf_ ();
void PB_topget_ ();
void PB_topset_ ();
void picopy_ ();
void pscopy_ ();
void pdcopy_ ();
void pccopy_ ();
void pzcopy_ ();
void psswap_ ();
void pdswap_ ();
void pcswap_ ();
void pzswap_ ();
void psaxpy_ ();
void pdaxpy_ ();
void pcaxpy_ ();
void pzaxpy_ ();
void psscal_ ();
void pdscal_ ();
void pcscal_ ();
void pcsscal_ ();
void pzscal_ ();
void pzdscal_ ();
void psasum_ ();
void pdasum_ ();
void pscasum_ ();
void pdzasum_ ();
void psnrm2_ ();
void pdnrm2_ ();
void pscnrm2_ ();
void pdznrm2_ ();
void psdot_ ();
void pddot_ ();
void pcdotc_ ();
void pcdotu_ ();
void pzdotc_ ();
void pzdotu_ ();
void psamax_ ();
void pdamax_ ();
void pcamax_ ();
void pzamax_ ();
void psgemv_ ();
void pdgemv_ ();
void pcgemv_ ();
void pzgemv_ ();
void psagemv_ ();
void pdagemv_ ();
void pcagemv_ ();
void pzagemv_ ();
void psger_ ();
void pdger_ ();
void pcgerc_ ();
void pcgeru_ ();
void pzgerc_ ();
void pzgeru_ ();
void pssymv_ ();
void pdsymv_ ();
void pchemv_ ();
void pzhemv_ ();
void psasymv_ ();
void pdasymv_ ();
void pcahemv_ ();
void pzahemv_ ();
void pssyr_ ();
void pdsyr_ ();
void pcher_ ();
void pzher_ ();
void pssyr2_ ();
void pdsyr2_ ();
void pcher2_ ();
void pzher2_ ();
void pstrmv_ ();
void pdtrmv_ ();
void pctrmv_ ();
void pztrmv_ ();
void psatrmv_ ();
void pdatrmv_ ();
void pcatrmv_ ();
void pzatrmv_ ();
void pstrsv_ ();
void pdtrsv_ ();
void pctrsv_ ();
void pztrsv_ ();
void psgeadd_ ();
void pdgeadd_ ();
void pcgeadd_ ();
void pzgeadd_ ();
void psgemm_ ();
void pdgemm_ ();
void pcgemm_ ();
void pzgemm_ ();
void pssymm_ ();
void pdsymm_ ();
void pcsymm_ ();
void pchemm_ ();
void pzsymm_ ();
void pzhemm_ ();
void pssyr2k_ ();
void pdsyr2k_ ();
void pcsyr2k_ ();
void pcher2k_ ();
void pzsyr2k_ ();
void pzher2k_ ();
void pssyrk_ ();
void pdsyrk_ ();
void pcsyrk_ ();
void pcherk_ ();
void pzsyrk_ ();
void pzherk_ ();
void pstradd_ ();
void pdtradd_ ();
void pctradd_ ();
void pztradd_ ();
void pstran_ ();
void pdtran_ ();
void pctranc_ ();
void pctranu_ ();
void pztranc_ ();
void pztranu_ ();
void pstrmm_ ();
void pdtrmm_ ();
void pctrmm_ ();
void pztrmm_ ();
void pstrsm_ ();
void pdtrsm_ ();
void pctrsm_ ();
void pztrsm_ ();
#endif
|