| 390 | } |
| 391 | |
| 392 | void cdequantize_blockwise_fp32( |
| 393 | float* code, unsigned char* A, float* absmax, float* out, int blocksize, const int n, cudaStream_t stream |
| 394 | ) { |
| 395 | dequantizeBlockwise_fp32(code, A, absmax, out, blocksize, n, stream); |
| 396 | } |
| 397 | |
| 398 | void cdequantize_blockwise_fp32_fp4( |
| 399 | float* code, unsigned char* A, float* absmax, float* out, int blocksize, const int n, cudaStream_t stream |
nothing calls this directly
no test coverage detected