Skip to content

Instantly share code, notes, and snippets.

@nfrechette
Last active April 8, 2017 13:36
Show Gist options
  • Save nfrechette/6059d406eb4e522d0cb484ab907b6692 to your computer and use it in GitHub Desktop.
Save nfrechette/6059d406eb4e522d0cb484ab907b6692 to your computer and use it in GitHub Desktop.
Matrix Multiplication 4x4 Test Case 3
// Setup
const XMMATRIX mtxA = { ... };
const XMMATRIX mtxB = { ... };
static XMMATRIX output[64];
// Actual code we measure
for (__int32 mtx_index = 0; mtx_index < 64; ++mtx_index)
output[mtx_index] = MatrixMultiply(mtxA, mtxB);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment