einsum-derive icon indicating copy to clipboard operation
einsum-derive copied to clipboard

Math is not correct?

Open joshburkart opened this issue 8 months ago • 0 comments

Great idea for a crate! But shouldn't lines like this:

                    out0[(a, c)] = arg0[(a, b)] * arg1[(b, c)];

instead be:

                    out0[(a, c)] += arg0[(a, b)] * arg1[(b, c)];

joshburkart avatar Jun 04 '24 18:06 joshburkart