| 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, |
| 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 | |
| 522 | Context* get_context() { return new Context(); } |
| 523 |
nothing calls this directly
no outgoing calls
no test coverage detected