========================================================= Triangular Matrix Solver (TRSM): Reference Implementation [TOC] ========================================================= - Use the implementation of `dtrsv` from Session 14 for a simple reference implementation of the TRSM operation ---- LATEX ------------------------------------------------------------------- X \leftarrow A^{-1} X ------------------------------------------------------------------------------ where $A$ is a $m \times m$ triangular matrix and $X$ a general $m \times n$ matrix. - Add function `dlaswp` from Session 13 for applying a pivot vector to `ulmblas.c`.