Stream: cranelift

Topic: Commutative rewrites


view this post on Zulip kmeakin (Mar 17 2023 at 19:22):

Are commutative versions of rewrite rules necessary?
eg x*0 == 0*x == x
Constant arguments are moved to the RHS by const_prop.isle
Is it just an optimisation?

view this post on Zulip fitzgen (he/him) (Mar 17 2023 at 19:23):

ah for constants it is not necessary to have rules for both, because we do move constants to the right hand side

view this post on Zulip fitzgen (he/him) (Mar 17 2023 at 19:23):

for non-constants, it is currently necessary to write both rules

view this post on Zulip fitzgen (he/him) (Mar 17 2023 at 19:24):

we want to eventually be able to mark certain things as commutative in ISLE, so that the compiler essentially macro-expands the commutativity for us, but that requires quite a bit of design and we haven't spent time on it yet

view this post on Zulip Chris Fallin (Mar 17 2023 at 19:25):

Yup, and to give a little more context in case it helps, another alternative might be to have a generic commutativity rule that creates both forms of every commutative operator in the egraph, to maximize possible rule applications; but we made a conscious tradeoff not to do this because it would significantly increase the size of the egraph and rule application cost

view this post on Zulip Chris Fallin (Mar 17 2023 at 19:25):

in contrast, duplicating rules when needed is relatively low-cost, because the ISLE compiler can merge them and run them all in sublinear cost

view this post on Zulip kmeakin (Mar 17 2023 at 19:29):

Both sound very interesting

view this post on Zulip kmeakin (Mar 17 2023 at 19:30):

I wonder if it would be possible to generate rewrite rules just by listing an opcodes properties (eg associative, commutative, neutral element, absorbing element)

view this post on Zulip Chris Fallin (Mar 17 2023 at 19:31):

that's kind of along the lines of what we're thinking with commutativity in particular: marking a term with type (Value Value) Value as commutative and then using it on the LHS should automatically expand into two LHSes (or an or-pattern)

view this post on Zulip Chris Fallin (Mar 17 2023 at 19:32):

which is kind of the moral equivalent of fusing/composing with a general commutativity rule

view this post on Zulip kmeakin (Mar 17 2023 at 19:33):

Maybe ISLE needs a macro system :cold_sweat:

view this post on Zulip Chris Fallin (Mar 17 2023 at 19:37):

Oh no! This is the part of the conversation where I run away screaming :-)

view this post on Zulip Chris Fallin (Mar 17 2023 at 19:39):

fwiw, I've tried to "hold the line" on complexity in the language, because I think we get benefits from simplicity in terms of analyzability, verifiability, ability to have a coherent mental model and understand bugs, etc. It's easy to argue for expressivity from the PoV of the backend author but it carries hidden costs. I'd be worried if we ever gained either generics/polymorphism or a macro system, and so far we've gotten along without them

view this post on Zulip Chris Fallin (Mar 17 2023 at 19:40):

(this may be a little bit unfashionable, and can also lead to ignorance of true benefits a la Golang's eventual adoption of generics, but we are a DSL and can afford different tradeoffs, and also it seems problems that initially call for big hammers can often be solved in different ways after some thought)

view this post on Zulip kmeakin (Mar 17 2023 at 19:43):

Good point on the expressiveness vs analyzability tradeoff

view this post on Zulip kmeakin (Mar 17 2023 at 19:51):

Maybe having a few predefined properties that could be attached to an operator would get 80% of the benefit with 10% of the effort

view this post on Zulip kmeakin (Mar 17 2023 at 19:52):

eg semigroup, monoid, group

view this post on Zulip Notification Bot (Mar 21 2023 at 20:45):

kmeakin has marked this topic as resolved.

view this post on Zulip Notification Bot (Mar 24 2023 at 03:14):

kmeakin has marked this topic as unresolved.

view this post on Zulip kmeakin (Mar 24 2023 at 03:18):

What about marking instructions as commutative, rather than rewrite rules?

ie when generating extractors for commutative instructions, generate an extractor that matches both versions:

(decl bor (Type Value Value) Value)
(extractor
    (bor ty x y)
    (or
        (inst_data ty (InstructionData.Binary (Opcode.Bor) (value_array_2 x y)))
        (inst_data ty (InstructionData.Binary (Opcode.Bor) (value_array_2 y x))))
)

view this post on Zulip kmeakin (Mar 24 2023 at 03:19):

So, IIUC, the egraph would not be bloated

view this post on Zulip Chris Fallin (Mar 24 2023 at 17:37):

That's more-or-less the consequence of what is proposed above ("marking a term with type (Value Value) Value as commutative"): the idea is that we'd put a flag on the decl, and then any use of the term in the LHS of a rule would turn into what you describe

view this post on Zulip kmeakin (Mar 28 2023 at 00:03):

Chris Fallin said:

That's more-or-less the consequence of what is proposed above ("marking a term with type (Value Value) Value as commutative"): the idea is that we'd put a flag on the decl, and then any use of the term in the LHS of a rule would turn into what you describe

Oh I see, I thought you were referring to rewrite rules, not constructors


Last updated: Oct 23 2024 at 20:03 UTC