mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
### Description Currently, ORT will fail a build when the flag DEBUG_GENERATION is set to 1 (used to debug BeamSearch and GreedySearch) in [console_dumper.h](3b63d85c25/onnxruntime/contrib_ops/cpu/utils/console_dumper.h (L12)) with the following error: `onnxruntime/onnxruntime/contrib_ops/cpu/transformers/logits_processor.h:270:15: error: ‘DumpScores’ was not declared in this scope` This is because it is defined in `logits_processor.cc`, and a debugging artifact was passed in an earlier PR where this function is called from `logits_processor.h` before it is defined [[link](3a2ab1963a/onnxruntime/contrib_ops/cpu/transformers/logits_processor.h (L270))]. Builds with the flag have been broken since that PR was merged. This PR moves DumpScores() definition from `logits_processor.cc` to `logits_processor.h` so that all debug statements can be used correctly in `logits_processor.cc` and `logits_processor.h` and build succeeds with this debug flag. --------- Co-authored-by: Peter McAughan <petermca@microsoft.com>
218 lines
8.1 KiB
C++
218 lines
8.1 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#include <memory>
|
|
#include <assert.h>
|
|
#include "core/common/narrow.h"
|
|
#include "core/common/safeint.h"
|
|
#include "core/common/span_utils.h"
|
|
#include "core/providers/cpu/math/softmax_shared.h"
|
|
#include "contrib_ops/cpu/transformers/logits_processor.h"
|
|
#include "contrib_ops/cpu/transformers/dump_tensor.h"
|
|
#include <vector>
|
|
#include <numeric>
|
|
#include <algorithm>
|
|
|
|
namespace onnxruntime {
|
|
namespace contrib {
|
|
namespace transformers {
|
|
|
|
// 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());
|
|
}
|
|
}
|
|
|
|
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_);
|
|
}
|
|
}
|
|
}
|
|
|
|
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.size() - prefix_length);
|
|
ORT_ENFORCE(prefix.size() == narrow<size_t>(prefix_length));
|
|
|
|
std::unordered_set<int32_t> blocked_word_ids;
|
|
for (int j = 0; j <= static_cast<int>(sequence.size()) - 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 || SpanEq(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();
|
|
}
|
|
}
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
template <typename T>
|
|
TemperatureLogitsProcessor<T>::TemperatureLogitsProcessor(float temperature) : temperature_(temperature) {
|
|
}
|
|
|
|
template <typename T>
|
|
void TemperatureLogitsProcessor<T>::Process(const ISequences* /*sequences*/,
|
|
NextTokenScores<T>& next_token_scores) {
|
|
if (temperature_ == 1.0f) {
|
|
return;
|
|
}
|
|
|
|
T* p = next_token_scores.scores.data();
|
|
for (size_t i = 0; i < next_token_scores.scores.size(); i++) {
|
|
*p /= temperature_;
|
|
++p;
|
|
}
|
|
}
|
|
|
|
template <typename T>
|
|
PresencePenaltyLogitsProcessor<T>::PresencePenaltyLogitsProcessor(const gsl::span<const int32_t>& presence_mask,
|
|
float presence_penalty)
|
|
: presence_mask_(presence_mask), presence_penalty_(presence_penalty) {
|
|
}
|
|
|
|
template <typename T>
|
|
void PresencePenaltyLogitsProcessor<T>::Process(const ISequences*,
|
|
NextTokenScores<T>& next_token_scores) {
|
|
if (presence_penalty_ == 0.0f) {
|
|
return;
|
|
}
|
|
|
|
assert(!presence_mask_.empty());
|
|
|
|
T* p = next_token_scores.scores.data();
|
|
for (size_t i = 0; i < next_token_scores.scores.size(); i++) {
|
|
*p -= presence_mask_[i] * presence_penalty_;
|
|
}
|
|
}
|
|
|
|
void LogitsProcessorList::Init(const BeamSearchParameters& parameters) {
|
|
LogitsProcessorInitImpl<BeamSearchParameters>(parameters);
|
|
}
|
|
|
|
void LogitsProcessorList::Init(const GreedySearchParameters& parameters) {
|
|
LogitsProcessorInitImpl<GreedySearchParameters>(parameters);
|
|
}
|
|
|
|
void LogitsProcessorList::Init(const SamplingParameters& parameters) {
|
|
LogitsProcessorInitImpl<SamplingParameters>(parameters);
|
|
}
|
|
|
|
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
|