Skip to content

Commit

Permalink
Stubbify all above 300 bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Apr 2, 2024
1 parent 63f743c commit d3db737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/cases_generator/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ def compute_properties(op: parser.InstDef) -> Properties:
pure="pure" in op.annotations,
passthrough=passthrough,
tier=tier_variable(op),
stub=((TEMPLATE_SIZES.get(op.name, 0) > 200 or TEMPLATE_SIZES.get("_" + op.name, 0) > 200) and op.name not in BROKEN),
stub=((TEMPLATE_SIZES.get(op.name, 0) > 300 or TEMPLATE_SIZES.get("_" + op.name, 0) > 300) and op.name not in BROKEN),
)


Expand Down

0 comments on commit d3db737

Please sign in to comment.