Skip to content

Instantly share code, notes, and snippets.

@pubudu91
Created November 10, 2016 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pubudu91/4da9a97545b1d3116336912260d91927 to your computer and use it in GitHub Desktop.
Save pubudu91/4da9a97545b1d3116336912260d91927 to your computer and use it in GitHub Desktop.
void blasL3(Matrix1D *A, Matrix1D *B, Matrix1D *C, int n) {
cblas_dgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, n, n, n, 1, A->matrix, n, B->matrix, n, 0, C->matrix, n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment