mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-04-27 01:49:28 +00:00
Fix Makefile
I always use cmake, so had forgotten to pay attention to the Makefile.
This commit is contained in:
@@ -42,9 +42,13 @@ struct IQ1BNQuantizer {
|
||||
}
|
||||
return max_in_row;
|
||||
}
|
||||
static constexpr uint8_t k_mult[5] = {81, 27, 9, 3, 1};
|
||||
// The Makefile has issues dwaling with this?
|
||||
//static constexpr uint8_t k_mult[5] = {81, 27, 9, 3, 1};
|
||||
static const uint8_t k_mult[5];
|
||||
};
|
||||
|
||||
const uint8_t IQ1BNQuantizer::k_mult[5] = {81, 27, 9, 3, 1};
|
||||
|
||||
void IQ1BNQuantizer::quantize_one_row_1bn(const float * src, block_iq1_bn * y, int n_per_row, const float * imatrix) {
|
||||
|
||||
static const int k_nb[6] = {1, 3, 9, 27, 81, 243};
|
||||
|
||||
Reference in New Issue
Block a user