Refactor iqk: WIP

This commit is contained in:
Iwan Kawrakow
2025-05-17 12:31:39 +03:00
parent b3036a872f
commit 68b782e861
3 changed files with 21 additions and 0 deletions

View File

@@ -135,4 +135,6 @@ struct DataInfo {
typedef void (*mul_mat_t)(int n, const void * vx, size_t bx, const DataInfo& info, int nrc_x);
#define IQK_MAX_NY 8
#endif

View File

@@ -0,0 +1,8 @@
#include "iqk_gemm_floats.h"
#ifdef IQK_IMPLEMENT
bool iqk_set_kernels_float(int ne00, int typeA, int typeB, std::array<mul_mat_t, IQK_MAX_NY>& kernels) {
}
#endif

View File

@@ -0,0 +1,11 @@
#pragma once
#include "iqk_common.h"
#ifdef IQK_IMPLEMENT
#include <array>
bool iqk_set_kernels_float(int ne00, int typeA, int typeB, std::array<mul_mat_t, IQK_MAX_NY>& kernels);
#endif