| 426 | } |
| 427 | |
| 428 | void cdequantize_blockwise_bf16( |
| 429 | float* code, unsigned char* A, float* absmax, bnb_bfloat16* out, int blocksize, const int n, cudaStream_t stream |
| 430 | ) { |
| 431 | dequantizeBlockwise_bf16(code, A, absmax, out, blocksize, n, stream); |
| 432 | } |
| 433 | |
| 434 | void cdequantize_blockwise_bf16_fp4( |
| 435 | float* code, unsigned char* A, float* absmax, bnb_bfloat16* out, int blocksize, const int n, cudaStream_t stream |
nothing calls this directly
no test coverage detected