File size: 42,872 Bytes
5c333e7 | 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 | /*
* SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Need 10.1 for cublasGemmStridedBatchedEx
#include <cuda.h>
#if CUDA_VERSION >= 10010
#include "NvInfer.h"
#include "bertQKVToContextPlugin/fused_multihead_attention/fused_multihead_attention.h"
#include "bertQKVToContextPlugin/fused_multihead_attention_v2/fused_multihead_attention_v2.h"
#include "common/bertCommon.h"
#include "common/serialize.hpp"
#include "mhaRunner.h"
#include "qkvToContextPluginLegacy.h"
#include <cstdint>
#include <cstring>
#include <iostream>
#include <tuple>
#include <vector>
using namespace nvinfer1;
using namespace nvinfer1::plugin;
using namespace nvinfer1::plugin::bert;
using namespace nvinfer1::pluginInternal;
namespace
{
char const* const kQKV_TO_CONTEXT_PLUGIN_LEGACY_VERSION{"1"};
char const* const kQKV_TO_CONTEXT_VAR_SEQLEN_LEGACY_PLUGIN_VERSION{"2"};
char const* const kQKV_TO_CONTEXT_PLUGIN_NAME{"CustomQKVToContextPluginDynamic"};
} // namespace
REGISTER_TENSORRT_PLUGIN(QKVToContextPluginDynamicLegacyCreator);
constexpr uint32_t kIIDX = 0; // index of the input tensor
constexpr uint32_t kMIDX = 1; // index of the mask
REGISTER_TENSORRT_PLUGIN(QKVToContextVarSeqlenPluginLegacyCreator);
QKVToContextPluginDynamicLegacy::QKVToContextPluginDynamicLegacy(std::string const name, DataType const type,
int32_t const hiddenSize, int32_t const numHeads, float const dqProbs, bool hasImask)
: mLayerName(name)
, mS(0)
, mB(0)
, mHeadSize(hiddenSize / numHeads)
, mHiddenSize(hiddenSize)
, mNumHeads(numHeads)
, mHasImask(hasImask)
, mType(type)
, mDqProbs(dqProbs)
{
mSM = getSmVersion();
}
QKVToContextPluginDynamicLegacy::QKVToContextPluginDynamicLegacy(
std::string const name, void const* data, size_t length)
: mLayerName(name)
{
BERT_DEBUG_MSG("QKV Deser Start");
deserialize_value(&data, &length, &mType);
deserialize_value(&data, &length, &mNumHeads);
deserialize_value(&data, &length, &mHeadSize);
deserialize_value(&data, &length, &mHasImask);
deserialize_value(&data, &length, &mHiddenSize);
deserialize_value(&data, &length, &mSM);
deserialize_value(&data, &length, &mS);
deserialize_value(&data, &length, &mB);
deserialize_value(&data, &length, &mDqProbs);
createMHARunner();
int32_t hasUnfusedRunner = 0;
deserialize_value(&data, &length, &hasUnfusedRunner);
if (hasUnfusedRunner)
{
PLUGIN_ASSERT(unfusedDispatcher.get());
unfusedDispatcher->deserialize(data, length);
}
BERT_DEBUG_MSG("QKV Deser done");
}
void QKVToContextPluginDynamicLegacy::createMHARunner()
{
if (!fusedDispatcher.get())
{
if (mType == DataType::kHALF)
{
fusedDispatcher.reset(new FusedMHARunnerFP16(mNumHeads, mSM));
}
else if (mType == DataType::kINT8)
{
fusedDispatcher.reset(new FusedMHARunnerInt8(mNumHeads, mSM, mDqProbs));
}
}
if (!unfusedDispatcher.get())
{
unfusedDispatcher.reset(new UnfusedMHARunner(mType, mNumHeads, mSM));
}
}
// IPluginV2DynamicExt Methods
nvinfer1::IPluginV2DynamicExt* QKVToContextPluginDynamicLegacy::clone() const noexcept
{
BERT_DEBUG_MSG("QKV Clone");
QKVToContextPluginDynamicLegacy* ret = nullptr;
// the workspacesize is 0 if we have not call setup the dispatcher yet.
if (unfusedDispatcher.get() && unfusedDispatcher->getWorkspaceSize())
{
std::vector<char> buff;
buff.resize(getSerializationSize());
serialize(buff.data());
ret = new QKVToContextPluginDynamicLegacy(mLayerName, buff.data(), buff.size());
}
else
{
ret = new QKVToContextPluginDynamicLegacy(mLayerName, mType, mHiddenSize, mNumHeads, mDqProbs, mHasImask);
}
ret->setPluginNamespace(mNamespace.c_str());
BERT_DEBUG_MSG("QKV Clone done");
return ret;
}
DimsExprs QKVToContextPluginDynamicLegacy::getOutputDimensions(
int32_t outputIndex, DimsExprs const* inputs, int32_t /*nbInputs*/, IExprBuilder& exprBuilder) noexcept
{
// Input is BxSx3*N*H, output should be BxSxN*H
PLUGIN_ASSERT(outputIndex == 0);
// Copy over everything
DimsExprs output(inputs[kIIDX]);
// Divide last dim by three
auto const* three = exprBuilder.constant(3);
output.d[HDIM] = exprBuilder.operation(DimensionOperation::kFLOOR_DIV, *inputs[kIIDX].d[HDIM], *three);
return output;
}
bool QKVToContextPluginDynamicLegacy::supportsFormatCombination(
int32_t pos, PluginTensorDesc const* inOut, int32_t nbInputs, int32_t /*nbOutputs*/) noexcept
{
PLUGIN_ASSERT(pos >= 0);
PLUGIN_ASSERT(pos < 2 + mHasImask);
PLUGIN_ASSERT(nbInputs == 1 + mHasImask);
auto const* in = inOut;
auto const* out = inOut + nbInputs;
int32_t packedSize = getMHAMaskPackedSize(mSM, mType, in->dims.d[SDIM]);
// we only support int8 IO in fused mha runner, and we only support fused mha runner on Xavier, Turing and Ampere
if (mType == DataType::kINT8)
{
if (!elem(mSM, {kSM_75, kSM_80, kSM_86, kSM_87, kSM_89, kSM_90, kSM_100, kSM_120}))
{
gLogError << "INT8 IO is only supported on Turing, Ampere, Hopper and Blackwell for plugin "
<< kQKV_TO_CONTEXT_PLUGIN_NAME << std::endl;
return false;
}
if (in->dims.d[SDIM] == -1)
{
gLogError << "INT8 IO not support dynamic shape in sequence dimension for plugin "
<< kQKV_TO_CONTEXT_PLUGIN_NAME << std::endl;
return false;
}
if (packedSize == unfusedMaskSize)
{
gLogError << "INT8 IO only support sequence length 128,384 for plugin " << kQKV_TO_CONTEXT_PLUGIN_NAME
<< std::endl;
return false;
}
}
if (pos == 0)
{
bool isFormatSupported = in->format == TensorFormat::kLINEAR;
if (mType == DataType::kINT8)
{
if (in->dims.d[HDIM] % 32U == 0)
{
isFormatSupported = in->format == TensorFormat::kCHW32;
}
else
{
isFormatSupported = in->format == TensorFormat::kCHW4;
}
}
// must not check descriptions > pos
return (in->type == mType) && // precision
isFormatSupported && // format
(in->dims.nbDims == 5) && // num dims
((in->dims.d[HDIM] % 3U) == 0) && // see getOutputDimensions
((in->dims.d[3]) == 1) && // for fc
((in->dims.d[4]) == 1) // for fc
;
}
// pos==1
if ((mHasImask && pos == 1)) // pos 1 is the mask
{
auto const* inMask = &inOut[1];
if (inMask->dims.d[1] != -1 && inMask->dims.d[1] != packedSize)
{
gLogError << "CustomEmbLayerNormPluginDynamic returned mask with pack size " << inMask->dims.d[1]
<< ", but " << kQKV_TO_CONTEXT_PLUGIN_NAME << " expects mask pack size " << packedSize
<< std::endl;
return false;
}
// detect full mask and check that it was produced
return (inMask->type == DataType::kINT32) && // precision
(inMask->format == TensorFormat::kLINEAR) && // format
(inMask->dims.nbDims == 2) && // Bx2*maskSize
(inMask->dims.d[0] == in->dims.d[BDIM]);
}
if (!mHasImask || pos == 2) // output pos
{
bool isFormatSupported = out->format == TensorFormat::kLINEAR;
if (mType == DataType::kINT8)
{
if (out->dims.d[HDIM] % 32U == 0)
{
isFormatSupported = out->format == TensorFormat::kCHW32;
}
else
{
isFormatSupported = out->format == TensorFormat::kCHW4;
}
}
return (in->type == out->type) && // precision
isFormatSupported && // format
(out->dims.nbDims == 5) && // num dims
((in->dims.d[HDIM] / 3) == (out->dims.d[HDIM])) && // div 3
((out->dims.d[3]) == 1) && // for fc
((out->dims.d[4]) == 1) && // for fc
((out->dims.d[BDIM]) == in->dims.d[BDIM]) && // check B
((out->dims.d[SDIM]) == in->dims.d[SDIM]) // check S
;
}
return false;
}
void QKVToContextPluginDynamicLegacy::configurePlugin(
DynamicPluginTensorDesc const* in, int32_t nbInputs, DynamicPluginTensorDesc const* out, int32_t nbOutputs) noexcept
{
PLUGIN_ASSERT(nbInputs == 1 + mHasImask);
PLUGIN_ASSERT(nbOutputs == 1);
PluginTensorDesc const& inDesc = in[kIIDX].desc;
TRT_UNUSED inDesc;
PluginTensorDesc const& outDesc = out->desc;
TRT_UNUSED outDesc;
PLUGIN_ASSERT(mType == inDesc.type);
PLUGIN_ASSERT(mType == outDesc.type);
PLUGIN_ASSERT(inDesc.dims.d[BDIM] == outDesc.dims.d[BDIM]);
PLUGIN_ASSERT(inDesc.dims.d[SDIM] == outDesc.dims.d[SDIM]);
PLUGIN_ASSERT(inDesc.dims.d[HDIM] == 3 * outDesc.dims.d[HDIM]);
if (mHasImask)
{
PluginTensorDesc const& maskDesc = in[kMIDX].desc;
TRT_UNUSED maskDesc;
PLUGIN_ASSERT(maskDesc.dims.d[0] == inDesc.dims.d[BDIM]);
}
createMHARunner();
int32_t const S = inDesc.dims.d[SDIM];
int32_t const B = inDesc.dims.d[BDIM] <= 0 ? in->max.d[BDIM] : inDesc.dims.d[BDIM];
if (S <= 0)
{
// in dynamic shape build stage, we setup with max sequence that cannot fused
int32_t const Smin = in->min.d[SDIM];
int32_t const Smax = in->max.d[SDIM];
if (fusedDispatcher.get())
{
for (int32_t i = Smax; i >= Smin; --i)
{
if (!fusedDispatcher->isValid(mHeadSize, i))
{
unfusedDispatcher->setup(i, B, mHeadSize);
mS = i;
mB = B;
break;
}
}
}
else
{
unfusedDispatcher->setup(Smax, B, mHeadSize);
mS = Smax;
mB = B;
}
}
else
{
// in inference stage or in static shape build stage
if (fusedDispatcher.get() && fusedDispatcher->isValid(mHeadSize, S))
{
fusedDispatcher->setup(S, B, mHeadSize);
}
else
{
unfusedDispatcher->setup(S, B, mHeadSize);
}
mS = S;
mB = B;
}
}
size_t QKVToContextPluginDynamicLegacy::getWorkspaceSize(PluginTensorDesc const* /*inputs*/, int32_t /*nbInputs*/,
PluginTensorDesc const* /*outputs*/, int32_t /*nbOutputs*/) const noexcept
{
// only unfused kernel need workspace, and we need larger workspace for larger sequence length
// we have already setup unfusedDispatcher with max sequence in configurePlugin
// if unfusedDispatcher is not initialized in configurePlugin
PLUGIN_ASSERT(unfusedDispatcher.get());
return unfusedDispatcher->getWorkspaceSize();
}
// IPluginV2Ext Methods
DataType QKVToContextPluginDynamicLegacy::getOutputDataType(
int32_t index, nvinfer1::DataType const* inputTypes, int32_t /*nbInputs*/) const noexcept
{
PLUGIN_ASSERT(index == 0);
PLUGIN_ASSERT(
inputTypes[0] == DataType::kFLOAT || inputTypes[0] == DataType::kHALF || inputTypes[0] == DataType::kINT8);
return inputTypes[0];
}
void QKVToContextPluginDynamicLegacy::attachToContext(
cudnnContext* cudnn, cublasContext* cublas, nvinfer1::IGpuAllocator* allocator) noexcept
{
try
{
mCublasWrapper = createPluginCublasWrapper(allocator);
mCublas = mCublasWrapper->getCublasHandle();
PLUGIN_VALIDATE(mCublas != nullptr);
}
catch (std::exception const& e)
{
caughtError(e);
}
}
// IPluginV2 Methods
char const* QKVToContextPluginDynamicLegacy::getPluginType() const noexcept
{
return kQKV_TO_CONTEXT_PLUGIN_NAME;
}
char const* QKVToContextPluginDynamicLegacy::getPluginVersion() const noexcept
{
return kQKV_TO_CONTEXT_PLUGIN_LEGACY_VERSION;
}
int32_t QKVToContextPluginDynamicLegacy::getNbOutputs() const noexcept
{
return 1;
}
int32_t QKVToContextPluginDynamicLegacy::initialize() noexcept
{
return 0;
}
void QKVToContextPluginDynamicLegacy::terminate() noexcept {}
size_t QKVToContextPluginDynamicLegacy::getSerializationSize() const noexcept
{
PLUGIN_ASSERT(unfusedDispatcher.get());
return sizeof(mNumHeads) + sizeof(mHeadSize) + sizeof(DataType) + sizeof(mHasImask) + sizeof(mHiddenSize)
+ sizeof(mSM) + sizeof(mS) + sizeof(mB) + sizeof(mDqProbs) + sizeof(int32_t)
+ unfusedDispatcher->getSerializationSize();
}
void QKVToContextPluginDynamicLegacy::serialize(void* buffer) const noexcept
{
serialize_value(&buffer, mType);
serialize_value(&buffer, mNumHeads);
serialize_value(&buffer, mHeadSize);
serialize_value(&buffer, mHasImask);
serialize_value(&buffer, mHiddenSize);
serialize_value(&buffer, mSM);
serialize_value(&buffer, mS);
serialize_value(&buffer, mB);
serialize_value(&buffer, mDqProbs);
if (unfusedDispatcher.get() && unfusedDispatcher->getWorkspaceSize())
{
int32_t hasUnfusedRunner = 1;
serialize_value(&buffer, hasUnfusedRunner);
unfusedDispatcher->serialize(buffer);
}
else
{
int32_t hasUnfusedRunner = 0;
serialize_value(&buffer, hasUnfusedRunner);
}
}
void QKVToContextPluginDynamicLegacy::destroy() noexcept
{
delete this;
}
void QKVToContextPluginDynamicLegacy::setPluginNamespace(char const* libNamespace) noexcept
{
mNamespace = libNamespace;
}
char const* QKVToContextPluginDynamicLegacy::getPluginNamespace() const noexcept
{
return mNamespace.c_str();
}
int32_t QKVToContextPluginDynamicLegacy::enqueue(PluginTensorDesc const* inputDesc, PluginTensorDesc const* outputDesc,
void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept
{
PLUGIN_VALIDATE(inputDesc != nullptr && outputDesc != nullptr && inputs != nullptr && outputs != nullptr);
PLUGIN_ASSERT(mS == inputDesc->dims.d[SDIM]);
PLUGIN_ASSERT(mB == inputDesc->dims.d[BDIM]);
try
{
void const* const maskPtr = mHasImask ? inputs[1] : nullptr;
if (mHasImask && fusedDispatcher.get() && fusedDispatcher->isValid(mHeadSize, inputDesc->dims.d[SDIM]))
{
fusedDispatcher->run(
inputDesc[0], outputDesc[0], inputs[0], maskPtr, outputs[0], workspace, stream, mCublas);
}
else
{
PLUGIN_VALIDATE(unfusedDispatcher.get(), "The Unfused MHARunner is uninitialized, no MHARunner available!");
PLUGIN_VALIDATE(mType != DataType::kINT8, "The Unfused MHARunner does not support INT8!");
unfusedDispatcher->run(
inputDesc[0], outputDesc[0], inputs[0], maskPtr, outputs[0], workspace, stream, mCublas);
}
}
catch (std::exception const& e)
{
caughtError(e);
return -1;
}
return 0;
}
QKVToContextPluginDynamicLegacyCreator::QKVToContextPluginDynamicLegacyCreator()
{
mPluginAttributes.emplace_back(PluginField("type_id", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("hidden_size", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("num_heads", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("has_mask", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("dq_probs", nullptr, PluginFieldType::kFLOAT32, 1));
mFC.nbFields = mPluginAttributes.size();
mFC.fields = mPluginAttributes.data();
}
char const* QKVToContextPluginDynamicLegacyCreator::getPluginName() const noexcept
{
return kQKV_TO_CONTEXT_PLUGIN_NAME;
}
char const* QKVToContextPluginDynamicLegacyCreator::getPluginVersion() const noexcept
{
return kQKV_TO_CONTEXT_PLUGIN_LEGACY_VERSION;
}
PluginFieldCollection const* QKVToContextPluginDynamicLegacyCreator::getFieldNames() noexcept
{
return &mFC;
}
IPluginV2* QKVToContextPluginDynamicLegacyCreator::createPlugin(
char const* name, PluginFieldCollection const* fc) noexcept
{
try
{
BERT_DEBUG_MSG("Creating QKV2ContextPlugin...");
PLUGIN_VALIDATE(fc != nullptr);
int32_t hiddenSize = 0;
// Since numHeads must always exist or validateRequiredAttributes will fail,
// we can set numHeads to -1 so that static analysis tools don't warn about
// a division by zero in QKVToContextPluginDynamicLegacy constructor.
int32_t numHeads{-1};
bool hasMask = false;
int32_t typeId = -1;
float dqProbs = -1;
PLUGIN_VALIDATE(fc->fields != nullptr);
plugin::validateRequiredAttributesExist({"type_id", "hidden_size", "num_heads", "has_mask"}, fc);
for (int32_t i = 0; i < fc->nbFields; i++)
{
PLUGIN_VALIDATE(fc->fields[i].name != nullptr);
PLUGIN_VALIDATE(fc->fields[i].data != nullptr);
std::string field_name(fc->fields[i].name);
if (field_name.compare("type_id") == 0)
{
typeId = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(typeId >= 0 && typeId <= 2, ("QKV: Invalid TypeId " + std::to_string(typeId)).c_str());
BERT_DEBUG_VALUE("Building typeId: ", typeId);
}
if (field_name.compare("hidden_size") == 0)
{
hiddenSize = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(hiddenSize > 0, ("QKV: Invalid hiddenSize " + std::to_string(hiddenSize)).c_str());
BERT_DEBUG_VALUE("Building hiddenSize: ", hiddenSize);
}
if (field_name.compare("num_heads") == 0)
{
numHeads = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(numHeads > 0, ("QKV: Invalid numHeads " + std::to_string(numHeads)).c_str());
BERT_DEBUG_VALUE("Building numHeads: ", numHeads);
}
if (field_name.compare("has_mask") == 0)
{
auto hasMaskValue = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(hasMaskValue == 0 || hasMaskValue == 1,
("QKV: Invalid hasMask " + std::to_string(hasMaskValue)).c_str());
hasMask = static_cast<bool>(hasMaskValue);
BERT_DEBUG_VALUE("Building hasMask: ", hasMask);
}
if (field_name.compare("dq_probs") == 0)
{
dqProbs = *static_cast<float const*>(fc->fields[i].data);
PLUGIN_VALIDATE(dqProbs > 0.0F, ("QKV: Invalid dqProbs " + std::to_string(dqProbs)).c_str());
BERT_DEBUG_VALUE("Building dqProbs: ", dqProbs);
}
}
BERT_DEBUG_MSG("Building the Plugin...");
auto type = static_cast<DataType>(typeId);
if (type == DataType::kINT8 && dqProbs < 0)
{
BERT_DEBUG_MSG("Using default scale factor");
dqProbs = 1.F / 127.F;
}
auto* p = new QKVToContextPluginDynamicLegacy(name, type, hiddenSize, numHeads, dqProbs, hasMask);
return p;
}
catch (std::exception const& e)
{
caughtError(e);
}
return nullptr;
}
IPluginV2* QKVToContextPluginDynamicLegacyCreator::deserializePlugin(
char const* name, void const* serialData, size_t serialLength) noexcept
{
// This object will be deleted when the network is destroyed, which will
// call QKVToContextPluginDynamicLegacy::destroy()
return new QKVToContextPluginDynamicLegacy(name, serialData, serialLength);
}
void QKVToContextPluginDynamicLegacyCreator::setPluginNamespace(char const* libNamespace) noexcept
{
mNamespace = libNamespace;
}
char const* QKVToContextPluginDynamicLegacyCreator::getPluginNamespace() const noexcept
{
return mNamespace.c_str();
}
QKVToContextVarSeqlenPluginLegacy::QKVToContextVarSeqlenPluginLegacy(std::string const name, DataType const type,
int32_t const hiddenSize, int32_t const numHeads, float const dqProbs, bool hasImask, bool varSeqlen,
bool useInt8ScaleMax)
: mLayerName(name)
, mS(0)
, mB(0)
, mHeadSize(hiddenSize / numHeads)
, mHiddenSize(hiddenSize)
, mNumHeads(numHeads)
, mHasImask(hasImask)
, mType(type)
, mDqProbs(dqProbs)
, mHdim(HDIM)
, mUseVarSeqlen(varSeqlen)
, mUseInt8ScaleMax(useInt8ScaleMax)
{
mSM = getSmVersion();
if (varSeqlen)
{
// variable sequence length is only supported with the fused MHA kernels
// we should not override mS!
bool isSMSupported = elem(mSM, {kSM_75, kSM_80, kSM_86, kSM_87, kSM_89, kSM_90, kSM_100, kSM_120});
PLUGIN_ASSERT(isSMSupported && (type == DataType::kINT8 || type == DataType::kHALF)
&& "requesting maxSeqlen not compatible with GPU arch");
// the layout changes: SxB will be a combined \sum_i s_i and hdim will be the 2nd dimension instead of the third
mHdim = 1;
}
}
QKVToContextVarSeqlenPluginLegacy::QKVToContextVarSeqlenPluginLegacy(
std::string const name, void const* data, size_t length)
: mLayerName(name)
{
BERT_DEBUG_MSG("QKV Deser Start");
deserialize_value(&data, &length, &mType);
deserialize_value(&data, &length, &mNumHeads);
deserialize_value(&data, &length, &mHeadSize);
deserialize_value(&data, &length, &mHasImask);
deserialize_value(&data, &length, &mHiddenSize);
deserialize_value(&data, &length, &mSM);
deserialize_value(&data, &length, &mS);
deserialize_value(&data, &length, &mB);
deserialize_value(&data, &length, &mDqProbs);
deserialize_value(&data, &length, &mUseVarSeqlen);
deserialize_value(&data, &length, &mHdim);
deserialize_value(&data, &length, &mUseInt8ScaleMax);
createMHARunner();
mDispatcher->deserialize(data, length);
BERT_DEBUG_MSG("QKV Deser done");
}
void QKVToContextVarSeqlenPluginLegacy::createMHARunner()
{
if (mDispatcher.get())
{
return;
}
if (mUseVarSeqlen)
{
PLUGIN_ASSERT(mHeadSize <= 64);
{
if (mHeadSize != 64)
{
mPatcher.reset(new QkvPaddingRunner(mType));
}
if (mType == DataType::kHALF)
{
mDispatcher.reset(new FusedMHARunnerFP16v2(mNumHeads, mSM));
}
else if (mType == DataType::kINT8)
{
mDispatcher.reset(new FusedMHARunnerInt8v2(mNumHeads, mSM, mDqProbs, mUseInt8ScaleMax));
}
}
}
else
{
PLUGIN_ASSERT(mType != DataType::kINT8);
mDispatcher.reset(new UnfusedMHARunner(mType, mNumHeads, mSM));
}
}
// IPluginV2DynamicExt Methods
nvinfer1::IPluginV2DynamicExt* QKVToContextVarSeqlenPluginLegacy::clone() const noexcept
{
BERT_DEBUG_MSG("QKV Clone");
QKVToContextVarSeqlenPluginLegacy* ret = nullptr;
if (mDispatcher.get())
{
std::vector<char> buff;
buff.resize(getSerializationSize());
serialize(buff.data());
ret = new QKVToContextVarSeqlenPluginLegacy(mLayerName, buff.data(), buff.size());
}
else
{
ret = new QKVToContextVarSeqlenPluginLegacy(
mLayerName, mType, mHiddenSize, mNumHeads, mDqProbs, mHasImask, mUseVarSeqlen, mUseInt8ScaleMax);
}
ret->setPluginNamespace(mNamespace.c_str());
BERT_DEBUG_MSG("QKV Clone done");
return ret;
}
DimsExprs QKVToContextVarSeqlenPluginLegacy::getOutputDimensions(
int32_t outputIndex, DimsExprs const* inputs, int32_t /*nbInputs*/, IExprBuilder& exprBuilder) noexcept
{
// Input is BxSx3*N*H, output should be BxSxN*H
PLUGIN_ASSERT(outputIndex == 0);
// Copy over everything
DimsExprs output(inputs[kIIDX]);
// Divide last dim by three
auto const* three = exprBuilder.constant(3);
output.d[mHdim] = exprBuilder.operation(DimensionOperation::kFLOOR_DIV, *inputs[kIIDX].d[mHdim], *three);
return output;
}
bool QKVToContextVarSeqlenPluginLegacy::supportsFormatCombination(
int32_t pos, PluginTensorDesc const* inOut, int32_t nbInputs, int32_t nbOutputs) noexcept
{
// we only support variable sequence and int8 IO in fused mha runner, and we only support fused mha runner on
// Turing, Ampere, Hopper and Blackwell
bool const hasV2Kernels = elem(mSM, {kSM_75, kSM_80, kSM_86, kSM_87, kSM_89, kSM_90, kSM_100, kSM_120});
PLUGIN_ASSERT((mType != DataType::kINT8 || hasV2Kernels)
&& "INT8 IO is only supported on Xavier, Turing, Ampere, Hopper and Blackwell!");
PLUGIN_ASSERT((!mUseVarSeqlen || hasV2Kernels)
&& "Variable sequence is only supported on Xavier, Turing, Ampere, Hopper and Blackwell!");
PLUGIN_ASSERT(pos >= 0);
PLUGIN_ASSERT(pos < 2 + mHasImask + 2 * mUseVarSeqlen);
PLUGIN_ASSERT(nbInputs == 1 + mHasImask + 2 * mUseVarSeqlen);
PLUGIN_ASSERT(nbOutputs == 1);
auto const* in = inOut;
auto const* out = inOut + nbInputs;
if (mUseVarSeqlen)
{
PLUGIN_ASSERT((mType == DataType::kHALF || mType == DataType::kINT8)
&& "Conditions for variable seqlen support not fulfilled");
// qkv, mask, cu_seqlens, dummy
PLUGIN_ASSERT(nbInputs == 4 && "for varseqlen, expected 4 inputs");
}
auto const inDims = in->dims;
auto const outDims = out->dims;
auto supportedFormat = TensorFormat::kLINEAR;
if (mType == DataType::kINT8)
{
supportedFormat = (inDims.d[mHdim] % 32U == 0) ? TensorFormat::kCHW32 : TensorFormat::kCHW4;
}
int32_t supportedNbDims = 5;
if (mUseVarSeqlen)
{
supportedNbDims = 4;
}
bool supportedHdim = (pos == 0) ? (inDims.d[mHdim] % 3U == 0) : (inDims.d[mHdim] / 3 == outDims.d[mHdim]);
if (pos == 0 || pos == nbInputs)
{ // check input and output
auto const& desc = inOut[pos];
return (desc.type == mType) && // check type
(desc.format == supportedFormat) && // check format
(desc.dims.nbDims == supportedNbDims) && // check dims:
(supportedHdim) && // - hidden dims multiple of 3 for qkv
(desc.dims.d[mHdim + 1] == 1) && // - dummy 1 or h
(desc.dims.d[mHdim + 2] == 1) // - dummy 1 or w
;
}
PLUGIN_ASSERT(mHasImask);
if (pos == 1)
{ // must be input mask
auto const* mask = &inOut[pos];
if (mUseVarSeqlen)
{
// dummy input
return true;
}
return mask->format == TensorFormat::kLINEAR && (mask->type == DataType::kINT32) && // precision
(mask->dims.nbDims == 1) // num dims
;
}
PLUGIN_ASSERT(mUseVarSeqlen);
if (pos == 2)
{ // must be cuSeqlens
// cuSeqlens is a int32_t array of size B+1
auto const* seqlens = &inOut[pos];
return (seqlens->type == DataType::kINT32) && (seqlens->format == TensorFormat::kLINEAR);
}
if (pos == 3)
{
// this is the dummy input
return inOut[pos].dims.nbDims == 1;
}
return false;
}
void QKVToContextVarSeqlenPluginLegacy::configurePlugin(
DynamicPluginTensorDesc const* in, int32_t nbInputs, DynamicPluginTensorDesc const* out, int32_t nbOutputs) noexcept
{
PLUGIN_ASSERT(nbInputs == 1 + mHasImask + 2 * mUseVarSeqlen);
PLUGIN_ASSERT(nbOutputs == 1);
PluginTensorDesc const& inDesc = in[kIIDX].desc;
TRT_UNUSED inDesc;
PluginTensorDesc const& outDesc = out->desc;
TRT_UNUSED outDesc;
PLUGIN_ASSERT(mType == inDesc.type);
PLUGIN_ASSERT(mType == outDesc.type);
if (!mUseVarSeqlen)
{
PLUGIN_ASSERT(inDesc.dims.d[BDIM] == outDesc.dims.d[BDIM]);
PLUGIN_ASSERT(inDesc.dims.d[SDIM] == outDesc.dims.d[SDIM]);
PLUGIN_ASSERT(inDesc.dims.d[mHdim] == 3 * outDesc.dims.d[mHdim]);
if (mHasImask)
{
PluginTensorDesc const& maskDesc = in[kMIDX].desc;
TRT_UNUSED maskDesc;
PLUGIN_ASSERT(maskDesc.dims.d[0] == inDesc.dims.d[BDIM]);
}
int32_t const S = inDesc.dims.d[SDIM] <= 0 ? in->max.d[SDIM] : inDesc.dims.d[SDIM];
int32_t const B = inDesc.dims.d[BDIM] <= 0 ? in->max.d[BDIM] : inDesc.dims.d[BDIM];
if (S != mS || B != mB)
{
BERT_DEBUG_MSG("setting up MHA runner for single sequence length");
createMHARunner();
this->mDispatcher->setup(S, B, mHeadSize);
mS = S;
mB = B;
}
}
else
{
BERT_DEBUG_MSG("setting up MHA runner for variable sequence length");
createMHARunner();
// need to initialize S and B with somewhat useful values, they will be reset at enqueue for the actual
// batchsize
this->mDispatcher->setup(256, 1, mHeadSize);
}
}
size_t QKVToContextVarSeqlenPluginLegacy::getWorkspaceSize(PluginTensorDesc const* inputs, int32_t /* nbInputs */,
PluginTensorDesc const* /* outputs */, int32_t /* nbOutputs */) const noexcept
{
size_t paddingWorkpaceSize = mPatcher ? mPatcher->getWorkspaceSize(inputs[0].dims.d[0], mNumHeads) : 0;
return mDispatcher->getWorkspaceSize() + paddingWorkpaceSize;
}
// IPluginV2Ext Methods
DataType QKVToContextVarSeqlenPluginLegacy::getOutputDataType(
int32_t index, nvinfer1::DataType const* inputTypes, int32_t /*nbInputs*/) const noexcept
{
PLUGIN_ASSERT(index == 0);
PLUGIN_ASSERT(
inputTypes[0] == DataType::kFLOAT || inputTypes[0] == DataType::kHALF || inputTypes[0] == DataType::kINT8);
return inputTypes[0];
}
void QKVToContextVarSeqlenPluginLegacy::attachToContext(
cudnnContext* cudnn, cublasContext* cublas, nvinfer1::IGpuAllocator* allocator) noexcept
{
try
{
mCublasWrapper = createPluginCublasWrapper(allocator);
mCublas = mCublasWrapper->getCublasHandle();
PLUGIN_VALIDATE(mCublas != nullptr);
}
catch (std::exception const& e)
{
caughtError(e);
}
}
// IPluginV2 Methods
char const* QKVToContextVarSeqlenPluginLegacy::getPluginType() const noexcept
{
return kQKV_TO_CONTEXT_PLUGIN_NAME;
}
char const* QKVToContextVarSeqlenPluginLegacy::getPluginVersion() const noexcept
{
return kQKV_TO_CONTEXT_VAR_SEQLEN_LEGACY_PLUGIN_VERSION;
}
int32_t QKVToContextVarSeqlenPluginLegacy::getNbOutputs() const noexcept
{
return 1;
}
int32_t QKVToContextVarSeqlenPluginLegacy::initialize() noexcept
{
return 0;
}
void QKVToContextVarSeqlenPluginLegacy::terminate() noexcept {}
size_t QKVToContextVarSeqlenPluginLegacy::getSerializationSize() const noexcept
{
return sizeof(mNumHeads) + sizeof(mHeadSize) + sizeof(DataType) + sizeof(mHasImask) + sizeof(mHiddenSize)
+ sizeof(mSM) + sizeof(mS) + sizeof(mB) + sizeof(mDqProbs) + mDispatcher->getSerializationSize()
+ sizeof(mUseVarSeqlen) + sizeof(mHdim) + sizeof(mUseInt8ScaleMax);
}
void QKVToContextVarSeqlenPluginLegacy::serialize(void* buffer) const noexcept
{
serialize_value(&buffer, mType);
serialize_value(&buffer, mNumHeads);
serialize_value(&buffer, mHeadSize);
serialize_value(&buffer, mHasImask);
serialize_value(&buffer, mHiddenSize);
serialize_value(&buffer, mSM);
serialize_value(&buffer, mS);
serialize_value(&buffer, mB);
serialize_value(&buffer, mDqProbs);
serialize_value(&buffer, mUseVarSeqlen);
serialize_value(&buffer, mHdim);
serialize_value(&buffer, mUseInt8ScaleMax);
mDispatcher->serialize(buffer);
}
void QKVToContextVarSeqlenPluginLegacy::destroy() noexcept
{
delete this;
}
void QKVToContextVarSeqlenPluginLegacy::setPluginNamespace(char const* libNamespace) noexcept
{
mNamespace = libNamespace;
}
char const* QKVToContextVarSeqlenPluginLegacy::getPluginNamespace() const noexcept
{
return mNamespace.c_str();
}
int32_t QKVToContextVarSeqlenPluginLegacy::enqueue(nvinfer1::PluginTensorDesc const* inputDesc,
nvinfer1::PluginTensorDesc const* outputDesc, void const* const* inputs, void* const* outputs, void* workspace,
cudaStream_t stream) noexcept
{
PLUGIN_VALIDATE(inputDesc != nullptr && outputDesc != nullptr && inputs != nullptr && outputs != nullptr);
if (mUseVarSeqlen)
{
int32_t const B = inputDesc[2].dims.d[0] - 1;
int32_t const maxS = inputDesc[3].dims.d[0];
PLUGIN_ASSERT((maxS <= 512)
&& "No implementation for variable sequence length multi-head attention plugin with sequence > 512.");
int32_t S = 512;
if (DataType::kHALF == mType && maxS <= 64)
{
S = 64;
}
else if (DataType::kHALF == mType && maxS <= 96)
{
S = 96;
}
else if (maxS <= 128)
{
S = 128;
}
else if (maxS <= 192)
{
S = 192;
if (mType == DataType::kHALF)
{
S = 256;
}
}
else if (maxS <= 256)
{
S = 256;
}
else if (maxS <= 384)
{
S = 384;
}
auto runV2Kernel = [this, &S, &B, &workspace, &inputDesc, &outputDesc, &stream, &inputs, &outputs](
MHARunner* dispatcher, QkvPaddingRunner* patcher, int32_t padSize) {
PLUGIN_ASSERT(dispatcher);
// Validate that we can padding to the dispatch required head size also there is kernel exist for this
// sequence length.
if (mHeadSize > padSize || !dispatcher->isValid(padSize, S))
{
return false;
}
dispatcher->setup(S, B, padSize);
// Need pad and unpad to run the V2 kernel.
if (mHeadSize < padSize)
{
PLUGIN_ASSERT(patcher);
PLUGIN_ASSERT(padSize <= patcher->getMaxPaddingHeadSize());
auto sumSeqLen = inputDesc[0].dims.d[0];
auto paddingWorkspace = patcher->get16BytesAlignedPointer(workspace, dispatcher->getWorkspaceSize());
auto ret = mPatcher->pad(inputs[0], paddingWorkspace, sumSeqLen, mNumHeads, mHeadSize, padSize, stream);
if (ret != cudaSuccess)
{
return false;
}
MhaRunParameter paddingArgs = patcher->patchMhaArgs(
inputDesc, outputDesc, inputs, outputs, paddingWorkspace, sumSeqLen, mNumHeads, padSize);
try
{
dispatcher->run(paddingArgs.inputDesc, paddingArgs.outputDesc, paddingArgs.inputs,
paddingArgs.outputs, workspace, stream, mCublas);
}
catch (std::exception const& e)
{
caughtError(e);
return false;
}
ret = patcher->unpad(
paddingArgs.outputs[0], outputs[0], sumSeqLen, mNumHeads, mHeadSize, padSize, stream);
return ret == cudaSuccess;
}
else
{
// No pad/unpad is needed.
try
{
dispatcher->run(inputDesc, outputDesc, inputs, outputs, workspace, stream, mCublas);
}
catch (std::exception const& e)
{
caughtError(e);
return false;
}
return true;
}
};
// Try pad head size to 32 first, if it failed, then try to pad head size to 64.
if (!runV2Kernel(mDispatcher.get(), mPatcher.get(), 32) && !runV2Kernel(mDispatcher.get(), mPatcher.get(), 64))
{
return false;
}
return cudaGetLastError();
}
PLUGIN_ASSERT(mS == inputDesc->dims.d[SDIM]);
PLUGIN_ASSERT(mB == inputDesc->dims.d[BDIM]);
void const* maskPtr = mHasImask ? inputs[1] : nullptr;
mDispatcher->run(inputDesc[0], outputDesc[0], inputs[0], maskPtr, outputs[0], workspace, stream, mCublas);
return cudaGetLastError();
}
QKVToContextVarSeqlenPluginLegacyCreator::QKVToContextVarSeqlenPluginLegacyCreator()
{
mPluginAttributes.clear();
mPluginAttributes.emplace_back(PluginField("type_id", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("hidden_size", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("num_heads", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("has_mask", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("dq_probs", nullptr, PluginFieldType::kFLOAT32, 1));
mPluginAttributes.emplace_back(PluginField("var_seqlen", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("use_int8_scale_max", nullptr, PluginFieldType::kINT32, 1));
mFC.nbFields = mPluginAttributes.size();
mFC.fields = mPluginAttributes.data();
}
char const* QKVToContextVarSeqlenPluginLegacyCreator::getPluginName() const noexcept
{
return kQKV_TO_CONTEXT_PLUGIN_NAME;
}
char const* QKVToContextVarSeqlenPluginLegacyCreator::getPluginVersion() const noexcept
{
return kQKV_TO_CONTEXT_VAR_SEQLEN_LEGACY_PLUGIN_VERSION;
}
PluginFieldCollection const* QKVToContextVarSeqlenPluginLegacyCreator::getFieldNames() noexcept
{
return &mFC;
}
IPluginV2* QKVToContextVarSeqlenPluginLegacyCreator::createPlugin(
char const* name, PluginFieldCollection const* fc) noexcept
{
BERT_DEBUG_MSG("Creating QKV2ContextPlugin...");
int32_t hiddenSize = 0;
// Since numHeads must always exist or validateRequiredAttributes will fail,
// we can set numHeads to -1 so that static analysis tools don't warn about
// a division by zero in QKVToContextVarSeqelnPlugin constructor.
int32_t numHeads{-1};
bool hasMask = false;
int32_t typeId = -1;
int32_t varSeqlen = 0;
float dqProbs = -1;
int32_t useInt8ScaleMax{-1};
plugin::validateRequiredAttributesExist({"type_id", "hidden_size", "num_heads", "has_mask"}, fc);
for (int32_t i = 0; i < fc->nbFields; i++)
{
std::string field_name(fc->fields[i].name);
if (field_name.compare("type_id") == 0)
{
typeId = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(typeId >= 0 && typeId <= 2, ("QKV: Invalid TypeId " + std::to_string(typeId)).c_str());
BERT_DEBUG_VALUE("Building typeId: ", typeId);
}
if (field_name.compare("hidden_size") == 0)
{
hiddenSize = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(hiddenSize > 0, ("QKV: Invalid hiddenSize " + std::to_string(hiddenSize)).c_str());
BERT_DEBUG_VALUE("Building hiddenSize: ", hiddenSize);
}
if (field_name.compare("num_heads") == 0)
{
numHeads = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(numHeads > 0, ("QKV: Invalid numHeads " + std::to_string(numHeads)).c_str());
BERT_DEBUG_VALUE("Building numHeads: ", numHeads);
}
if (field_name.compare("has_mask") == 0)
{
hasMask = *static_cast<bool const*>(fc->fields[i].data);
PLUGIN_VALIDATE(hasMask == 0 || hasMask == 1, ("QKV: Invalid hasMask " + std::to_string(hasMask)).c_str());
BERT_DEBUG_VALUE("Building hasMask: ", hasMask);
}
if (field_name.compare("dq_probs") == 0)
{
dqProbs = *static_cast<float const*>(fc->fields[i].data);
PLUGIN_VALIDATE(dqProbs > 0.0F, ("QKV: Invalid dqProbs " + std::to_string(dqProbs)).c_str());
BERT_DEBUG_VALUE("Building dqProbs: ", dqProbs);
}
if (field_name.compare("var_seqlen") == 0)
{
varSeqlen = *static_cast<int32_t const*>(fc->fields[i].data);
BERT_DEBUG_VALUE("Building var_seqlen: ", varSeqlen);
}
if (field_name.compare("use_int8_scale_max") == 0)
{
useInt8ScaleMax = *static_cast<int32_t const*>(fc->fields[i].data);
PLUGIN_VALIDATE(useInt8ScaleMax == 0 || useInt8ScaleMax == 1,
("QKV: Invalid useInt8ScaleMax " + std::to_string(useInt8ScaleMax)).c_str());
BERT_DEBUG_VALUE("Building useInt8ScaleMax: ", useInt8ScaleMax);
}
}
if (useInt8ScaleMax < 0)
{
gLogInfo << "Using default for use_int8_scale_max: true" << std::endl;
useInt8ScaleMax = 1;
}
BERT_DEBUG_MSG("Building the Plugin...");
DataType type = static_cast<DataType>(typeId);
if (type == DataType::kINT8 && dqProbs < 0)
{
gLogInfo << "Using default scale factor\n";
dqProbs = 1.F / 127.F;
}
auto const useInt8ScaleMaxFlag = static_cast<bool>(useInt8ScaleMax);
QKVToContextVarSeqlenPluginLegacy* p = new QKVToContextVarSeqlenPluginLegacy(
name, type, hiddenSize, numHeads, dqProbs, hasMask, varSeqlen, useInt8ScaleMaxFlag);
return p;
}
IPluginV2* QKVToContextVarSeqlenPluginLegacyCreator::deserializePlugin(
char const* name, void const* serialData, size_t serialLength) noexcept
{
// This object will be deleted when the network is destroyed, which will
// call QKVToContextVarSeqlenPluginLegacy::destroy()
return new QKVToContextVarSeqlenPluginLegacy(name, serialData, serialLength);
}
void QKVToContextVarSeqlenPluginLegacyCreator::setPluginNamespace(char const* libNamespace) noexcept
{
mNamespace = libNamespace;
}
char const* QKVToContextVarSeqlenPluginLegacyCreator::getPluginNamespace() const noexcept
{
return mNamespace.c_str();
}
#endif // CUDA_VERSION >= 10010
|