Skip to content

Instantly share code, notes, and snippets.

View embg's full-sized avatar

Elliot Gorokhovsky embg

  • Meta
  • New York, NY
View GitHub Profile
@nadavrot
nadavrot / Matrix.md
Last active April 3, 2025 02:39
Efficient matrix multiplication

High-Performance Matrix Multiplication

This is a short post that explains how to write a high-performance matrix multiplication program on modern processors. In this tutorial I will use a single core of the Skylake-client CPU with AVX2, but the principles in this post also apply to other processors with different instruction sets (such as AVX512).

Intro

Matrix multiplication is a mathematical operation that defines the product of

@lucasdavila
lucasdavila / 1_ubuntu_terminal_command
Last active August 22, 2024 16:26
Installing Source Code Pro fonts in ubuntu
# to execute this gist, run the line bellow in terminal
\curl -L https://raw.github.com/gist/3875946/install_source_code_pro.sh | sh