| 203 | } |
| 204 | |
| 205 | void dequantizeBlockwise_bf16( |
| 206 | float* code, unsigned char* A, float* absmax, bnb_bfloat16* out, int blocksize, const int n, cudaStream_t stream |
| 207 | ) { |
| 208 | dequantizeBlockwise<bnb_bfloat16, General8bit>(code, A, absmax, out, blocksize, n, stream); |
| 209 | } |
| 210 | |
| 211 | void dequantizeBlockwise_bf16_fp4( |
| 212 | float* code, unsigned char* A, float* absmax, bnb_bfloat16* out, int blocksize, const int n, cudaStream_t stream |
no outgoing calls
no test coverage detected