| 350 | } |
| 351 | |
| 352 | void cdequantize_blockwise_fp16( |
| 353 | float* code, unsigned char* A, float* absmax, half* out, int blocksize, const int n, cudaStream_t stream |
| 354 | ) { |
| 355 | dequantizeBlockwise_fp16(code, A, absmax, out, blocksize, n, stream); |
| 356 | } |
| 357 | |
| 358 | void cdequantize_blockwise_fp16_nf4( |
| 359 | float* code, unsigned char* A, float* absmax, half* out, int blocksize, const int n, cudaStream_t stream |
nothing calls this directly
no test coverage detected