| 137 | } |
| 138 | |
| 139 | void quantizeBlockwise_bf16( |
| 140 | float* code, bnb_bfloat16* A, float* absmax, unsigned char* out, int blocksize, const int n |
| 141 | ) { |
| 142 | quantizeBlockwise<bnb_bfloat16, 0, General8bit>(code, A, absmax, out, nullptr, 0, blocksize, n); |
| 143 | } |
| 144 | |
| 145 | void quantizeBlockwise_bf16_fp4( |
| 146 | float* code, bnb_bfloat16* A, float* absmax, unsigned char* out, int blocksize, const int n |
no outgoing calls
no test coverage detected