| 185 | } |
| 186 | |
| 187 | void dequantizeBlockwise_fp32( |
| 188 | float* code, unsigned char* A, float* absmax, float* out, int blocksize, const int n, cudaStream_t stream |
| 189 | ) { |
| 190 | dequantizeBlockwise<float, General8bit>(code, A, absmax, out, blocksize, n, stream); |
| 191 | } |
| 192 | |
| 193 | void dequantizeBlockwise_fp32_fp4( |
| 194 | float* code, unsigned char* A, float* absmax, float* out, int blocksize, const int n, cudaStream_t stream |
no outgoing calls
no test coverage detected