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

Function cbatched_igemm

csrc/pythonInterface.cpp:513–520  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,
515 int ldb, int ldc, long strideA, long strideB, long strideC, int batchCount
516) {
517 strided_gemmex(
518 context, transposeA, transposeB, m, n, k, A, B, C, lda, ldb, ldc, strideA, strideB, strideC, batchCount
519 );
520}
521
522Context* get_context() { return new Context(); }
523

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected