MCPcopy Create free account
hub / github.com/bitsandbytes-foundation/bitsandbytes / cigemm

Function cigemm

csrc/pythonInterface.cpp:506–511  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

504MAKE_CBLOCKWISE8(ademamix, ADEMAMIX, bnb_bfloat16, bf16)
505
506void 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
513void cbatched_igemm(
514 Context* context, bool transposeA, bool transposeB, int m, int n, int k, void* A, void* B, void* C, int lda,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected