onnxruntime/onnxruntime/contrib_ops/cpu/transformers/logits_processor.cc
Tianlei Wu def78a1b81
Support T5 in BeamSearch operator (#11450)
(1) Support T5 in BeamSearch operator, and add both CPU and CUDA implementation.
(2) Change BeamSearch op: rename encoder_decoder_init attribute to encoder, and add decoder_start_token_id attribute
(3) Update convert_to_onnx for T5 to use int32 instead of int64 inputs as default.
(4) Add more tests in best_beam_search.py
(5) fix ORT_ENFORCE of hypothesis_buffer_offset_
(6) Improve ONNX conversion:
   (a) Change encoder some dynamic axes to fixed dim value
   (b) add --separate_encoder_and_decoder_init
   (c) correct name t5-3B => t5-3b, t5-11B => t5-11b
   (d) Add --use_int32_inputs in convert t5 to onnx
   (e) Allow t5 beam search conversion in one step
2022-06-10 15:06:57 -07:00

238 lines
9 KiB
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include <memory>
#include <assert.h>
#include "core/common/safeint.h"
#include "contrib_ops/cpu/transformers/logits_processor.h"
#include "contrib_ops/cpu/transformers/dump_tensor.h"
namespace onnxruntime {
namespace contrib {
namespace transformers {
template <typename T>
gsl::span<T> NextTokenScores<T>::GetScores(int batch_beam_index) {
assert(batch_beam_index >= 0 && batch_beam_index < batch_beam_size);
return scores.subspan(static_cast<gsl::index>(batch_beam_index) * vocab_size, vocab_size);
}
template <typename T>
void NextTokenScores<T>::SetScore(int token_id, T score) {
assert(token_id >= 0 && token_id < vocab_size);
for (int i = 0; i < batch_beam_size; i++) {
scores[static_cast<gsl::index>(i) * vocab_size + token_id] = score;
}
}
#ifdef DEBUG_BEAM_SEARCH
template <typename T>
void DumpScores(const char* name, const NextTokenScores<T>& next_token_scores) {
std::cout << name << std::endl;
ORT_UNUSED_PARAMETER(next_token_scores);
}
#endif
// Interface for all scorers for beam search or beam sample.
template <typename T>
MinLengthLogitsProcessor<T>::MinLengthLogitsProcessor(int min_length, int eos_token_id)
: min_length_(min_length), eos_token_id_(eos_token_id) {}
template <typename T>
void MinLengthLogitsProcessor<T>::Process(const ISequences* sequences,
NextTokenScores<T>& next_token_scores) {
if (sequences->GetSequenceLength() < min_length_) {
next_token_scores.SetScore(eos_token_id_, std::numeric_limits<T>::lowest());
}
#ifdef DEBUG_BEAM_SEARCH
DumpScores("MinLengthLogitsProcessor", next_token_scores);
#endif
}
template <typename T>
RepetitionPenaltyLogitsProcessor<T>::RepetitionPenaltyLogitsProcessor(float penalty) : penalty_(penalty) {
}
template <typename T>
void RepetitionPenaltyLogitsProcessor<T>::Process(const ISequences* sequences,
NextTokenScores<T>& next_token_scores) {
const int batch_beam_size = next_token_scores.batch_beam_size;
for (int i = 0; i < batch_beam_size; i++) {
gsl::span<T> beam_token_scores = next_token_scores.GetScores(i);
gsl::span<const int32_t> sequence = sequences->GetSequence(i);
// Find unique word IDs in sequence.
std::unordered_set<int32_t> unique_word_ids;
for (const auto& word_id : sequence) {
unique_word_ids.insert(word_id);
}
for (const int32_t word_id : unique_word_ids) {
T score = beam_token_scores[word_id];
// If score < 0, then repetition penalty > 1.0 has to multiplied to reduce the previous token probability,
// This assumes that scores are either positive (like ctrl) or negative (like GPT-2), but not a mixture.
beam_token_scores[word_id] = (score < 0 ? score * penalty_ : score / penalty_);
}
}
#ifdef DEBUG_BEAM_SEARCH
DumpScores("RepetitionPenaltyLogitsProcessor", next_token_scores);
#endif
}
template <typename T>
NoRepeatNGramLogitsProcessor<T>::NoRepeatNGramLogitsProcessor(int ngram_size) : ngram_size_(ngram_size) {
}
template <typename T>
void NoRepeatNGramLogitsProcessor<T>::Process(const ISequences* sequences,
NextTokenScores<T>& next_token_scores) {
if (ngram_size_ == 0 || ngram_size_ > sequences->GetSequenceLength()) {
return;
}
const gsl::index prefix_length = static_cast<gsl::index>(ngram_size_) - 1;
int batch_beam_size = next_token_scores.batch_beam_size;
for (int i = 0; i < batch_beam_size; i++) {
gsl::span<T> beam_token_scores = next_token_scores.GetScores(i);
gsl::span<const int32_t> sequence = sequences->GetSequence(i);
gsl::span<const int32_t> prefix = sequence.subspan(sequence.length() - prefix_length);
ORT_ENFORCE(prefix.length() == prefix_length);
std::unordered_set<int32_t> blocked_word_ids;
for (int j = 0; j <= static_cast<int>(sequence.length()) - ngram_size_; j++) {
// Here we use naive algorithm for matching. The complexity is O(batch_beam_size * ngram_size * sequence_length)
// TODO(tianleiwu): build N-Gram index (hash table with prefix of length NGram - 1 as key,
// and list of last word of NGram as value) for fast matching.
if (ngram_size_ == 1 || prefix == sequence.subspan(j, prefix_length)) {
blocked_word_ids.insert(sequence[static_cast<gsl::index>(j) + prefix_length]);
}
}
for (const int32_t word_id : blocked_word_ids) {
beam_token_scores[word_id] = std::numeric_limits<T>::lowest();
}
}
#ifdef DEBUG_BEAM_SEARCH
DumpScores("NoRepeatNGramLogitsProcessor", next_token_scores);
#endif
}
template <typename T>
VocabMaskLogitsProcessor<T>::VocabMaskLogitsProcessor(const gsl::span<const int32_t>& vocab_mask)
: vocab_mask_(vocab_mask) {
}
template <typename T>
void VocabMaskLogitsProcessor<T>::Process(const ISequences* /*sequences*/,
NextTokenScores<T>& next_token_scores) {
assert(!vocab_mask_.empty());
// Process vocabulary mask and set tokens with mask value 0 to -inf.
T* p = next_token_scores.scores.data();
// next_token_scores shape (batch_size * num_beams, vocab_size)
// vocab_mask shape (vocab_size).
for (int i = 0; i < next_token_scores.batch_beam_size; i++) {
for (int j = 0; j < next_token_scores.vocab_size; j++, p++) {
if (vocab_mask_[j] == 0) {
*p = std::numeric_limits<T>::lowest();
}
}
}
#ifdef DEBUG_BEAM_SEARCH
DumpScores("VocabMaskLogitsProcessor", next_token_scores);
#endif
}
template <typename T>
PrefixVocabMaskLogitsProcessor<T>::PrefixVocabMaskLogitsProcessor(const gsl::span<const int32_t>& prefix_vocab_mask,
int batch_size)
: prefix_vocab_mask_(prefix_vocab_mask),
batch_size_(batch_size) {
}
template <typename T>
void PrefixVocabMaskLogitsProcessor<T>::Process(const ISequences* /*sequences*/,
NextTokenScores<T>& next_token_scores) {
assert(!prefix_vocab_mask_.empty());
// next_token_scores shape (batch_size * num_beams, vocab_size)
int num_beams = next_token_scores.batch_beam_size / batch_size_;
assert(num_beams * batch_size_ == next_token_scores.batch_beam_size);
// Process prefix vocabulary mask and set tokens with mask value 0 to -inf.
// prefix_vocab_mask shape (batch_size, vocab_size).
T* p = next_token_scores.scores.data();
for (int i = 0; i < batch_size_; i++) {
size_t prefix_vocab_mask_offset = SafeInt<size_t>(i) * next_token_scores.vocab_size;
for (int j = 0; j < num_beams; j++) {
for (int k = 0; k < next_token_scores.vocab_size; k++, p++) {
if (prefix_vocab_mask_[prefix_vocab_mask_offset + static_cast<size_t>(k)] == 0) {
*p = std::numeric_limits<T>::lowest();
}
}
}
}
#ifdef DEBUG_BEAM_SEARCH
DumpScores("PrefixVocabMaskLogitsProcessor", next_token_scores);
#endif
}
void LogitsProcessorList::Init(const BeamSearchParameters& parameters) {
processor_list_.clear();
if (parameters.repetition_penalty != 1.0f) { // 1.0 means no penalty
repetition_penalty_processor_ = std::make_unique<RepetitionPenaltyLogitsProcessor<float>>(
parameters.repetition_penalty);
processor_list_.push_back(repetition_penalty_processor_.get());
}
if (parameters.no_repeat_ngram_size > 0) {
no_repeat_ngram_processor_ = std::make_unique<NoRepeatNGramLogitsProcessor<float>>(parameters.no_repeat_ngram_size);
processor_list_.push_back(no_repeat_ngram_processor_.get());
}
if (!parameters.vocab_mask.empty()) {
vocab_mask_processor_ = std::make_unique<VocabMaskLogitsProcessor<float>>(parameters.vocab_mask);
processor_list_.push_back(vocab_mask_processor_.get());
}
if (!parameters.prefix_vocab_mask.empty()) {
prefix_vocab_mask_processor_ = std::make_unique<PrefixVocabMaskLogitsProcessor<float>>(parameters.prefix_vocab_mask,
parameters.batch_size);
processor_list_.push_back(prefix_vocab_mask_processor_.get());
}
if (parameters.min_length > 0) {
min_length_processor_ = std::make_unique<MinLengthLogitsProcessor<float>>(parameters.min_length,
parameters.eos_token_id);
processor_list_.push_back(min_length_processor_.get());
}
batch_beam_size_ = parameters.BatchBeamSize();
vocab_size_ = parameters.vocab_size;
}
void LogitsProcessorList::Process(const ISequences* sequences,
gsl::span<float>& next_token_scores,
int step) {
NextTokenScores<float> input_scores = {next_token_scores, batch_beam_size_, vocab_size_};
for (size_t i = 0; i < processor_list_.size(); i++) {
// Prefix vocab mask is applied to first iteration only.
if (step > 1 && processor_list_[i] == prefix_vocab_mask_processor_.get()) {
continue;
}
processor_list_[i]->Process(sequences, input_scores);
}
}
} // namespace transformers
} // namespace contrib
} // namespace onnxruntime