| 125 | MAKE_BLOCKWISE8(ademamix, ADEMAMIX, float, fp32) |
| 126 | |
| 127 | void quantizeBlockwise_fp16(float* code, half* A, float* absmax, unsigned char* out, int blocksize, const int n) { |
| 128 | quantizeBlockwise<half, 0, General8bit>(code, A, absmax, out, nullptr, 0, blocksize, n); |
| 129 | } |
| 130 | |
| 131 | void quantizeBlockwise_fp16_fp4(float* code, half* A, float* absmax, unsigned char* out, int blocksize, const int n) { |
| 132 | quantizeBlockwise<half, 0, FP4>(nullptr, A, absmax, out, nullptr, 0, blocksize, n); |
no outgoing calls
no test coverage detected