Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/tensorrt_llm/batch_manager/runtimeBuffers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ void RuntimeBuffers::setAttentionPriorIdx(
}

// create a cpu buffer for scores to find max score in
SizeType32 searchLength = 5;
SizeType32 searchLength = 15;
auto const& manager = runtime.getBufferManager();
auto const& stream = runtime.getStream();
auto scoresHost = manager.cpu(ITensor::makeShape({searchLength}), scores->getDataType());
Expand Down
2 changes: 1 addition & 1 deletion tensorrt_llm/models/t5tts/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
}

COMPUTE_SCORES_FROM_LAYERS = [4,6,10]
APPLY_PRIOR_TO_LAYERS = [4,5,6,7,8,9,10,11]
APPLY_PRIOR_TO_LAYERS = [4,6,10]


class PositionwiseConvFF(Module):
Expand Down