-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Description
One thing I noticed by looking at the generated C and Julia code is that we now have a number of new trivial lincomb
nodes, such as
X ← + α × A + 0 × B
which should really be
X ← + α × A (a)
or
X ← 1 × A
which is just a copy and should be removed. In fact, nodes of the form (a)
could also be removed by pushing α
to the corresponding coefficient(s) of subsequent lincomb
s, although this seems a bit messier to do.
Originally posted by @mfasi in #77 (comment)
Metadata
Metadata
Assignees
Labels
No labels