| 374 | } |
| 375 | |
| 376 | void cquantize_blockwise_fp32(float* code, float* A, float* absmax, unsigned char* out, int blocksize, const int n) { |
| 377 | quantizeBlockwise_fp32(code, A, absmax, out, blocksize, n); |
| 378 | } |
| 379 | |
| 380 | void cquantize_blockwise_fp32_fp4( |
| 381 | float* code, float* A, float* absmax, unsigned char* out, int blocksize, const int n |
nothing calls this directly
no test coverage detected