-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
More aggressively unify duplicate lets #8204
Commits on Apr 17, 2024
-
Rewrite IREquality to use a more compact stack instead of deep recursion
Deletes a bunch of code and speeds up lowering time of local laplacian with 20 pyramid levels by ~2.5%
Configuration menu - View commit details
-
Copy full SHA for 538577a - Browse repository at this point
Copy the full SHA 538577aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a60519 - Browse repository at this point
Copy the full SHA 7a60519View commit details -
Configuration menu - View commit details
-
Copy full SHA for 150f5e9 - Browse repository at this point
Copy the full SHA 150f5e9View commit details -
Fix computational complexity of substitute_facts
It was O(n) for n facts. This makes it O(log(n)) This was particularly bad for pipelines with lots of inputs or outputs, because those pipelines have lots of asserts, which make for lots of facts to substitute in. Speeds up lowering of local laplacian with 20 pyramid levels (which has only one input and one output) by 1.09x Speeds up lowering of the adams 2019 cost model training pipeline (lots of weight inputs and lots outputs due to derivatives) by 1.5x Speeds up resnet50 (tons of weight inputs) lowering by 7.3x!
Configuration menu - View commit details
-
Copy full SHA for 00b8126 - Browse repository at this point
Copy the full SHA 00b8126View commit details -
Configuration menu - View commit details
-
Copy full SHA for d3efa14 - Browse repository at this point
Copy the full SHA d3efa14View commit details -
Merge remote-tracking branch 'origin/abadams/rewrite_ir_equality' int…
…o abadams/faster_substitute_facts
Configuration menu - View commit details
-
Copy full SHA for 4dfbd72 - Browse repository at this point
Copy the full SHA 4dfbd72View commit details
Commits on Apr 18, 2024
-
3
Configuration menu - View commit details
-
Copy full SHA for 22a04bd - Browse repository at this point
Copy the full SHA 22a04bdView commit details -
Merge remote-tracking branch 'origin/abadams/rewrite_ir_equality' int…
…o abadams/faster_substitute_facts
Configuration menu - View commit details
-
Copy full SHA for 26b9cc2 - Browse repository at this point
Copy the full SHA 26b9cc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ef4b2de - Browse repository at this point
Copy the full SHA ef4b2deView commit details -
Merge remote-tracking branch 'origin/abadams/rewrite_ir_equality' int…
…o abadams/faster_substitute_facts
Configuration menu - View commit details
-
Copy full SHA for 6aebeb3 - Browse repository at this point
Copy the full SHA 6aebeb3View commit details -
Make is_single_point compare min and max by deep equality
Interval::is_single_point() used to only compare expressions by shallow equality to see if they are the same Expr object. However, bounds_of_expr_in_scope is really improved if it uses deep equality instead, so it has a prepass that goes over the provided scope, calls equal(min, max) on everything, and fixes up anything where deep equality is true but shallow equality. This prepass costs O(n) for n things in scope, regardless of how complex the expression being analyzed is. So if you ask for the bounds of '4' say in a context where there are lots of things in the scope, it's absurdly slow. We were doing this! BoxTouched calls bounds_of_expr_in_scope lots of times on small index Exprs within the same very large scope. It's better to just make Interval::is_single_point() check deep equality. This speeds up local laplacian lowering by 1.1x, and resnet50 lowering by 1.5x. There were also places where intervals that were a single point were diverging due to carelessly written code. E.g. the interval [40*8, 40*8], where both of those 40*8s are the same Mul node, was being simplified like this: interval.min = simplify(interval.min); interval.max = simplify(interval.max); Not only does this do double the simplification work it should, but it also caused something that was a single point to diverge into not being a single point, because the repeated constant-folding creates a new Expr. With the new is_single_point this matters a lot less, but even so, I centralized simplification of intervals into a single helper that doesn't do the pointless double-simplification for single points. Some of these shallowly-unequal but deeply-equal Intervals were being created in bounds inference itself after the prepass, which may have been generating suboptimal bounds. This change should fix that in addition to the compile-time benefits. Also added a simplify call in SkipStages because I noticed when it processed specializations it was creating things like (condition) || (!condition).
Configuration menu - View commit details
-
Copy full SHA for 802ca67 - Browse repository at this point
Copy the full SHA 802ca67View commit details -
Configuration menu - View commit details
-
Copy full SHA for b15a648 - Browse repository at this point
Copy the full SHA b15a648View commit details
Commits on Apr 19, 2024
-
Make unify_duplicate_lets more aggressive
The simplifier can also clean up most of these, but it's harder for it because it has to consider that other mutations may have taken place. Beefing this up has no impact on lowering times for most apps, but something pathological was going on for local_laplacian. At 20 pyramid levels, this speeds up lowering by 1.3x. At 50 pyramid levels it's 2.3x. At 100 pyramid levels it's 4.1x. It also slightly reduces binary size.
Configuration menu - View commit details
-
Copy full SHA for f3ac739 - Browse repository at this point
Copy the full SHA f3ac739View commit details
Commits on Apr 23, 2024
-
Merge remote-tracking branch 'origin/main' into abadams/aggressive_un…
…ify_duplicate_lets
Configuration menu - View commit details
-
Copy full SHA for 5ada5df - Browse repository at this point
Copy the full SHA 5ada5dfView commit details
Commits on Apr 24, 2024
-
Clarify comment; Avoid double-lookup into the scope
Looking up with an Expr key and deep equality is expensive, so this was bad.
Configuration menu - View commit details
-
Copy full SHA for fc4229e - Browse repository at this point
Copy the full SHA fc4229eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 251d1fb - Browse repository at this point
Copy the full SHA 251d1fbView commit details