We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stablehlo.and|or
There are two incorrect folders introduced in the last major overhaul to the simplification transforms:
def IntOne : AttrConstraint< CPred<"::mlir::matchPattern($_self, m_One())">, "is integer one">; def : Pat<(StableHLO_AndOp $lhs, (StableHLO_ConstantOp:$one IntOne:$value)), (replaceWithValue $lhs)>; .... def : Pat<(StableHLO_OrOp $lhs, (StableHLO_ConstantOp:$one IntOne:$value)), (replaceWithValue $one)>;
constraint IntOne should be replaced with something along the lines of IntAllOnes
IntOne
IntAllOnes
will submit fix & tests later tonight or tomorrow
The text was updated successfully, but these errors were encountered:
stablehlo.(and|or)
No branches or pull requests
What happened?
There are two incorrect folders introduced in the last major overhaul to the simplification transforms:
constraint
IntOne
should be replaced with something along the lines ofIntAllOnes
will submit fix & tests later tonight or tomorrow
The text was updated successfully, but these errors were encountered: