Sergio Sánchez Ramírez
Sergio Sánchez Ramírez
Check https://discourse.julialang.org/t/psa-add-downgrade-ci-to-better-check-version-compatibility/110063
the bugs this PR fixes were not caught on IR tests but on interpretation with Reactant
also, we should add the `linalg.eigen` op to unify them unlike the QR, the format is unique so we should be able to write one diff rule also, we should...
currently, we generate one LAPACK LLVM function wrapper per instance because we hardcode the sizes of the matrices on it. this could be better handled by just passing the sizes...
we can take https://dl.acm.org/doi/fullHtml/10.1145/3431921 as reference
in order to be able to distribute execution of `lapack` ops, we should write the shardy rules for lapack ops. the [ScaLAPACK repo](https://github.com/Reference-ScaLAPACK/scalapack) can be taken as reference on how...
the idea is to be able to write the algorithms of the `lapack` ops directly in `stablehlo`, so that we can then compile this ops on backends that do not...
`lapack.ormqr` implements an algorithm for direct application of the Q matrix into another matrix given the PackedQR format (i.e. the result of `lapack.geqrf` op) ```mlir %0 = enzymexla.lapack.orgqr %A, %tau...