| 362 | } |
| 363 | |
| 364 | void cquantize_blockwise_fp16(float* code, half* A, float* absmax, unsigned char* out, int blocksize, const int n) { |
| 365 | quantizeBlockwise_fp16(code, A, absmax, out, blocksize, n); |
| 366 | } |
| 367 | |
| 368 | void cquantize_blockwise_fp16_fp4(float* code, half* A, float* absmax, unsigned char* out, int blocksize, const int n) { |
| 369 | quantizeBlockwise_fp16_fp4(code, A, absmax, out, blocksize, n); |
nothing calls this directly
no test coverage detected