victotronics t1_ir9fc44 wrote
Reply to comment by Ulfgardleo in [R] Discovering Faster Matrix Multiplication Algorithms With Reinforcement Learning by EducationalCicada
Yes yes and yes. Can half a dozen authors really be that ignorant that they don't know about all the work that's been done after Strassen? And how did this pass review?
To add to 2: numerical stability of Strassen is doubtful too.
emotionalfool123 t1_irdvwr8 wrote
Can you explain what does numerical stability mean in this case?
victotronics t1_ire6ha5 wrote
Behavior under roundoff. Floating point numbers are not actually mathematical numbers so all algorithms are inexact. You want them to be not too inexact: small perturbations should give only small errors. The fact that STrassen (and other algorithms) sometimes subtract quantities means that you can have numerical cancellation.
Viewing a single comment thread. View all comments