Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Groverkss committed Jun 10, 2024
1 parent 50f8c5a commit cdc9f6b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ DiagnosedSilenceableFailure LinalgExt::ConvertToOnlineAttention::applyToOne(
transform::TransformState &state) {
SmallVector<Operation *> ops;
LinalgExt::convertToOnlineAttention(attentionOp, ops, rewriter);
llvm::append_range(results, ops);
for (Operation *op : ops) {
results.push_back(op);
}
return DiagnosedSilenceableFailure::success();
}

Expand Down

0 comments on commit cdc9f6b

Please sign in to comment.