Skip to content

Commit

Permalink
Fix parser code
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekkhandelwal1 committed Feb 17, 2025
1 parent 8275639 commit 35a43fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/Dialect/Torch/IR/TorchOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5973,6 +5973,10 @@ ParseResult OnnxVariantRotaryEmbeddingOp::parse(OpAsmParser &parser,
return failure();
}

// Parse results type list.
if (parser.parseArrowTypeList(result.types))
return failure();

return success();
}

Expand Down

0 comments on commit 35a43fc

Please sign in to comment.