Last active
April 8, 2017 13:36
-
-
Save nfrechette/6059d406eb4e522d0cb484ab907b6692 to your computer and use it in GitHub Desktop.
Matrix Multiplication 4x4 Test Case 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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