| 504 | MAKE_CBLOCKWISE8(ademamix, ADEMAMIX, bnb_bfloat16, bf16) |
| 505 | |
| 506 | void cigemm( |
| 507 | Context* context, bool transposeA, bool transposeB, int m, int n, int k, void* A, void* B, void* C, int lda, |
| 508 | int ldb, int ldc |
| 509 | ) { |
| 510 | gemmex(context, transposeA, transposeB, m, n, k, A, B, C, lda, ldb, ldc); |
| 511 | } |
| 512 | |
| 513 | void cbatched_igemm( |
| 514 | Context* context, bool transposeA, bool transposeB, int m, int n, int k, void* A, void* B, void* C, int lda, |
nothing calls this directly
no outgoing calls
no test coverage detected