| 408 | } |
| 409 | |
| 410 | void cquantize_blockwise_bf16( |
| 411 | float* code, bnb_bfloat16* A, float* absmax, unsigned char* out, int blocksize, const int n |
| 412 | ) { |
| 413 | quantizeBlockwise_bf16(code, A, absmax, out, blocksize, n); |
| 414 | } |
| 415 | |
| 416 | void cquantize_blockwise_bf16_fp4( |
| 417 | float* code, bnb_bfloat16* A, float* absmax, unsigned char* out, int blocksize, const int n |
nothing calls this directly
no test coverage detected