Skip to content

Commit

Permalink
ifdef the asm call?
Browse files Browse the repository at this point in the history
  • Loading branch information
akielaries committed Dec 23, 2024
1 parent 1b1a89e commit 5efb03f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/linalg/dgemm_arr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ void gpmp::linalg::DGEMM::dgemm_micro_kernel(long kc,
long kb = kc / 4;
long kl = kc % 4;

#ifdef __x86_64__
dgemm_kernel_asm(A,
B,
C,
Expand All @@ -109,6 +110,7 @@ void gpmp::linalg::DGEMM::dgemm_micro_kernel(long kc,
incColC,
alpha,
beta);
#endif
}

// MATRIX BUFFERS
Expand Down

0 comments on commit 5efb03f

Please sign in to comment.