mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-02-24 15:14:10 +00:00
Make it also work, not just compile
This commit is contained in:
@@ -16076,8 +16076,13 @@ struct HelperIQ4nl final : public BaseHelper<step> {
|
||||
constexpr static int block_size_q = QK8_0;
|
||||
#else
|
||||
HelperIQ4nl(const char * data, int stride) : Base(data, stride) {}
|
||||
#ifdef HAVE_FANCY_SIMD
|
||||
using block_q8 = block_q8_2;
|
||||
constexpr static int block_size_q = QK8_2;
|
||||
#else
|
||||
using block_q8 = block_q8_0;
|
||||
constexpr static int block_size_q = QK8_0;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// Needed for v * softmax(k * q)
|
||||
|
||||
Reference in New Issue
Block a user