| 163 | } |
| 164 | |
| 165 | void quantizeBlockwise_fp32_nf4(float* code, float* A, float* absmax, unsigned char* out, int blocksize, const int n) { |
| 166 | quantizeBlockwise<float, 0, NF4>(nullptr, A, absmax, out, nullptr, 0, blocksize, n); |
| 167 | } |
| 168 | |
| 169 | void dequantizeBlockwise_fp16( |
| 170 | float* code, unsigned char* A, float* absmax, half* out, int blocksize, const int n, cudaStream_t stream |
no outgoing calls
no test coverage detected