File size: 44,003 Bytes
838f737 | 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 | /*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
/**
* Top level include file for FBGEMM.
*/
#include <cassert>
#include <memory>
#include "./ConvUtils.h" // @manual
#include "./FbgemmBuild.h" // @manual
#include "./FbgemmEmbedding.h" // @manual
#include "./FbgemmI8DepthwiseAvx2.h" // @manual
#include "./FbgemmI8DirectconvAvx2.h" // @manual
#include "./FbgemmI8Spmdm.h" // @manual
#include "./FloatConversion.h" // @manual
#include "./QuantUtilsAvx2.h" // @manual
#include "./Types.h" // @manual
#include "./Utils.h" // @manual
// Turning on this option will print out time breakdown of each stage (e.g.,
// input packing, the main GEMM kernel, each output processing pipeline).
// Please note that currently this option won't report accurate timing if
// multiple threads are used.
// #define FBGEMM_MEASURE_TIME_BREAKDOWN
#ifdef FBGEMM_MEASURE_TIME_BREAKDOWN
#include <chrono>
#include <iostream>
extern double packing_time;
extern double computing_time;
extern double kernel_time;
extern double postprocessing_time;
extern double run_time;
#endif
namespace fbgemm {
/**
* @brief Templatized struct for packing parameters for A and B matrices.
*
* @tparam T input type
* @tparam accT the type used for accumulation
* @tparam instSet anyarch/avx2/avx512
* @tparam int8Type an auxiliary template parameter to specialize for 8-bit
* input types.
*/
template <
typename T,
typename accT,
inst_set_t instSet,
typename int8Type = void>
struct PackingTraits;
// type specialized implementation in an include file
#include "./PackingTraits-inl.h" // @manual
/**
* @brief Base class for packing matrices for higher GEMM performance.
*
* Matrix is tiled into blockRows() * blockCols() blocks.
* Each block is with size blockRowSize() * blockColSize().
* This class is designed using CRTP
* (https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern)
*
* @tparam PT actual packing type, e.g., PackAWithRowOffset
*/
template <typename PT, typename inpType, typename accType = std::int32_t>
class PackMatrix {
public:
PackMatrix() = delete; // no default constructor
PackMatrix(const PackMatrix&) = delete; // no copy
PackMatrix& operator=(const PackMatrix&) = delete; // no copy
PackMatrix(PackMatrix&&) = delete; // no move
PackMatrix& operator=(PackMatrix&& rhs) noexcept = delete; // no move
/**
* @param rows total number of rows in the matrix
* (packed rows can be less than rows).
* @param cols total number of columns in the matrix
* @param pmat A buffer to contain the packed matrix.
* If nullptr, a buffer owned by PackMatrix will be allocated
* internally to contain the packed matrix.
* For non-constant matrices like activation matrices, the client
* code may want to pass a pre-allocated pmat to avoid the
* overhead of internal memory allocation everytime a PackMatrix
* is constructed. The client code can query how big patm should
* be with packedBufferSize function.
* @param groups when groups > 1, we compute groups number of GEMMs each
* multiplies A.rows by A.cols/A.groups matrix with
* B.rows/B.groups by B.cols matrix (in conventional BLAS
* terminology, this is a batched GEMM but we use the name group
* to follow deep learning terminology). The result matrix has
* dimension A.rows by B.cols*B.groups .
* A.groups must be same as B.groups, A.groups must divide
* A.cols, and B.groups must divide B.rows and C.cols.
*/
PackMatrix(
std::int32_t rows,
std::int32_t cols,
inpType* pmat,
int groups = 1,
const BlockingFactors* params = nullptr);
/**
* @return true usually when the matrix is constant matrix (e.g., weight
* matrices) that can be prepacked
*/
bool isPrePacked() const {
return static_cast<const PT*>(this)->isPrePacked();
}
/**
* @return true if this is the first input matrix in GEMM (i.e., A in C = A *
* B)
*/
static bool isA() {
return PT::isA();
}
/**
* @brief The size of the buffer used for packing (The size is in number of
* elements).
*
* rows and cols are only used for fully packing, i.e., for B matrix. The
* client code can use this function to query how big the buffer used for
* packing should be.
*/
static int packedBufferSize(
int rows = 0,
int cols = 0,
const BlockingFactors* params = nullptr);
FBGEMM_PUSH_WARNING_AND_DISABLE("-Wpragmas")
FBGEMM_PUSH_WARNING_AND_DISABLE("-Winfinite-recursion")
/**
* @return Pointer to a buffer containing row offset results. Some packing
* objects fuse row offset computation for later requantization step.
*/
std::int32_t* getRowOffsetBuffer() const {
return static_cast<const PT*>(this)->getRowOffsetBuffer();
}
/**
* @brief When k loop is also tiled/blocked, this function is used to check if
* have executed computations for the last k block so that we can perform
* post-GEMM operations.
*/
bool isThisLastKBlock(int block_id) const {
return static_cast<const PT*>(this)->isThisLastKBlock(block_id);
}
FBGEMM_POP_WARNING
FBGEMM_POP_WARNING
/**
* @brief Actual packing of a block of the source matrix in pmat buffer.
*/
void pack(const block_type_t& block) {
#if defined(FBGEMM_FBCODE) || !defined(__aarch64__)
static_cast<PT*>(this)->pack(block);
#else
throw std::runtime_error("PackMatrix::pack() not implemented for aarch64");
#endif // __aarch64__
}
std::int32_t numRows() const {
return nrows_;
}
std::int32_t numCols() const {
return ncols_;
}
/**
* @return The number of rows in each block
*/
std::int32_t blockRowSize() const {
return brow_;
}
/**
* @return The number of columns in each block
*/
std::int32_t blockColSize() const {
return bcol_;
}
/**
* @return The number of blocks along rows
*/
std::int32_t blockRows() const {
return nbrow_;
}
/**
* @return The number of blocks along columns
*/
std::int32_t blockCols() const {
return nbcol_;
}
/**
* @return The number of the rows in the currently packed block of a matrix.
* For pre-packed (i.e., fully-packed), it's equal to the total number
* of rows.
*/
std::int32_t numPackedRows() const {
return packedBlock_.row_size;
}
/**
* @return The number of columns in the currently packed block of a matrix.
* For pre-packed (i.e., fully-packed), it's equal to the number of
* columns.
*/
std::int32_t numPackedCols() const {
return packedBlock_.col_size;
}
/**
* @return The first row of the block we're working on.
*/
std::int32_t packedRowStart() const {
return packedBlock_.row_start;
}
/**
* @return The first column of the block we're working on.
*/
std::int32_t packedColStart() const {
return packedBlock_.col_start;
}
/**
* @return The beginning of (rowBlockNum, colBlockNum)th block
*/
inpType* getBuf(std::int32_t rowBlockNum = 0, std::int32_t colBlockNum = 0) {
return buf_ + blockRowSize() * blockColSize() * rowBlockNum +
blockRowSize() * blockColSize() * blockCols() * colBlockNum;
}
/**
* @brief Print the packed block.
*/
void printPackedMatrix(const std::string& name) {
static_cast<PT*>(this)->printPackedMatrix(name);
}
/**
* @return The number of rows in the last row block.
*/
std::int32_t lastBrow() const {
return last_brow_;
}
/**
* @return The number of columns in the last column block.
*/
std::int32_t lastBcol() const {
return last_bcol_;
}
int numGroups() const {
return G_;
}
/**
* @return True if the last column block has fewer columns than the block
* size.
*/
bool isThereColRemainder() const {
return last_bcol_ != blockColSize();
}
virtual ~PackMatrix() {
if (bufAllocatedHere_) {
fbgemmAlignedFree(buf_);
}
}
protected:
/**
* Set which block we're packing
*/
void packedBlock(const block_type_t& block) {
packedBlock_ = block;
nbrow_ = (numPackedRows() + blockRowSize() - 1) / blockRowSize();
nbcol_ = (numPackedCols() + blockColSize() - 1) / blockColSize();
last_brow_ = ((numPackedRows() % blockRowSize()) == 0)
? blockRowSize()
: (numPackedRows() % blockRowSize());
last_bcol_ = ((numPackedCols() % blockColSize()) == 0)
? blockColSize()
: (numPackedCols() % blockColSize());
}
inpType* buf_;
std::int32_t brow_; ///< the number of rows in each block
std::int32_t bcol_; ///< the number of columns in each block
std::int32_t nbrow_; ///< the number of blocks along rows
std::int32_t nbcol_; ///< the number of blocks along columns
bool bufAllocatedHere_{false};
const BlockingFactors*
blocking_params; ///< MCB, KCB, NCB, MR, NR, NR_MIN, ROW_INTERLEAVE;
private:
std::int32_t nrows_, ncols_;
int G_;
block_type_t packedBlock_; ///< The block in the source matrix just packed
std::int32_t last_brow_, last_bcol_;
};
/**
* @brief Matrix packed for the first input matrix in GEMM (usually
* activation). The source matrix is already quantized. Default
* accumulation type is int32.
*/
template <typename T, typename accT = std::int32_t>
class FBGEMM_API PackAMatrix final
: public PackMatrix<PackAMatrix<T, accT>, T, accT> {
public:
using This = PackAMatrix<T, accT>;
using BaseType = PackMatrix<This, T, accT>;
using inpType = T;
using accType = accT;
PackAMatrix() = delete; // no default constructor
PackAMatrix(
matrix_op_t trans,
std::int32_t nRow,
std::int32_t nCol,
const inpType* smat,
std::int32_t ld,
inpType* pmat = nullptr,
int groups = 1,
const BlockingFactors* params = nullptr);
/**
* Activation matrices are not constant so cannot amortize the cost of
* pre-packing.
*/
bool isPrePacked() const {
return false;
}
/**
* @return True if this is used as A matrix.
*/
static constexpr bool isA() {
return true;
}
/**
* @return A pointer to the row offset buffer. There is no row offset buffer
* calculations with this packing class, hence, it returns nullptr.
*/
std::int32_t* getRowOffsetBuffer() const {
return nullptr;
}
/**
* @return Offset of the element in the packed matrix that was at (i, j) in
* the source matrix.
*/
std::int32_t addr(std::int32_t i, std::int32_t j) const;
/**
* @brief Packs a block of source matrix into pmat buffer.
*/
void pack(const block_type_t& block);
/**
* @brief Print the packed block.
*/
void printPackedMatrix(const std::string& name);
private:
matrix_op_t trans_;
const T* smat_;
std::int32_t ld_;
std::int32_t row_interleave_B_;
};
/**
* @brief Matrix packed for the second input matrix in GEMM (usually weight).
* The source matrix is already quantized. Default accumulation
* type is int32.
*/
template <typename T, typename accT = std::int32_t>
class FBGEMM_API PackBMatrix final
: public PackMatrix<PackBMatrix<T, accT>, T, accT> {
public:
using This = PackBMatrix<T, accT>;
using BaseType = PackMatrix<This, T, accT>;
using inpType = T;
using accType = accT;
PackBMatrix() = delete; // no default constructor
/**
* @param groups if > 1 and trans == NoTranspose, smat is nRow x nCol with
* groups are vertically concatenated: each group is
* (nRow / groups) x nCol .
* if > 1 and trans == Transpose, smat is (nCol * groups) x
* (nRow / groups) with groups are horizontally concatenated:
* each group is nCol x (nRow / groups) . Each group is
* transposed and vertically concatenated to match with the
* NoTranspose case.
*/
PackBMatrix(
matrix_op_t trans,
std::int32_t nRow,
std::int32_t nCol,
const inpType* smat,
std::int32_t ld,
inpType* pmat = nullptr,
int groups = 1,
const BlockingFactors* params = nullptr);
/**
* Weight matrices are usually constant so worth pre-packing.
*/
bool isPrePacked() const {
return true;
}
/**
* @return True if to be used as A matrix, False otherwise.
*/
static constexpr bool isA() {
return false;
}
/**
* @brief When k loop is also tiled/blocked, this function is used to check if
* have executed computations for the last k block so that we can perform
* post-GEMM operations.
*/
bool isThisLastKBlock(int block_id) const {
return (BaseType::blockRows() - 1) == block_id;
}
/**
* @return Offset of the element in the packed matrix that was at (i, j) in
* the source matrix.
*/
std::int32_t addr(std::int32_t i, std::int32_t j) const;
/**
* @brief Packs a block of source matrix into pmat buffer. The blocking
* parameters are needed to compute the buffer size of each group.
* It will use default blocking parameters if params is not provided.
*/
void pack(const block_type_t& block, const BlockingFactors* params = nullptr);
/**
* @brief Print the packed block.
*/
void printPackedMatrix(
const std::string& name,
const BlockingFactors* params = nullptr);
/**
* @return true if meta information like matrix shape is the same.
*/
bool metaEquals(const PackBMatrix<T, accT>& that) const;
/**
* @return true if matrices are the same.
*/
bool equals(const PackBMatrix<T, accT>& that) const;
/**
* @brief Unpack pmat buffer to the origin_buf (Used for the serialization to
* recover weight matrix).
*/
void unpack(T* origin_buf, const BlockingFactors* params = nullptr);
~PackBMatrix() override = default;
private:
matrix_op_t trans_;
const T* smat_;
std::int32_t ld_;
std::int32_t row_interleave_;
/**
* @brief Internal function performing both pack & unpack
*/
void pack_unpack_(
const block_type_t& block,
T* unpack_buf,
T* pack_buf,
bool ispack,
const BlockingFactors* params = nullptr);
};
/**
* @brief Matrix packed for direct group convolution.
* The source matrix is already quantized. Default accumulation
* type is int32.
*/
template <typename T, typename accT = std::int32_t, int SPATIAL_DIM = 2>
class FBGEMM_API PackWeightMatrixForGConv {
public:
using This = PackWeightMatrixForGConv<T, accT, SPATIAL_DIM>;
using inpType = T;
using accType = accT;
PackWeightMatrixForGConv() = delete; // no default constructor
PackWeightMatrixForGConv(const PackWeightMatrixForGConv&) = delete; // no copy
PackWeightMatrixForGConv& operator=(const PackWeightMatrixForGConv&) =
delete; // no copy
PackWeightMatrixForGConv(PackWeightMatrixForGConv&&) = delete; // no move
PackWeightMatrixForGConv& operator=(PackWeightMatrixForGConv&&) =
delete; // no move
/**
* @param pmat if nullptr, a buffer is allocated and owned by this class.
*/
PackWeightMatrixForGConv(
matrix_op_t trans,
const conv_param_t<SPATIAL_DIM>& conv_param,
const inpType* sdata,
inpType* pdata = nullptr);
/**
* Number of groups we work at a time to fill the full simd width
* e.g., IC_PER_G = 4 and OC_PER_G = 4, we work on two groups at a time
* to fill the avx2 width of 256 bits.
*/
static int numOfGroupsTogether(const conv_param_t<SPATIAL_DIM>& conv_param);
/**
* @brief Packs a block of source matrix into pmat buffer.
*/
void pack();
/**
* @brief Unpacks a pmat buffer into source matrix.
*/
void unpack(T* origin_buf);
/**
* @brief Return packed data
*/
inpType* getBuf() {
return pdata_;
}
~PackWeightMatrixForGConv() {
if (bufAllocatedHere_) {
fbgemmAlignedFree(pdata_);
}
}
private:
matrix_op_t trans_;
const conv_param_t<SPATIAL_DIM> conv_param_;
const T* sdata_;
T* pdata_;
bool bufAllocatedHere_{false};
// Number of groups we work at a time to fill the full simd width
int GTogether_;
/**
* @brief Internal function performing both pack & unpack
*/
void pack_unpack_(const T* src, T* dst, bool ispack);
/**
* @brief Get the index of the unpacked data
*/
int unpacked_index_(int t, int r, int s, int k, int g, int c, bool tr);
/**
* @brief Get the index of the packed data
*/
int packed_index_(int t, int r, int s, int k, int g, int c);
};
/**
* @brief A container class to keep packed weight tensor for convolution.
* The source tensor should already be quantized.
*
* @tparam SPATIAL_DIM is equal to 2 for 2D convolutions and 3 for 3D
* convolutions. Default value is 2.
* @tparam T is the datatype for source tensor. Default value is int8.
* @tparam accT is the datatype to accumulate into. Default value is int32.
*/
template <
int SPATIAL_DIM = 2,
typename T = std::int8_t,
typename accT = std::int32_t>
class FBGEMM_API PackWeightsForConv {
public:
using This = PackWeightsForConv<SPATIAL_DIM, T, accT>;
using inpType = T;
using accType = accT;
PackWeightsForConv() = delete; // no default constructor
PackWeightsForConv(
const conv_param_t<SPATIAL_DIM>& conv_param,
const inpType* sdata,
const BlockingFactors* blocking_params = nullptr);
std::shared_ptr<PackBMatrix<T, accT>> getPackedWForIm2col() {
return W_im2col_packed_;
}
#if defined(FBGEMM_FBCODE) || !defined(__aarch64__)
std::shared_ptr<PackedDepthWiseConvMatrix> getPackedWForDepthwise() {
return W_dw_packed_;
}
#endif // __aarch64__
std::shared_ptr<PackedDirectConvMatrix> getPackedWForDirectconv() {
return W_dc_packed_;
}
std::shared_ptr<PackWeightMatrixForGConv<T, accT, SPATIAL_DIM>>
getPackedWForGroupwise() {
return W_gconv_packed_;
}
std::shared_ptr<PackBMatrix<T, accT>> getPackedWForPointwise() {
return W_pointwise_packed_;
}
int inputChannels() {
return conv_param_.IC;
}
int outputChannels() {
return conv_param_.OC;
}
std::array<int, SPATIAL_DIM> kernelDims() {
return conv_param_.K;
}
int groups() {
return conv_param_.G;
}
/**
* @brief Returns true if the packed weights would work for the given
* convolution parameters, and false otherwise
*/
bool isPackingCompliant(const conv_param_t<SPATIAL_DIM>& conv_p);
/**
* @brief Returns a string of mismatching parameters
*/
std::string mismatchingParams(const conv_param_t<SPATIAL_DIM>& conv_p);
/**
* @brief Unpack packed matric into origin_buf (Used for the serialization to
* recover weight matrix).
*/
void unpack(T* origin_buf);
private:
const conv_param_t<SPATIAL_DIM> conv_param_;
// Packed weights if we use im2col based convolution implementation
std::shared_ptr<PackBMatrix<T, accT>> W_im2col_packed_;
#if defined(FBGEMM_FBCODE) || !defined(__aarch64__)
// Packed weights if we use depthwise convolution implementation
std::shared_ptr<PackedDepthWiseConvMatrix> W_dw_packed_;
#endif // __aarch64__
// Packed weights if we use direct convolution implementation
std::shared_ptr<PackedDirectConvMatrix> W_dc_packed_;
// Packed weights if we use groupwise (small channels per group) convolution
// implementation
std::shared_ptr<PackWeightMatrixForGConv<T, accT, SPATIAL_DIM>>
W_gconv_packed_;
// Packed weights if we use direct gemm for pointwise convolution
std::shared_ptr<PackBMatrix<T, accT>> W_pointwise_packed_;
};
/**
* @brief Matrix packed for the first input matrix in GEMM (usually activation),
* and row offsets used for requantization is computed during packing.
* Im2col is fused with packing here. The source matrix is already
* quantized.
*/
template <typename T, typename accT = std::int32_t, int SPATIAL_DIM = 2>
class FBGEMM_API PackAWithIm2Col
: public PackMatrix<PackAWithIm2Col<T, accT, SPATIAL_DIM>, T, accT> {
public:
using This = PackAWithIm2Col<T, accT, SPATIAL_DIM>;
using BaseType = PackMatrix<This, T, accT>;
using inpType = T;
using accType = accT;
PackAWithIm2Col() = delete; // no default constructor
/**
* @param zero_pt the quantized value that maps to 0.0f floating-point number.
* @param row_offset If nullptr, this constructor internally allocates a
* buffer and owns it. Otherwise, this class doesn't own
* the buffer. The buffer will be populated when pack
* function is called.
* @param b_symmetric if true we skip row offset computation
*/
PackAWithIm2Col(
const conv_param_t<SPATIAL_DIM>& conv_param,
const T* sdata,
inpType* pmat = nullptr,
std::int32_t a_zero_pt = 0,
std::int32_t* row_offset = nullptr,
bool b_symmetric = false,
const BlockingFactors* params = nullptr);
PackAWithIm2Col(const PackAWithIm2Col&) = delete;
PackAWithIm2Col(PackAWithIm2Col&&) = delete;
PackAWithIm2Col& operator=(const PackAWithIm2Col&) = delete;
PackAWithIm2Col& operator=(PackAWithIm2Col&&) = delete;
/**
* Activation matrices are not constant so cannot amortize the cost of
* pre-packing.
*/
bool isPrePacked() const {
return false;
}
/**
* @return True if this is used as A matrix.
*/
static constexpr bool isA() {
return true;
}
/**
* @brief Packs a block of source matrix into pmat buffer.
*/
void pack(const block_type_t& block);
/**
* @return A pointer to the row offset buffer.
*/
std::int32_t* getRowOffsetBuffer() const {
return row_offset_;
}
/**
* @brief Print the packed block.
*/
void printPackedMatrix(const std::string& name);
/**
* @return Size of row offset buffer in number of elements
*/
static int rowOffsetBufferSize(const BlockingFactors* params = nullptr);
~PackAWithIm2Col() override {
if (rowOffsetAllocatedHere) {
fbgemmAlignedFree(row_offset_);
}
}
private:
const conv_param_t<SPATIAL_DIM> conv_p_;
const T* sdata_;
std::int32_t a_zero_pt_;
std::int32_t* row_offset_{nullptr};
bool rowOffsetAllocatedHere{false};
std::int32_t row_interleave_B_;
};
/**
* @brief Matrix packed for the first input matrix in GEMM (usually activation),
* and row offsets used for requantization is computed during packing.
* The source matrix is already quantized.
*/
template <typename T, typename accT = std::int32_t>
class FBGEMM_API PackAWithRowOffset final
: public PackMatrix<PackAWithRowOffset<T, accT>, T, accT> {
public:
using This = PackAWithRowOffset<T, accT>;
using BaseType = PackMatrix<This, T, accT>;
using inpType = T;
using accType = accT;
PackAWithRowOffset() = delete; // no default constructor
/**
* @param row_offset If nullptr, this constructor internally allocates a
* buffer and owns it. Otherwise, this class doesn't own
* the buffer. The buffer will be populated when pack
* function is called.
*/
PackAWithRowOffset(
matrix_op_t trans,
std::uint32_t nRow,
std::uint32_t nCol,
const T* smat,
std::uint32_t ld,
inpType* pmat = nullptr,
int groups = 1,
std::int32_t* row_offset = nullptr,
const BlockingFactors* params = nullptr);
PackAWithRowOffset(const PackAWithRowOffset&) = delete;
PackAWithRowOffset(PackAWithRowOffset&&) = delete;
PackAWithRowOffset& operator=(const PackAWithRowOffset&) = delete;
PackAWithRowOffset& operator=(PackAWithRowOffset&&) = delete;
/**
* Activation matrices are not constant so cannot amortize the cost of
* pre-packing.
*/
bool isPrePacked() const {
return false;
}
/**
* @return True if this is used as A matrix.
*/
static constexpr bool isA() {
return true;
}
/**
* @return Offset of the element in the packed matrix that was at (i, j) in
* the source matrix
*/
std::int32_t addr(std::int32_t i, std::int32_t j) const;
/**
* @brief Packs a block of source matrix into pmat buffer.
*/
void pack(const block_type_t& block);
/**
* @return A pointer to the row offset buffer.
*/
std::int32_t* getRowOffsetBuffer() const {
return row_offset_;
}
/**
* @brief Print the packed block.
*/
void printPackedMatrix(const std::string& name);
/**
* @return size of row offset buffer in number of elements
*/
static int rowOffsetBufferSize(const BlockingFactors* params = nullptr);
~PackAWithRowOffset() override {
if (rowOffsetAllocatedHere) {
fbgemmAlignedFree(row_offset_);
}
}
private:
matrix_op_t trans_;
const T* smat_;
std::uint32_t ld_;
std::int32_t* row_offset_{nullptr};
bool rowOffsetAllocatedHere{false};
std::int32_t row_interleave_B_;
};
/**
* @brief Matrix packed for the first input matrix in GEMM (usually activation),
* and row offsets used for requantization is computed during packing.
* The source matrix is in fp32 and quantized during packing.
*/
template <typename T, typename accT = std::int32_t>
class FBGEMM_API PackAWithQuantRowOffset final
: public PackMatrix<PackAWithQuantRowOffset<T, accT>, T, accT> {
public:
using This = PackAWithQuantRowOffset<T, accT>;
using BaseType = PackMatrix<This, T, accT>;
using inpType = T;
using accType = accT;
PackAWithQuantRowOffset() = delete; // no default constructor
/**
* @param row_offset If nullptr, this constructor internally allocates a
* buffer and owns it. Otherwise, this class doesn't own
* the buffer. The buffer will be populated when pack
* function is called.
*/
PackAWithQuantRowOffset(
matrix_op_t trans,
std::int32_t nRow,
std::int32_t nCol,
const float* smat,
std::int32_t ld,
inpType* pmat = nullptr,
float scale = 1.0f,
std::int32_t zero_pt = 0,
int groups = 1,
std::int32_t* row_offset = nullptr,
const BlockingFactors* params = nullptr);
PackAWithQuantRowOffset(const PackAWithQuantRowOffset&) = delete;
PackAWithQuantRowOffset(PackAWithQuantRowOffset&&) = delete;
PackAWithQuantRowOffset& operator=(const PackAWithQuantRowOffset&) = delete;
PackAWithQuantRowOffset& operator=(PackAWithQuantRowOffset&&) = delete;
/**
* Activation matrices are not constant so cannot amortize the cost of
* pre-packing.
*/
bool isPrePacked() const {
return false;
}
/**
* @return True if this is used as A matrix.
*/
static constexpr bool isA() {
return true;
}
/**
* @return offset of the element in the packed matrix that was at (i, j) in
* the source matrix
*/
std::int32_t addr(std::int32_t i, std::int32_t j) const;
/**
* @brief Packs a block of source matrix into pmat buffer.
*/
void pack(const block_type_t& block);
/**
* @return A pointer to the row offset buffer.
*/
std::int32_t* getRowOffsetBuffer() const {
return row_offset_;
}
/**
* @brief Print the packed block.
*/
void printPackedMatrix(const std::string& name);
/**
* @return Size of row offset buffer in number of elements
*/
static int rowOffsetBufferSize(const BlockingFactors* params = nullptr);
~PackAWithQuantRowOffset() override {
if (rowOffsetAllocatedHere) {
fbgemmAlignedFree(row_offset_);
}
}
private:
matrix_op_t trans_;
const float* smat_;
std::int32_t ld_;
float scale_;
std::int32_t zero_pt_;
std::int32_t* row_offset_{nullptr};
bool rowOffsetAllocatedHere{false};
std::int32_t row_interleave_B_;
};
/*
*
* Post Processing of outputs
*
*/
/**
* @brief Does nothing. NoOp. Used as the last operation in the output
* processing pipeline.
*
*/
template <typename outT = std::uint8_t, typename inT = std::uint8_t>
class FBGEMM_API DoNothing {
public:
using outType = outT;
using inpType = inT;
DoNothing() = default;
template <inst_set_t instSet>
int f(
outType* /* unused */,
inpType* /* unused */,
const block_type_t& /* unused */,
int /* unused */,
int /* unused */) const {
return 0;
}
};
/**
* @brief Copy data pointed by inp ptr to out ptr when
* inp ptr and out ptr are not the same.
* inp buffer: row and column start points: (0, 0)
* output buffer: row and column start points:
* (block.row_start, block.col_start)
*
* This is the output processing stage that should passed when there is no
* requantization and output is required in the same format as internal buffer
* used for accumulation.
*/
template <
typename outT = std::int32_t,
typename inT = std::int32_t,
typename nextOPType = DoNothing<outT, outT>>
class FBGEMM_API memCopy {
public:
using outType = outT;
using inpType = inT;
explicit memCopy(nextOPType& nextop) : nextop_(nextop) {}
template <inst_set_t instSet>
inline int f(
outType* out,
inpType* inp,
const block_type_t& block,
int ld_out,
int ld_in) const;
private:
nextOPType& nextop_;
};
/**
* @brief Perform scaling on accumulated data.
*/
template <
typename outT = std::int32_t,
typename inT = std::int32_t,
typename nextOPType = DoNothing<outT, outT>>
class ScaleOP {
public:
using outType = outT;
using inpType = inT;
explicit ScaleOP(inpType scalingFactor) : scalingFactor_(scalingFactor) {}
template <inst_set_t instSet>
inline int f(
outType* out,
inpType* inp,
const block_type_t& block,
int ld_out,
int ld_in) const;
private:
inpType scalingFactor_;
};
/**
* @brief Perform Relu on accumulated data.
*/
template <
typename outT = std::int32_t,
typename inT = std::int32_t,
typename nextOPType = DoNothing<outT, outT>>
class ReluOutput {
public:
using outType = outT;
using inpType = inT;
explicit ReluOutput(inpType zero_pt) : zero_pt_(zero_pt) {}
template <inst_set_t instSet>
inline int f(
outType* out,
inpType* inp,
const block_type_t& block,
int ld_out,
int ld_in) const;
private:
inpType zero_pt_;
};
/**
* @brief Perform Dense-Matrix * Sparse-Matrix as a part the of output
* processing pipeline.
*
* SPMDM (SParse Matrix times Dense Matrix) inplace on the 32-bit input buffer
* (inp). After modifying the input buffer, pass it to the next op.
* When groups > 1, each group is numRows() x (numCols()/groups) matrix.
*/
template <
typename outT = std::int32_t,
typename inT = std::int32_t,
typename nextOPType = DoNothing<inT, inT>>
class FBGEMM_API DoSpmdmOnInpBuffer {
public:
using outType = outT;
using inpType = inT;
DoSpmdmOnInpBuffer(
nextOPType& nextop,
const std::uint8_t* A,
int lda,
const CompressedSparseColumn& B_csc,
int groups = 1)
: nextop_(nextop), A_(A), lda_(lda), B_csc_(B_csc), groups_(groups) {}
template <inst_set_t instSet>
inline int f(
outT* out,
inT* inp,
const block_type_t& block,
int ld_out,
int ld_in) const;
private:
nextOPType& nextop_;
const std::uint8_t* A_;
const int lda_;
const CompressedSparseColumn& B_csc_;
const int groups_;
};
/**
* @brief Perform Dense-Matrix * Sparse-Matrix as a part the of output
* processing pipeline.
*
* SPMDM (SParse Matrix times Dense Matrix) inplace on the 32-bit input buffer
* (inp). After modifying the input buffer, pass it to the next op.
* When groups > 1, each group is numRows() x (numCols()/groups) matrix.
*/
template <
typename outT = std::int32_t,
typename inT = std::int32_t,
typename nextOPType = DoNothing<inT, inT>>
class FBGEMM_API DoSConvOnInpBuffer {
public:
using outType = outT;
using inpType = inT;
DoSConvOnInpBuffer(
nextOPType& nextop,
const std::uint8_t* A,
const conv_param_t<>& conv_p,
std::int32_t A_zero_point,
const CompressedSparseColumn& B_csc)
: nextop_(nextop),
A_(A),
conv_p_(conv_p),
A_zero_point_(A_zero_point),
B_csc_(B_csc) {}
template <inst_set_t instSet>
inline int f(
outT* out,
inT* inp,
const block_type_t& block,
int ld_out,
int ld_in) const;
private:
nextOPType& nextop_;
const std::uint8_t* A_;
const conv_param_t<> conv_p_;
const std::int32_t A_zero_point_;
const CompressedSparseColumn& B_csc_;
};
/**
* @brief Requantize values in inp buffer and write to out buffer.
* pass the out buffer to next op for further processing.
*/
template <
bool FUSE_RELU,
QuantizationGranularity Q_GRAN = QuantizationGranularity::TENSOR,
typename BIAS_TYPE = std::int32_t,
typename outT = std::uint8_t,
typename inT = std::int32_t,
typename nextOPType = DoNothing<outT, outT>>
class FBGEMM_API ReQuantizeOutput {
public:
static constexpr int RELU_FUSED = FUSE_RELU;
static constexpr QuantizationGranularity QGRANType = Q_GRAN;
using BIAS_T = BIAS_TYPE;
using outType = outT;
using inpType = inT;
/**
* @param C_multiplier The length of this array is
* 1 when Q_GRAN == QuantizationGranularity::TENSOR,
* groups when Q_GRAN == QuantizationGranularity::GROUP,
* nCol if Q_GRAN == QuantizationGranularity::OUT_CHANNEL
* @param Bq_zero_point The length of this array should be the same as
* C_multiplier.
* @param row_offsets Typically, this should've been computed by a
* PackAMatrix and should be obtained by
* PackMatrix::getRowOffsetBuffer().
* If Bq_zero_point == 0 (symmetric quantization of B
* matrix), we can pass nullptr.
* @param col_offsets This should be pre-computed for example using
* col_offsets_with_zero_pt_s8acc32_ref.
* The length should be nCol.
* See PackedRequantizeTest.cc for an example.
* TODO: if Aq_zero_point == 0, allow passing nullptr.
* @param bias can be nullptr otherwise the length should be nCol
* @param act_times_w_scale activation_scale * weight_scale. This is only
* used if bias is unquantized (i.e., float).
*/
ReQuantizeOutput(
nextOPType& nextop,
const float* C_multiplier,
std::int32_t C_zero_point,
std::int32_t Aq_zero_point,
const std::int32_t* Bq_zero_point,
const std::int32_t* row_offsets,
const std::int32_t* col_offsets,
const BIAS_T* bias,
std::uint32_t nCol,
int groups = 1,
const float* act_times_w_scale = nullptr)
: nextop_(nextop),
C_multiplier_(C_multiplier),
C_zero_point_(C_zero_point),
Aq_zero_point_(Aq_zero_point),
Bq_zero_point_(Bq_zero_point),
q_row_offsets_(row_offsets),
q_col_offsets_(col_offsets),
bias_(bias),
ncols_(nCol),
groups_(groups),
act_times_w_scale_(act_times_w_scale) {}
template <inst_set_t instSet>
inline int f(
outT* out,
const inT* inp,
const block_type_t& block,
int ld_out,
int ld_in) const;
const float* getCMultiplier() const {
return C_multiplier_;
}
std::int32_t getAZeroPoint() const {
return Aq_zero_point_;
}
std::int32_t getCZeroPoint() const {
return C_zero_point_;
}
const std::int32_t* getBZeroPoint() const {
return Bq_zero_point_;
}
const std::int32_t* getRowOffsets() const {
return q_row_offsets_;
}
const std::int32_t* getColOffsets() const {
return q_col_offsets_;
}
const BIAS_T* getBias() const {
return bias_;
}
std::uint32_t getNCols() const {
return ncols_;
}
const float* getActWScale() const {
return act_times_w_scale_;
}
void setRowOffsets(const std::int32_t* row_offsets) {
q_row_offsets_ = row_offsets;
}
private:
nextOPType& nextop_;
const float* C_multiplier_;
std::int32_t C_zero_point_;
std::int32_t Aq_zero_point_;
const std::int32_t* Bq_zero_point_;
const std::int32_t* q_row_offsets_;
const std::int32_t* q_col_offsets_;
const BIAS_T* bias_;
std::uint32_t ncols_;
int groups_;
const float* act_times_w_scale_;
};
/**
* @brief Requantize to convert accumulated data to be used as float, i.e., the
* output would be used as float.
*/
template <
bool FUSE_RELU,
QuantizationGranularity Q_GRAN = QuantizationGranularity::TENSOR,
typename outT = float,
typename inT = std::int32_t,
typename nextOPType = DoNothing<outT, outT>>
class FBGEMM_API ReQuantizeForFloat {
public:
using outType = outT;
using inpType = inT;
/**
* @param Bq_scale The length of this array is
* 1 when Q_GRAN == QuantizationGranularity::TENSOR,
* groups when Q_GRAN == QuantizationGranularity::GROUP,
* nCol if Q_GRAN == QuantizationGranularity::OUT_CHANNEL
* @param Bq_zero_point The length of this array should be the same as
* Bq_scale.
* @param row_offsets Typically, this should've been computed by a
* PackAMatrix and should be obtained by
* PackMatrix::getRowOffsetBuffer().
* If Bq_zero_point == 0 (symmetric quantization of B
* matrix), we can pass nullptr.
* @param col_offsets This should be pre-computed for example using
* col_offsets_with_zero_pt_s8acc32_ref.
* The length should be nCol.
* See PackedRequantizeTest.cc for an example.
* TODO: if Aq_zero_point == 0, allow passing nullptr.
* @param bias can be nullptr otherwise the length should be nCol
*/
ReQuantizeForFloat(
nextOPType& nextop,
float Aq_scale,
const float* Bq_scale,
std::int32_t Aq_zero_point,
const std::int32_t* Bq_zero_point,
const std::int32_t* row_offsets,
const std::int32_t* col_offsets,
const float* bias,
std::uint32_t nCol,
int groups = 1)
: nextop_(nextop),
Aq_scale_(Aq_scale),
Bq_scale_(Bq_scale),
Aq_zero_point_(Aq_zero_point),
Bq_zero_point_(Bq_zero_point),
q_row_offsets_(row_offsets),
q_col_offsets_(col_offsets),
bias_(bias),
ncols_(nCol),
groups_(groups) {}
template <inst_set_t instSet>
inline int f(
outT* out,
inT* inp,
const block_type_t& block,
int ld_out,
int ld_in) const;
private:
nextOPType& nextop_;
float Aq_scale_;
const float* Bq_scale_;
std::int32_t Aq_zero_point_;
const std::int32_t* Bq_zero_point_;
const std::int32_t* q_row_offsets_;
const std::int32_t* q_col_offsets_;
const float* bias_;
std::uint32_t ncols_;
int groups_;
};
// type specialized implementation in an include file
#include "./OutputProcessing-inl.h" // @manual
/*
*
* ####### GEMM related functions #######
*
*/
/**
* Matrix B must be prepacked. For matrix A, packA.pack function is called to
* pack it.
*
* @tparam packingAMatrix processing of A matrix while packing,
* e.g., PackAWithQuantRowOffset
*
* @tparam packingBMatrix processing of B matrix while packing,
* e.g., pre-multiply by alpha
* @tparam cT data type of C matrix
* @tparam processOutputType further processing of outputs, e.g., Relu
*/
template <
typename packingAMatrix,
typename packingBMatrix,
typename cT,
typename processOutputType>
FBGEMM_API void fbgemmPacked(
PackMatrix<
packingAMatrix,
typename packingAMatrix::inpType,
typename packingAMatrix::accType>& packA,
PackMatrix<
packingBMatrix,
typename packingBMatrix::inpType,
typename packingBMatrix::accType>& packB,
cT* C,
std::int32_t* C_buffer,
std::uint32_t ldc,
const processOutputType& outProcess,
int thread_id,
int num_threads,
const BlockingFactors* blocking_params = nullptr);
/**
* @brief Perform small-channels-per-group groupwise convolution
* Note: Currently threading is not supported. This function does
* nothing for thread_ids > 0, i.e., returns early.
*
* @param rowOffsetBuf nullptr if B uses symmetric quantization
* Note: Currently threading is not supported. This function does
* nothing for thread_ids > 0, i.e., returns early.
*/
template <
typename packed_W,
typename outType,
bool FUSE_RELU,
QuantizationGranularity Q_GRAN,
int SPATIAL_DIM = 2,
typename BIAS_TYPE = std::int32_t>
FBGEMM_API void fbgemmGroupwiseConv(
const conv_param_t<SPATIAL_DIM>& conv_param,
const std::uint8_t* activations,
std::int32_t a_zero_point,
std::int32_t* rowOffsetBuf,
packed_W& packed_weights,
outType* out,
std::int32_t* outBuffer,
const ReQuantizeOutput<FUSE_RELU, Q_GRAN, BIAS_TYPE>& outProcess,
int thread_id,
int num_threads);
template <
int SPATIAL_DIM,
QuantizationGranularity Q_GRAN,
bool FUSE_RELU,
typename BIAS_TYPE = std::int32_t>
FBGEMM_API void fbgemmDirectConv(
const conv_param_t<SPATIAL_DIM>& conv_p,
const uint8_t* Aint8,
PackedDirectConvMatrix& Bint8_tr,
uint8_t* C,
int32_t* C_buffer,
const ReQuantizeOutput<FUSE_RELU, Q_GRAN, BIAS_TYPE>& outProcess,
const BIAS_TYPE* bias,
int thread_id,
int num_threads);
/**
* @return Size of row offset buffer in number of elements needed for
* fbgemmGroupwiseConv
*/
template <int SPATIAL_DIM = 2>
FBGEMM_API int rowOffsetBufferSizeGConv(
const conv_param_t<SPATIAL_DIM>& conv_param);
/**
* @brief Is this depthwise convolution optimized?
*/
template <int SPATIAL_DIM = 2, typename ACC_T = std::int32_t>
bool takeDepthWiseFastPath(const conv_param_t<SPATIAL_DIM>& conv_p);
/**
* @brief Is this groupwise convolution supported?
*/
template <int SPATIAL_DIM>
FBGEMM_API bool fbgemmOptimizedGConv(const conv_param_t<SPATIAL_DIM>& conv_p);
/**
* @brief Is this convolution a direct matrix-matrix multiplication, i.e., 1x1
* (aka pointwise) with right paddings etc.?
*/
template <int SPATIAL_DIM>
FBGEMM_API bool takePointWiseFastPath(const conv_param_t<SPATIAL_DIM>& conv_p);
/**
* @brief Are we running on a fbgemm supported cpu?
*/
FBGEMM_API bool fbgemmSupportedCPU();
/**
* @brief Performs convolution using fastest path available.
*
* @tparam SPATIAL_DIM It's 2 for 2D convolutions and 3 for 3D convolutions.
*/
template <
typename processOutputType,
int SPATIAL_DIM = 2,
typename ACC_T = std::int32_t>
FBGEMM_API int fbgemmConv(
const conv_param_t<SPATIAL_DIM>& conv_p,
const std::uint8_t* activations,
PackWeightsForConv<SPATIAL_DIM, std::int8_t, ACC_T>& packed_weights,
typename processOutputType::outType* out,
std::int32_t* outBuffer,
processOutputType& outProcess,
int thread_id,
int num_threads,
const BlockingFactors* blocking_params = nullptr);
/**
* @brief Returns which fast path to take
*
* @tparam SPATIAL_DIM It's 2 for 2D convolutions and 3 for 3D convolutions.
*
* @return optimized_conv_t::depthwise, optimized_conv_t::groupwise or
* optimized_conv_t::im2col
*
*/
template <int SPATIAL_DIM = 2, typename ACC_T = std::int32_t>
FBGEMM_API optimized_conv_t
ConvFastPath(const conv_param_t<SPATIAL_DIM>& conv_p);
} // namespace fbgemm
|