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

Function cigemmlt_32

csrc/pythonInterface.cpp:524–529  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

522Context* get_context() { return new Context(); }
523
524int cigemmlt_32(
525 Context* context, int m, int n, int k, const int8_t* A, const int8_t* B, void* C, float* row_scale, int lda,
526 int ldb, int ldc, cudaStream_t stream
527) {
528 return igemmlt_32((cublasLtHandle_t)context->m_handle, m, n, k, A, B, C, row_scale, lda, ldb, ldc, stream);
529}
530
531int cigemmlt_8(
532 Context* context, int m, int n, int k, const int8_t* A, const int8_t* B, void* C, float* row_scale, int lda,

Callers

nothing calls this directly

Calls 1

igemmlt_32Function · 0.85

Tested by

no test coverage detected