| 529 | } |
| 530 | |
| 531 | int 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, |
| 533 | int ldb, int ldc, cudaStream_t stream |
| 534 | ) { |
| 535 | return igemmlt_8((cublasLtHandle_t)context->m_handle, m, n, k, A, B, C, row_scale, lda, ldb, ldc, stream); |
| 536 | } |
| 537 | |
| 538 | int cigemmlt_8_rowscale( |
| 539 | Context* context, int m, int n, int k, const int8_t* A, const int8_t* B, void* C, float* row_scale, int lda, |
nothing calls this directly
no test coverage detected