| 549 | } |
| 550 | |
| 551 | void cint8_vector_quant( |
| 552 | half* __restrict__ A, int8_t* out, float* rowStats, float threshold, int rows, int cols, cudaStream_t stream |
| 553 | ) { |
| 554 | int8VectorQuant(A, out, rowStats, threshold, rows, cols, stream); |
| 555 | } |
| 556 | |
| 557 | void* cget_managed_ptr(size_t bytes) { |
| 558 | void* ptr; |
nothing calls this directly
no outgoing calls
no test coverage detected