This document summarizes several algorithms for parallel matrix operations, including matrix-vector multiplication, matrix-matrix multiplication, and solving systems of linear equations via Gaussian elimination. For matrix-vector multiplication, it describes row-wise and column-wise partitioning approaches. For matrix-matrix multiplication, it discusses algorithms based on row/column broadcasting, Cannon's algorithm, and a 3D domain decomposition approach. For Gaussian elimination, it analyzes pipelined and 2D mapping implementations. The key aspects of parallelization, communication costs, computation loads, scalability, and cost efficiency are analyzed for each algorithm.