1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
|
/*
BLIS
An object-based framework for developing high-performance BLAS-like
libraries.
Copyright (C) 2014, The University of Texas at Austin
Copyright (C) 2016, Hewlett Packard Enterprise Development LP
Copyright (C) 2019, Advanced Micro Devices, Inc.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
- Neither the name(s) of the copyright holder(s) nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef BLIS_OBJ_MACRO_DEFS_H
#define BLIS_OBJ_MACRO_DEFS_H
// -- Object query/modification macros --
// Info query
BLIS_INLINE num_t bli_obj_dt( obj_t* obj )
{
return ( num_t )
( obj->info & BLIS_DATATYPE_BITS );
}
BLIS_INLINE bool bli_obj_is_float( obj_t* obj )
{
return ( bool )
( bli_obj_dt( obj ) == BLIS_BITVAL_FLOAT_TYPE );
}
BLIS_INLINE bool bli_obj_is_double( obj_t* obj )
{
return ( bool )
( bli_obj_dt( obj ) == BLIS_BITVAL_DOUBLE_TYPE );
}
BLIS_INLINE bool bli_obj_is_scomplex( obj_t* obj )
{
return ( bool )
( bli_obj_dt( obj ) == BLIS_BITVAL_SCOMPLEX_TYPE );
}
BLIS_INLINE bool bli_obj_is_dcomplex( obj_t* obj )
{
return ( bool )
( bli_obj_dt( obj ) == BLIS_BITVAL_DCOMPLEX_TYPE );
}
BLIS_INLINE bool bli_obj_is_int( obj_t* obj )
{
return ( bool )
( bli_obj_dt( obj ) == BLIS_BITVAL_INT_TYPE );
}
BLIS_INLINE bool bli_obj_is_const( obj_t* obj )
{
return ( bool )
( bli_obj_dt( obj ) == BLIS_BITVAL_CONST_TYPE );
}
BLIS_INLINE dom_t bli_obj_domain( obj_t* obj )
{
return ( dom_t )
( obj->info & BLIS_DOMAIN_BIT );
}
BLIS_INLINE prec_t bli_obj_prec( obj_t* obj )
{
return ( prec_t )
( obj->info & BLIS_PRECISION_BIT );
}
BLIS_INLINE bool bli_obj_is_single_prec( obj_t* obj )
{
return ( bool )
( bli_obj_prec( obj ) == BLIS_BITVAL_SINGLE_PREC );
}
BLIS_INLINE bool bli_obj_is_double_prec( obj_t* obj )
{
return ( bool )
( bli_obj_prec( obj ) == BLIS_BITVAL_DOUBLE_PREC );
}
BLIS_INLINE num_t bli_obj_dt_proj_to_single_prec( obj_t* obj )
{
return ( num_t )
( bli_obj_dt( obj ) & ~BLIS_BITVAL_SINGLE_PREC );
}
BLIS_INLINE num_t bli_obj_dt_proj_to_double_prec( obj_t* obj )
{
return ( num_t )
( bli_obj_dt( obj ) | BLIS_BITVAL_DOUBLE_PREC );
}
BLIS_INLINE bool bli_obj_is_real( obj_t* obj )
{
return ( bool )
( bli_obj_domain( obj ) == BLIS_BITVAL_REAL &&
!bli_obj_is_const( obj ) );
}
BLIS_INLINE bool bli_obj_is_complex( obj_t* obj )
{
return ( bool )
( bli_obj_domain( obj ) == BLIS_BITVAL_COMPLEX &&
!bli_obj_is_const( obj ) );
}
BLIS_INLINE num_t bli_obj_dt_proj_to_real( obj_t* obj )
{
return ( num_t )
( bli_obj_dt( obj ) & ~BLIS_BITVAL_COMPLEX );
}
BLIS_INLINE num_t bli_obj_dt_proj_to_complex( obj_t* obj )
{
return ( num_t )
( bli_obj_dt( obj ) | BLIS_BITVAL_COMPLEX );
}
BLIS_INLINE num_t bli_obj_target_dt( obj_t* obj )
{
return ( num_t )
( ( obj->info & BLIS_TARGET_DT_BITS ) >> BLIS_TARGET_DT_SHIFT );
}
BLIS_INLINE dom_t bli_obj_target_domain( obj_t* obj )
{
return ( dom_t )
( ( obj->info & BLIS_TARGET_DOMAIN_BIT ) >> BLIS_TARGET_DT_SHIFT );
}
BLIS_INLINE prec_t bli_obj_target_prec( obj_t* obj )
{
return ( prec_t )
( ( obj->info & BLIS_TARGET_PREC_BIT ) >> BLIS_TARGET_DT_SHIFT );
}
BLIS_INLINE num_t bli_obj_exec_dt( obj_t* obj )
{
return ( num_t )
( ( obj->info & BLIS_EXEC_DT_BITS ) >> BLIS_EXEC_DT_SHIFT );
}
BLIS_INLINE dom_t bli_obj_exec_domain( obj_t* obj )
{
return ( dom_t )
( ( obj->info & BLIS_EXEC_DOMAIN_BIT ) >> BLIS_EXEC_DT_SHIFT );
}
BLIS_INLINE prec_t bli_obj_exec_prec( obj_t* obj )
{
return ( prec_t )
( ( obj->info & BLIS_EXEC_PREC_BIT ) >> BLIS_EXEC_DT_SHIFT );
}
BLIS_INLINE num_t bli_obj_comp_dt( obj_t* obj )
{
return ( num_t )
( ( obj->info & BLIS_COMP_DT_BITS ) >> BLIS_COMP_DT_SHIFT );
}
BLIS_INLINE dom_t bli_obj_comp_domain( obj_t* obj )
{
return ( dom_t )
( ( obj->info & BLIS_COMP_DOMAIN_BIT ) >> BLIS_COMP_DT_SHIFT );
}
BLIS_INLINE prec_t bli_obj_comp_prec( obj_t* obj )
{
return ( prec_t )
( ( obj->info & BLIS_COMP_PREC_BIT ) >> BLIS_COMP_DT_SHIFT );
}
// NOTE: This function queries info2.
BLIS_INLINE num_t bli_obj_scalar_dt( obj_t* obj )
{
return ( num_t )
( ( obj->info2 & BLIS_SCALAR_DT_BITS ) >> BLIS_SCALAR_DT_SHIFT );
}
// NOTE: This function queries info2.
BLIS_INLINE dom_t bli_obj_scalar_domain( obj_t* obj )
{
return ( dom_t )
( ( obj->info2 & BLIS_SCALAR_DOMAIN_BIT ) >> BLIS_SCALAR_DT_SHIFT );
}
// NOTE: This function queries info2.
BLIS_INLINE prec_t bli_obj_scalar_prec( obj_t* obj )
{
return ( prec_t )
( ( obj->info2 & BLIS_SCALAR_PREC_BIT ) >> BLIS_SCALAR_DT_SHIFT );
}
BLIS_INLINE trans_t bli_obj_conjtrans_status( obj_t* obj )
{
return ( trans_t )
( obj->info & BLIS_CONJTRANS_BITS );
}
BLIS_INLINE trans_t bli_obj_onlytrans_status( obj_t* obj )
{
return ( trans_t )
( obj->info & BLIS_TRANS_BIT );
}
BLIS_INLINE bool bli_obj_has_trans( obj_t* obj )
{
return ( bool )
( bli_obj_onlytrans_status( obj ) == BLIS_BITVAL_TRANS );
}
BLIS_INLINE bool bli_obj_has_notrans( obj_t* obj )
{
return ( bool )
( bli_obj_onlytrans_status( obj ) == BLIS_BITVAL_NO_TRANS );
}
BLIS_INLINE conj_t bli_obj_conj_status( obj_t* obj )
{
return ( conj_t )
( obj->info & BLIS_CONJ_BIT );
}
BLIS_INLINE bool bli_obj_has_conj( obj_t* obj )
{
return ( bool )
( bli_obj_conj_status( obj ) == BLIS_BITVAL_CONJ );
}
BLIS_INLINE bool bli_obj_has_noconj( obj_t* obj )
{
return ( bool )
( bli_obj_conj_status( obj ) == BLIS_BITVAL_NO_CONJ );
}
BLIS_INLINE uplo_t bli_obj_uplo( obj_t* obj )
{
return ( uplo_t )
( obj->info & BLIS_UPLO_BITS );
}
BLIS_INLINE bool bli_obj_is_upper( obj_t* obj )
{
return ( bool )
( bli_obj_uplo( obj ) == BLIS_BITVAL_UPPER );
}
BLIS_INLINE bool bli_obj_is_lower( obj_t* obj )
{
return ( bool )
( bli_obj_uplo( obj ) == BLIS_BITVAL_LOWER );
}
BLIS_INLINE bool bli_obj_is_upper_or_lower( obj_t* obj )
{
return ( bool )
( bli_obj_is_upper( obj ) ||
bli_obj_is_lower( obj ) );
}
BLIS_INLINE bool bli_obj_is_dense( obj_t* obj )
{
return ( bool )
( bli_obj_uplo( obj ) == BLIS_BITVAL_DENSE );
}
BLIS_INLINE bool bli_obj_is_zeros( obj_t* obj )
{
return ( bool )
( bli_obj_uplo( obj ) == BLIS_BITVAL_ZEROS );
}
BLIS_INLINE diag_t bli_obj_diag( obj_t* obj )
{
return ( diag_t )
( obj->info & BLIS_UNIT_DIAG_BIT );
}
BLIS_INLINE bool bli_obj_has_nonunit_diag( obj_t* obj )
{
return ( bool )
( bli_obj_diag( obj ) == BLIS_BITVAL_NONUNIT_DIAG );
}
BLIS_INLINE bool bli_obj_has_unit_diag( obj_t* obj )
{
return ( bool )
( bli_obj_diag( obj ) == BLIS_BITVAL_UNIT_DIAG );
}
BLIS_INLINE bool bli_obj_has_inverted_diag( obj_t* obj )
{
return ( bool )
( ( obj->info & BLIS_INVERT_DIAG_BIT ) == BLIS_BITVAL_INVERT_DIAG );
}
BLIS_INLINE bool bli_obj_is_pack_rev_if_upper( obj_t* obj )
{
return ( bool )
( ( obj->info & BLIS_PACK_REV_IF_UPPER_BIT ) == BLIS_BITVAL_PACK_REV_IF_UPPER );
}
BLIS_INLINE bool bli_obj_is_pack_rev_if_lower( obj_t* obj )
{
return ( bool )
( ( obj->info & BLIS_PACK_REV_IF_LOWER_BIT ) == BLIS_BITVAL_PACK_REV_IF_LOWER );
}
BLIS_INLINE pack_t bli_obj_pack_schema( obj_t* obj )
{
return ( pack_t )
( obj->info & BLIS_PACK_SCHEMA_BITS );
}
BLIS_INLINE bool bli_obj_is_packed( obj_t* obj )
{
return ( bool )
( obj->info & BLIS_PACK_BIT );
}
BLIS_INLINE bool bli_obj_is_row_packed( obj_t* obj )
{
return ( bool )
( ( obj->info & BLIS_PACK_RC_BIT ) == ( BLIS_BITVAL_PACKED_UNSPEC ^
BLIS_BITVAL_PACKED_ROWS ) );
}
BLIS_INLINE bool bli_obj_is_col_packed( obj_t* obj )
{
return ( bool )
( ( obj->info & BLIS_PACK_RC_BIT ) == ( BLIS_BITVAL_PACKED_UNSPEC ^
BLIS_BITVAL_PACKED_COLUMNS ) );
}
BLIS_INLINE bool bli_obj_is_panel_packed( obj_t* obj )
{
return ( bool )
( obj->info & BLIS_PACK_PANEL_BIT );
}
BLIS_INLINE packbuf_t bli_obj_pack_buffer_type( obj_t* obj )
{
return ( packbuf_t )
( obj->info & BLIS_PACK_BUFFER_BITS );
}
BLIS_INLINE struc_t bli_obj_struc( obj_t* obj )
{
return ( struc_t )
( obj->info & BLIS_STRUC_BITS );
}
BLIS_INLINE bool bli_obj_is_general( obj_t* obj )
{
return ( bool )
( bli_obj_struc( obj ) == BLIS_BITVAL_GENERAL );
}
BLIS_INLINE bool bli_obj_is_hermitian( obj_t* obj )
{
return ( bool )
( bli_obj_struc( obj ) == BLIS_BITVAL_HERMITIAN );
}
BLIS_INLINE bool bli_obj_is_symmetric( obj_t* obj )
{
return ( bool )
( bli_obj_struc( obj ) == BLIS_BITVAL_SYMMETRIC );
}
BLIS_INLINE bool bli_obj_is_triangular( obj_t* obj )
{
return ( bool )
( bli_obj_struc( obj ) == BLIS_BITVAL_TRIANGULAR );
}
// Info modification
BLIS_INLINE void bli_obj_apply_trans( trans_t trans, obj_t* obj )
{
obj->info = ( objbits_t )
( obj->info ^ trans );
}
BLIS_INLINE void bli_obj_apply_conj( conj_t conj, obj_t* obj )
{
obj->info = ( objbits_t )
( obj->info ^ conj );
}
BLIS_INLINE void bli_obj_set_conjtrans( trans_t trans, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_CONJTRANS_BITS ) | trans );
}
BLIS_INLINE void bli_obj_set_onlytrans( trans_t trans, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_TRANS_BIT ) | trans );
}
BLIS_INLINE void bli_obj_set_conj( conj_t conj, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_CONJ_BIT ) | conj );
}
BLIS_INLINE void bli_obj_set_uplo( uplo_t uplo, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_UPLO_BITS ) | uplo );
}
BLIS_INLINE void bli_obj_set_diag( diag_t diag, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_UNIT_DIAG_BIT ) | diag );
}
BLIS_INLINE void bli_obj_set_invert_diag( invdiag_t invdiag, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_INVERT_DIAG_BIT ) | invdiag );
}
BLIS_INLINE void bli_obj_set_dt( num_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_DATATYPE_BITS ) | dt );
}
BLIS_INLINE void bli_obj_set_target_dt( num_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_TARGET_DT_BITS ) |
( dt << BLIS_TARGET_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_target_domain( dom_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_TARGET_DOMAIN_BIT ) |
( dt << BLIS_TARGET_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_target_prec( prec_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_TARGET_PREC_BIT ) |
( dt << BLIS_TARGET_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_exec_dt( num_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_EXEC_DT_BITS ) |
( dt << BLIS_EXEC_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_exec_domain( dom_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_EXEC_DOMAIN_BIT ) |
( dt << BLIS_EXEC_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_exec_prec( prec_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_EXEC_PREC_BIT ) |
( dt << BLIS_EXEC_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_comp_dt( num_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_COMP_DT_BITS ) |
( dt << BLIS_COMP_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_comp_domain( dom_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_COMP_DOMAIN_BIT ) |
( dt << BLIS_COMP_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_comp_prec( prec_t dt, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_COMP_PREC_BIT ) |
( dt << BLIS_COMP_DT_SHIFT ) );
}
// NOTE: This function queries and modifies info2.
BLIS_INLINE void bli_obj_set_scalar_dt( num_t dt, obj_t* obj )
{
obj->info2 = ( objbits_t )
( ( obj->info2 & ~BLIS_SCALAR_DT_BITS ) |
( dt << BLIS_SCALAR_DT_SHIFT ) );
}
// NOTE: This function queries and modifies info2.
BLIS_INLINE void bli_obj_set_scalar_domain( dom_t dt, obj_t* obj )
{
obj->info2 = ( objbits_t )
( ( obj->info2 & ~BLIS_SCALAR_DOMAIN_BIT ) |
( dt << BLIS_SCALAR_DT_SHIFT ) );
}
// NOTE: This function queries and modifies info2.
BLIS_INLINE void bli_obj_set_scalar_prec( prec_t dt, obj_t* obj )
{
obj->info2 = ( objbits_t )
( ( obj->info2 & ~BLIS_SCALAR_PREC_BIT ) |
( dt << BLIS_SCALAR_DT_SHIFT ) );
}
BLIS_INLINE void bli_obj_set_pack_schema( pack_t schema, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_PACK_SCHEMA_BITS ) | schema );
}
BLIS_INLINE void bli_obj_set_pack_order_if_upper( packord_t ordif, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_PACK_REV_IF_UPPER_BIT ) | ordif );
}
BLIS_INLINE void bli_obj_set_pack_order_if_lower( packord_t ordif, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_PACK_REV_IF_LOWER_BIT ) | ordif );
}
// NOTE: The packbuf_t bitfield in the obj_t is currently unused. Instead,
// packbuf_t is stored/used from the context in order to support various
// induced methods. (Though ideally the packbuf_t field would only be
// present in the control tree).
BLIS_INLINE void bli_obj_set_pack_buffer_type( packbuf_t buf_type, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_PACK_BUFFER_BITS ) | buf_type );
}
BLIS_INLINE void bli_obj_set_struc( struc_t struc, obj_t* obj )
{
obj->info = ( objbits_t )
( ( obj->info & ~BLIS_STRUC_BITS ) | struc );
}
BLIS_INLINE void bli_obj_toggle_trans( obj_t* obj )
{
bli_obj_apply_trans( BLIS_TRANSPOSE, obj );
}
BLIS_INLINE void bli_obj_toggle_conj( obj_t* obj )
{
bli_obj_apply_conj( BLIS_CONJUGATE, obj );
}
BLIS_INLINE void bli_obj_toggle_uplo( obj_t* obj )
{
obj->info = ( objbits_t )
( obj->info ^ BLIS_LOWER_BIT ) ^ BLIS_UPPER_BIT;
}
// Root matrix query
BLIS_INLINE obj_t* bli_obj_root( obj_t* obj )
{
return ( obj_t* )( obj->root );
}
BLIS_INLINE bool bli_obj_root_is_general( obj_t* obj )
{
return ( bool )
( bli_obj_is_general( bli_obj_root( obj ) ) );
}
BLIS_INLINE bool bli_obj_root_is_hermitian( obj_t* obj )
{
return ( bool )
( bli_obj_is_hermitian( bli_obj_root( obj ) ) );
}
BLIS_INLINE bool bli_obj_root_is_symmetric( obj_t* obj )
{
return ( bool )
( bli_obj_is_symmetric( bli_obj_root( obj ) ) );
}
BLIS_INLINE bool bli_obj_root_is_triangular( obj_t* obj )
{
return ( bool )
( bli_obj_is_triangular( bli_obj_root( obj ) ) );
}
BLIS_INLINE bool bli_obj_root_is_herm_or_symm( obj_t* obj )
{
return ( bool )
( bli_obj_is_hermitian( bli_obj_root( obj ) ) ||
bli_obj_is_symmetric( bli_obj_root( obj ) ) );
}
BLIS_INLINE bool bli_obj_root_is_upper( obj_t* obj )
{
return ( bool )
( bli_obj_is_upper( bli_obj_root( obj ) ) );
}
BLIS_INLINE bool bli_obj_root_is_lower( obj_t* obj )
{
return ( bool )
( bli_obj_is_lower( bli_obj_root( obj ) ) );
}
// Root matrix modification
BLIS_INLINE void bli_obj_set_as_root( obj_t* obj )
{
obj->root = obj;
}
// Diagonal offset query
BLIS_INLINE doff_t bli_obj_diag_offset( obj_t* obj )
{
return ( doff_t )
( obj->diag_off );
}
BLIS_INLINE doff_t bli_obj_diag_offset_after_trans( obj_t* obj )
{
return ( doff_t )
( bli_obj_has_trans( obj ) ? -bli_obj_diag_offset( obj )
: bli_obj_diag_offset( obj ) );
}
// Diagonal offset modification
BLIS_INLINE void bli_obj_set_diag_offset( doff_t offset, obj_t* obj )
{
obj->diag_off = ( doff_t )offset;
}
BLIS_INLINE void bli_obj_negate_diag_offset( obj_t* obj )
{
obj->diag_off = -(obj->diag_off);
}
BLIS_INLINE void bli_obj_inc_diag_offset( doff_t offset, obj_t* obj )
{
obj->diag_off += ( doff_t )offset;
}
// Dimension query
BLIS_INLINE dim_t bli_obj_length( obj_t* obj )
{
return ( obj->dim[ BLIS_M ] );
}
BLIS_INLINE dim_t bli_obj_width( obj_t* obj )
{
return ( obj->dim[ BLIS_N ] );
}
BLIS_INLINE dim_t bli_obj_dim( mdim_t mdim, obj_t* obj )
{
return ( obj->dim[ mdim ] );
}
BLIS_INLINE dim_t bli_obj_min_dim( obj_t* obj )
{
return bli_min( bli_obj_length( obj ),
bli_obj_width( obj ) );
}
BLIS_INLINE dim_t bli_obj_max_dim( obj_t* obj )
{
return bli_max( bli_obj_length( obj ),
bli_obj_width( obj ) );
}
BLIS_INLINE dim_t bli_obj_length_after_trans( obj_t* obj )
{
return ( bli_obj_has_trans( obj ) ? bli_obj_width( obj )
: bli_obj_length( obj ) );
}
BLIS_INLINE dim_t bli_obj_width_after_trans( obj_t* obj )
{
return ( bli_obj_has_trans( obj ) ? bli_obj_length( obj )
: bli_obj_width( obj ) );
}
BLIS_INLINE bool bli_obj_is_1x1( obj_t* x )
{
return ( bool )
( bli_obj_length( x ) == 1 &&
bli_obj_width( x ) == 1 );
}
// Stride/increment query
BLIS_INLINE inc_t bli_obj_row_stride( obj_t* obj )
{
return ( obj->rs );
}
BLIS_INLINE inc_t bli_obj_col_stride( obj_t* obj )
{
return ( obj->cs );
}
BLIS_INLINE inc_t bli_obj_imag_stride( obj_t* obj )
{
return ( obj->is );
}
BLIS_INLINE inc_t bli_obj_row_stride_mag( obj_t* obj )
{
return ( inc_t )
( bli_abs( obj->rs ) );
}
BLIS_INLINE inc_t bli_obj_col_stride_mag( obj_t* obj )
{
return ( inc_t )
( bli_abs( obj->cs ) );
}
BLIS_INLINE inc_t bli_obj_imag_stride_mag( obj_t* obj )
{
return ( inc_t )
( bli_abs( obj->is ) );
}
// Note: The purpose of these functions is to obtain the length and width
// of the smallest submatrices of an object that could still encompass
// the stored data above (if obj is upper) or below (if obj is lower)
// the diagonal.
BLIS_INLINE dim_t bli_obj_length_stored( obj_t* obj )
{
return ( dim_t )
( bli_obj_is_upper( obj )
? bli_min( bli_obj_length( obj ),
bli_obj_width( obj ) - bli_obj_diag_offset( obj ) )
: bli_min( bli_obj_length( obj ),
bli_obj_length( obj ) + bli_obj_diag_offset( obj ) )
);
}
BLIS_INLINE dim_t bli_obj_width_stored( obj_t* obj )
{
return ( dim_t )
( bli_obj_is_lower( obj )
? bli_min( bli_obj_width( obj ),
bli_obj_length( obj ) + bli_obj_diag_offset( obj ) )
: bli_min( bli_obj_width( obj ),
bli_obj_width( obj ) - bli_obj_diag_offset( obj ) )
);
}
BLIS_INLINE dim_t bli_obj_length_stored_after_trans( obj_t* obj )
{
return ( bli_obj_has_trans( obj ) ? bli_obj_width_stored( obj )
: bli_obj_length_stored( obj ) );
}
BLIS_INLINE dim_t bli_obj_width_stored_after_trans( obj_t* obj )
{
return ( bli_obj_has_trans( obj ) ? bli_obj_length_stored( obj )
: bli_obj_width_stored( obj ) );
}
BLIS_INLINE dim_t bli_obj_vector_dim( obj_t* x )
{
return ( bli_obj_length( x ) == 1 ? bli_obj_width( x )
: bli_obj_length( x ) );
}
BLIS_INLINE inc_t bli_obj_vector_inc( obj_t* x )
{
return ( bli_obj_is_1x1( x ) ? 1 :
( bli_obj_length( x ) == 1 ? bli_obj_col_stride( x )
: bli_obj_row_stride( x ) )
);
}
BLIS_INLINE bool bli_obj_is_vector( obj_t* x )
{
return ( bool )
( bli_obj_length( x ) == 1 ||
bli_obj_width( x ) == 1 );
}
BLIS_INLINE bool bli_obj_is_row_vector( obj_t* x )
{
return ( bool )
( bli_obj_length( x ) == 1 );
}
BLIS_INLINE bool bli_obj_is_col_vector( obj_t* x )
{
return ( bool )
( bli_obj_width( x ) == 1 );
}
BLIS_INLINE bool bli_obj_has_zero_dim( obj_t* x )
{
return ( bool )
( bli_obj_length( x ) == 0 ||
bli_obj_width( x ) == 0 );
}
// Dimension modification
BLIS_INLINE void bli_obj_set_length( dim_t m, obj_t* obj )
{
obj->dim[ BLIS_M ] = m;
}
BLIS_INLINE void bli_obj_set_width( dim_t n, obj_t* obj )
{
obj->dim[ BLIS_N ] = n;
}
BLIS_INLINE void bli_obj_set_dim( mdim_t mdim, dim_t dim_val, obj_t* obj )
{
obj->dim[ mdim ] = dim_val;
}
BLIS_INLINE void bli_obj_set_dims( dim_t m, dim_t n, obj_t* obj )
{
bli_obj_set_length( m, obj );
bli_obj_set_width( n, obj );
}
BLIS_INLINE void bli_obj_set_dims_with_trans( trans_t trans, dim_t m, dim_t n, obj_t* obj )
{
if ( bli_does_notrans( trans ) )
{
bli_obj_set_length( m, obj );
bli_obj_set_width( n, obj );
}
else // if ( bli_does_trans( trans ) )
{
bli_obj_set_length( n, obj );
bli_obj_set_width( m, obj );
}
}
// Stride/increment predicates
//
// NOTE: The following two macros differ from their non-obj counterparts
// in that they do not identify m x 1 and 1 x n objects as row-stored and
// column-stored, respectively, which is needed when considering packed
// objects. But this is okay, since none of the invocations of these
// "obj" macros are used on packed matrices.
//
BLIS_INLINE bool bli_obj_is_row_stored( obj_t* obj )
{
return ( bool )
( bli_obj_col_stride_mag( obj ) == 1 );
}
BLIS_INLINE bool bli_obj_is_col_stored( obj_t* obj )
{
return ( bool )
( bli_obj_row_stride_mag( obj ) == 1 );
}
BLIS_INLINE bool bli_obj_is_gen_stored( obj_t* obj )
{
return ( bool )
( bli_obj_row_stride_mag( obj ) != 1 &&
bli_obj_col_stride_mag( obj ) != 1 );
}
BLIS_INLINE bool bli_obj_is_row_tilted( obj_t* obj )
{
return ( bool )
( bli_obj_col_stride_mag( obj ) < bli_obj_row_stride_mag( obj ) );
}
BLIS_INLINE bool bli_obj_is_col_tilted( obj_t* obj )
{
return ( bool )
( bli_obj_row_stride_mag( obj ) < bli_obj_col_stride_mag( obj ) );
}
// Stride/increment modification
BLIS_INLINE void bli_obj_set_row_stride( inc_t rs, obj_t* obj )
{
obj->rs = rs;
}
BLIS_INLINE void bli_obj_set_col_stride( inc_t cs, obj_t* obj )
{
obj->cs = cs;
}
BLIS_INLINE void bli_obj_set_strides( inc_t rs, inc_t cs, obj_t* obj )
{
bli_obj_set_row_stride( rs, obj );
bli_obj_set_col_stride( cs, obj );
}
BLIS_INLINE void bli_obj_set_imag_stride( inc_t is, obj_t* obj )
{
obj->is = is;
}
// Offset query
BLIS_INLINE dim_t bli_obj_row_off( obj_t* obj )
{
return ( obj->off[ BLIS_M ] );
}
BLIS_INLINE dim_t bli_obj_col_off( obj_t* obj )
{
return ( obj->off[ BLIS_N ] );
}
BLIS_INLINE dim_t bli_obj_off( mdim_t mdim, obj_t* obj )
{
return ( obj->off[ mdim ] );
}
// Offset modification
BLIS_INLINE void bli_obj_set_off( mdim_t mdim, dim_t offset, obj_t* obj )
{
obj->off[ mdim ] = offset;
}
BLIS_INLINE void bli_obj_set_offs( dim_t offm, dim_t offn, obj_t* obj )
{
bli_obj_set_off( BLIS_M, offm, obj );
bli_obj_set_off( BLIS_N, offn, obj );
}
BLIS_INLINE void bli_obj_inc_off( mdim_t mdim, dim_t offset, obj_t* obj )
{
obj->off[ mdim ] += offset;
}
BLIS_INLINE void bli_obj_inc_offs( dim_t offm, dim_t offn, obj_t* obj )
{
bli_obj_inc_off( BLIS_M, offm, obj );
bli_obj_inc_off( BLIS_N, offn, obj );
}
// Diagonal offset predicates
BLIS_INLINE bool bli_obj_is_strictly_above_diag( obj_t* obj )
{
return ( bool )
( ( doff_t )bli_obj_length( obj ) <= -bli_obj_diag_offset( obj ) );
}
BLIS_INLINE bool bli_obj_is_strictly_below_diag( obj_t* obj )
{
return ( bool )
( ( doff_t )bli_obj_width( obj ) <= bli_obj_diag_offset( obj ) );
}
BLIS_INLINE bool bli_obj_is_outside_diag( obj_t* obj )
{
return ( bool )
( bli_obj_is_strictly_above_diag( obj ) ||
bli_obj_is_strictly_below_diag( obj ) );
}
BLIS_INLINE bool bli_obj_intersects_diag( obj_t* obj )
{
return ( bool )
( !bli_obj_is_strictly_above_diag( obj ) &&
!bli_obj_is_strictly_below_diag( obj ) );
}
BLIS_INLINE bool bli_obj_is_unstored_subpart( obj_t* obj )
{
return ( bool )
( ( bli_obj_root_is_lower( obj ) && bli_obj_is_strictly_above_diag( obj ) ) ||
( bli_obj_root_is_upper( obj ) && bli_obj_is_strictly_below_diag( obj ) ) );
}
// Buffer address query
BLIS_INLINE void* bli_obj_buffer( obj_t* obj )
{
return ( void* )
( obj->buffer );
}
// Buffer address modification
BLIS_INLINE void bli_obj_set_buffer( void* p, obj_t* obj )
{
obj->buffer = p;
}
// Bufferless scalar field query
BLIS_INLINE void* bli_obj_internal_scalar_buffer( obj_t* obj )
{
return ( void* )
( &( obj->scalar ) );
}
// Bufferless scalar field modification
BLIS_INLINE void bli_obj_copy_internal_scalar( obj_t* a, obj_t* b )
{
b->scalar = a->scalar;
}
// Element size query
BLIS_INLINE siz_t bli_obj_elem_size( obj_t* obj )
{
return ( siz_t )
( obj->elem_size );
}
// Element size modification
BLIS_INLINE void bli_obj_set_elem_size( siz_t size, obj_t* obj )
{
obj->elem_size = size;
}
// Packed matrix info query
BLIS_INLINE dim_t bli_obj_padded_length( obj_t* obj )
{
return ( obj->m_padded );
}
BLIS_INLINE dim_t bli_obj_padded_width( obj_t* obj )
{
return ( obj->n_padded );
}
// Packed matrix info modification
BLIS_INLINE void bli_obj_set_padded_length( dim_t m, obj_t* obj )
{
obj->m_padded = m;
}
BLIS_INLINE void bli_obj_set_padded_width( dim_t n, obj_t* obj )
{
obj->n_padded = n;
}
BLIS_INLINE void bli_obj_set_padded_dims( dim_t m, dim_t n, obj_t* obj )
{
bli_obj_set_padded_length( m, obj );
bli_obj_set_padded_width( n, obj );
}
// Packed panel info query
BLIS_INLINE dim_t bli_obj_panel_length( obj_t* obj )
{
return ( obj->m_panel );
}
BLIS_INLINE dim_t bli_obj_panel_width( obj_t* obj )
{
return ( obj->n_panel );
}
BLIS_INLINE inc_t bli_obj_panel_dim( obj_t* obj )
{
return ( obj->pd );
}
BLIS_INLINE inc_t bli_obj_panel_stride( obj_t* obj )
{
return ( obj->ps );
}
// Packed panel info modification
BLIS_INLINE void bli_obj_set_panel_length( dim_t m, obj_t* obj )
{
obj->m_panel = m;
}
BLIS_INLINE void bli_obj_set_panel_width( dim_t n, obj_t* obj )
{
obj->n_panel = n;
}
BLIS_INLINE void bli_obj_set_panel_dims( dim_t m, dim_t n, obj_t* obj )
{
bli_obj_set_panel_length( m, obj );
bli_obj_set_panel_width( n, obj );
}
BLIS_INLINE void bli_obj_set_panel_dim( inc_t pd, obj_t* obj )
{
obj->pd = pd;
}
BLIS_INLINE void bli_obj_set_panel_stride( inc_t ps, obj_t* obj )
{
obj->ps = ps;
}
// stor3_t-related
BLIS_INLINE stor3_t bli_obj_stor3_from_strides( obj_t* c, obj_t* a, obj_t* b )
{
const inc_t rs_c = bli_obj_row_stride( c );
const inc_t cs_c = bli_obj_col_stride( c );
inc_t rs_a, cs_a;
inc_t rs_b, cs_b;
if ( bli_obj_has_notrans( a ) )
{
rs_a = bli_obj_row_stride( a );
cs_a = bli_obj_col_stride( a );
}
else
{
rs_a = bli_obj_col_stride( a );
cs_a = bli_obj_row_stride( a );
}
if ( bli_obj_has_notrans( b ) )
{
rs_b = bli_obj_row_stride( b );
cs_b = bli_obj_col_stride( b );
}
else
{
rs_b = bli_obj_col_stride( b );
cs_b = bli_obj_row_stride( b );
}
return bli_stor3_from_strides( rs_c, cs_c,
rs_a, cs_a,
rs_b, cs_b );
}
// -- User-provided information macros --
// Function pointer query
BLIS_INLINE obj_pack_fn_t bli_obj_pack_fn( obj_t* obj )
{
return obj->pack_fn;
}
BLIS_INLINE void* bli_obj_pack_params( obj_t* obj )
{
return obj->pack_params;
}
BLIS_INLINE obj_ker_fn_t bli_obj_ker_fn( obj_t* obj )
{
return obj->ker_fn;
}
BLIS_INLINE void* bli_obj_ker_params( obj_t* obj )
{
return obj->ker_params;
}
// Function pointer modification
BLIS_INLINE void bli_obj_set_pack_fn( obj_pack_fn_t pack_fn, obj_t* obj )
{
obj->pack_fn = pack_fn;
}
BLIS_INLINE void bli_obj_set_pack_params( void* params, obj_t* obj )
{
obj->pack_params = params;
}
BLIS_INLINE void bli_obj_set_ker_fn( obj_ker_fn_t ker_fn, obj_t* obj )
{
obj->ker_fn = ker_fn;
}
BLIS_INLINE void bli_obj_set_ker_params( void* params, obj_t* obj )
{
obj->ker_params = params;
}
// -- Initialization-related macros --
// Finish the initialization started by the matrix-specific static initializer
// (e.g. BLIS_OBJECT_INITIALIZER)
// NOTE: This is intended only for use in the BLAS compatibility API and typed
// BLIS API.
BLIS_INLINE void bli_obj_init_finish( num_t dt, dim_t m, dim_t n, void* p, inc_t rs, inc_t cs, obj_t* obj )
{
bli_obj_set_as_root( obj );
bli_obj_set_dt( dt, obj );
bli_obj_set_target_dt( dt, obj );
bli_obj_set_exec_dt( dt, obj );
bli_obj_set_comp_dt( dt, obj );
bli_obj_set_dims( m, n, obj );
bli_obj_set_strides( rs, cs, obj );
siz_t elem_size = sizeof( float );
if ( bli_dt_prec_is_double( dt ) ) elem_size *= 2;
if ( bli_dt_dom_is_complex( dt ) ) elem_size *= 2;
bli_obj_set_elem_size( elem_size, obj );
bli_obj_set_buffer( p, obj );
bli_obj_set_scalar_dt( dt, obj );
void* restrict s = bli_obj_internal_scalar_buffer( obj );
if ( bli_dt_prec_is_single( dt ) ) { (( scomplex* )s)->real = 1.0F;
(( scomplex* )s)->imag = 0.0F; }
else if ( bli_dt_prec_is_double( dt ) ) { (( dcomplex* )s)->real = 1.0;
(( dcomplex* )s)->imag = 0.0; }
}
// Finish the initialization started by the 1x1-specific static initializer
// (e.g. BLIS_OBJECT_INITIALIZER_1X1)
// NOTE: This is intended only for use in the BLAS compatibility API and typed
// BLIS API.
BLIS_INLINE void bli_obj_init_finish_1x1( num_t dt, void* p, obj_t* obj )
{
bli_obj_set_as_root( obj );
bli_obj_set_dt( dt, obj );
bli_obj_set_buffer( p, obj );
}
// -- Miscellaneous object macros --
// Toggle the region referenced (or "stored").
BLIS_INLINE void bli_obj_toggle_region_ref( obj_t* obj )
{
if ( bli_obj_is_upper( obj ) ) bli_obj_inc_diag_offset( -1, obj );
else if ( bli_obj_is_lower( obj ) ) bli_obj_inc_diag_offset( 1, obj );
bli_obj_toggle_uplo( obj );
}
BLIS_INLINE void bli_obj_toggle_uplo_if_trans( trans_t trans, obj_t* obj )
{
if ( bli_does_trans( trans ) &&
bli_obj_is_upper_or_lower( obj ) )
{
bli_obj_toggle_uplo( obj );
bli_obj_negate_diag_offset( obj );
}
}
// Initialize object with default properties (info field).
BLIS_INLINE void bli_obj_set_defaults( obj_t* obj )
{
obj->info = 0x0;
obj->info = obj->info | BLIS_BITVAL_DENSE | BLIS_BITVAL_GENERAL;
}
// Acquire buffer at object's submatrix offset (offset-aware buffer query).
BLIS_INLINE void* bli_obj_buffer_at_off( obj_t* obj )
{
return ( void* )
(
( ( char* )( bli_obj_buffer ( obj ) ) +
( dim_t )( bli_obj_elem_size( obj ) ) *
( bli_obj_col_off( obj ) * bli_obj_col_stride( obj ) +
bli_obj_row_off( obj ) * bli_obj_row_stride( obj )
)
)
);
}
// Acquire buffer from BLIS_CONSTANT object.
BLIS_INLINE void* bli_obj_buffer_for_const( num_t dt, obj_t* obj )
{
void* p;
if ( dt == BLIS_FLOAT ) p = &((( constdata_t* )bli_obj_buffer( obj ))->s);
else if ( dt == BLIS_DOUBLE ) p = &((( constdata_t* )bli_obj_buffer( obj ))->d);
else if ( dt == BLIS_SCOMPLEX ) p = &((( constdata_t* )bli_obj_buffer( obj ))->c);
else if ( dt == BLIS_DCOMPLEX ) p = &((( constdata_t* )bli_obj_buffer( obj ))->z);
else p = &((( constdata_t* )bli_obj_buffer( obj ))->i);
return p;
}
// Acquire buffer from scalar (1x1) object, including BLIS_CONSTANT objects.
BLIS_INLINE void* bli_obj_buffer_for_1x1( num_t dt, obj_t* obj )
{
return ( void* )
( bli_obj_is_const( obj ) ? bli_obj_buffer_for_const( dt, obj )
: bli_obj_buffer_at_off( obj )
);
}
// Adjust the pointer based on current offsets, zero the offsets, and then
// set the current object as the root. For obj_t's with at least one non-zero
// offset, this effectively makes the obj_t "forget" that it was ever a view
// into a larger matrix.
BLIS_INLINE void bli_obj_reset_origin( obj_t* obj )
{
bli_obj_set_buffer( bli_obj_buffer_at_off( obj ), obj );
bli_obj_set_offs( 0, 0, obj );
bli_obj_set_as_root( obj );
}
// Make a full alias (shallow copy).
BLIS_INLINE void bli_obj_alias_to( obj_t* a, obj_t* b )
{
bli_obj_init_full_shallow_copy_of( a, b );
}
// Check if two objects are aliases of one another.
BLIS_INLINE bool bli_obj_is_alias_of( obj_t* a, obj_t* b )
{
return ( bool )
( bli_obj_buffer( a ) == bli_obj_buffer( b ) );
}
// Create an alias with a trans value applied.
// (Note: trans may include a conj component.)
BLIS_INLINE void bli_obj_alias_with_trans( trans_t trans, obj_t* a, obj_t* b )
{
bli_obj_alias_to( a, b );
bli_obj_apply_trans( trans, b );
}
// Create an alias with a conj value applied.
BLIS_INLINE void bli_obj_alias_with_conj( conj_t conja, obj_t* a, obj_t* b )
{
bli_obj_alias_to( a, b );
bli_obj_apply_conj( conja, b );
}
// Alias only the real part.
BLIS_INLINE void bli_obj_real_part( obj_t* c, obj_t* r )
{
bli_obj_alias_to( c, r );
if ( bli_obj_is_complex( c ) )
{
// Change the datatypes.
const num_t dt_stor_r = bli_dt_proj_to_real( bli_obj_dt( c ) );
const num_t dt_targ_r = bli_dt_proj_to_real( bli_obj_target_dt( c ) );
const num_t dt_exec_r = bli_dt_proj_to_real( bli_obj_exec_dt( c ) );
const num_t dt_comp_r = bli_dt_proj_to_real( bli_obj_comp_dt( c ) );
bli_obj_set_dt( dt_stor_r, r );
bli_obj_set_target_dt( dt_targ_r, r );
bli_obj_set_exec_dt( dt_exec_r, r );
bli_obj_set_comp_dt( dt_comp_r, r );
// Don't touch the attached scalar datatype.
// Update the element size.
siz_t es_c = bli_obj_elem_size( c );
bli_obj_set_elem_size( es_c/2, r );
// Update the strides.
inc_t rs_c = bli_obj_row_stride( c );
inc_t cs_c = bli_obj_col_stride( c );
bli_obj_set_strides( 2*rs_c, 2*cs_c, r );
// Buffer is left unchanged.
}
}
// Alias only the imaginary part.
BLIS_INLINE void bli_obj_imag_part( obj_t* c, obj_t* i )
{
if ( bli_obj_is_complex( c ) )
{
bli_obj_alias_to( c, i );
// Change the datatype.
const num_t dt_stor_r = bli_dt_proj_to_real( bli_obj_dt( c ) );
const num_t dt_targ_r = bli_dt_proj_to_real( bli_obj_target_dt( c ) );
const num_t dt_exec_r = bli_dt_proj_to_real( bli_obj_exec_dt( c ) );
const num_t dt_comp_r = bli_dt_proj_to_real( bli_obj_comp_dt( c ) );
bli_obj_set_dt( dt_stor_r, i );
bli_obj_set_target_dt( dt_targ_r, i );
bli_obj_set_exec_dt( dt_exec_r, i );
bli_obj_set_comp_dt( dt_comp_r, i );
// Don't touch the attached scalar datatype.
// Update the element size.
siz_t es_c = bli_obj_elem_size( c );
bli_obj_set_elem_size( es_c/2, i );
// Update the strides.
inc_t rs_c = bli_obj_row_stride( c );
inc_t cs_c = bli_obj_col_stride( c );
bli_obj_set_strides( 2*rs_c, 2*cs_c, i );
// Update the buffer.
inc_t is_c = bli_obj_imag_stride( c );
char* p = ( char* )bli_obj_buffer_at_off( c );
bli_obj_set_buffer( p + is_c * es_c/2, i );
}
}
// Given a 1x1 object, acquire an address to the buffer depending on whether
// the object is a BLIS_CONSTANT, and also set a datatype associated with the
// chosen buffer (possibly using an auxiliary datatype if the object is
// BLIS_CONSTANT).
BLIS_INLINE void bli_obj_scalar_set_dt_buffer( obj_t* obj, num_t dt_aux, num_t* dt, void** buf )
{
if ( bli_obj_is_const( obj ) )
{
*dt = dt_aux;
*buf = bli_obj_buffer_for_1x1( dt_aux, obj );
}
else
{
*dt = bli_obj_dt( obj );
*buf = bli_obj_buffer_at_off( obj );
}
}
// Swap all object fields (metadata/properties).
BLIS_INLINE void bli_obj_swap( obj_t* a, obj_t* b )
{
bool a_root_is_self = ( bli_obj_root( a ) == a );
bool b_root_is_self = ( bli_obj_root( b ) == b );
obj_t t = *b; *b = *a; *a = t;
if ( a_root_is_self ) bli_obj_set_as_root( b );
if ( b_root_is_self ) bli_obj_set_as_root( a );
}
// Swap object pack schemas.
BLIS_INLINE void bli_obj_swap_pack_schemas( obj_t* a, obj_t* b )
{
const pack_t schema_a = bli_obj_pack_schema( a );
const pack_t schema_b = bli_obj_pack_schema( b );
bli_obj_set_pack_schema( schema_b, a );
bli_obj_set_pack_schema( schema_a, b );
}
// Induce a transposition on an object: swap dimensions, increments, and
// offsets, then clear the trans bit.
BLIS_INLINE void bli_obj_induce_trans( obj_t* obj )
{
// Induce transposition among basic fields.
dim_t m = bli_obj_length( obj );
dim_t n = bli_obj_width( obj );
inc_t rs = bli_obj_row_stride( obj );
inc_t cs = bli_obj_col_stride( obj );
dim_t offm = bli_obj_row_off( obj );
dim_t offn = bli_obj_col_off( obj );
doff_t diag_off = bli_obj_diag_offset( obj );
bli_obj_set_dims( n, m, obj );
bli_obj_set_strides( cs, rs, obj );
bli_obj_set_offs( offn, offm, obj );
bli_obj_set_diag_offset( -diag_off, obj );
if ( bli_obj_is_upper_or_lower( obj ) )
bli_obj_toggle_uplo( obj );
// Induce transposition among packed fields.
dim_t m_padded = bli_obj_padded_length( obj );
dim_t n_padded = bli_obj_padded_width( obj );
dim_t m_panel = bli_obj_panel_length( obj );
dim_t n_panel = bli_obj_panel_width( obj );
bli_obj_set_padded_dims( n_padded, m_padded, obj );
bli_obj_set_panel_dims( n_panel, m_panel, obj );
// Note that this macro DOES NOT touch the transposition bit! If
// the calling code is using this function to handle an object whose
// transposition bit is set prior to computation, that code needs
// to manually clear or toggle the bit, via
// bli_obj_set_onlytrans() or bli_obj_toggle_trans(),
// respectively.
}
BLIS_INLINE void bli_obj_induce_fast_trans( obj_t* obj )
{
// NOTE: This function is only used in situations where the matrices
// are guaranteed to not have structure or be packed.
// Induce transposition among basic fields.
dim_t m = bli_obj_length( obj );
dim_t n = bli_obj_width( obj );
inc_t rs = bli_obj_row_stride( obj );
inc_t cs = bli_obj_col_stride( obj );
dim_t offm = bli_obj_row_off( obj );
dim_t offn = bli_obj_col_off( obj );
bli_obj_set_dims( n, m, obj );
bli_obj_set_strides( cs, rs, obj );
bli_obj_set_offs( offn, offm, obj );
// Note that this macro DOES NOT touch the transposition bit! If
// the calling code is using this function to handle an object whose
// transposition bit is set prior to computation, that code needs
// to manually clear or toggle the bit, via
// bli_obj_set_onlytrans() or bli_obj_toggle_trans(),
// respectively.
}
// Sometimes we need to "reflect" a partition because the data we want is
// actually stored on the other side of the diagonal. The nuts and bolts of
// this macro look a lot like an induced transposition, except that the row
// and column strides are left unchanged (which, of course, drastically
// changes the effect of the macro).
BLIS_INLINE void bli_obj_reflect_about_diag( obj_t* obj )
{
dim_t m = bli_obj_length( obj );
dim_t n = bli_obj_width( obj );
dim_t offm = bli_obj_row_off( obj );
dim_t offn = bli_obj_col_off( obj );
doff_t diag_off = bli_obj_diag_offset( obj );
bli_obj_set_dims( n, m, obj );
bli_obj_set_offs( offn, offm, obj );
bli_obj_set_diag_offset( -diag_off, obj );
bli_obj_toggle_trans( obj );
}
#endif
|