| 167 | } |
| 168 | |
| 169 | void dequantizeBlockwise_fp16( |
| 170 | float* code, unsigned char* A, float* absmax, half* out, int blocksize, const int n, cudaStream_t stream |
| 171 | ) { |
| 172 | dequantizeBlockwise<half, General8bit>(code, A, absmax, out, blocksize, n, stream); |
| 173 | } |
| 174 | |
| 175 | void dequantizeBlockwise_fp16_fp4( |
| 176 | float* code, unsigned char* A, float* absmax, half* out, int blocksize, const int n, cudaStream_t stream |
no outgoing calls
no test coverage detected