summaryrefslogtreecommitdiff
path: root/ggml/src/iqk/iqk_gemm_iquants.h
blob: 82d1bb80091343cab922563bda28ab15bac1ed21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "iqk_common.h"

#ifdef IQK_IMPLEMENT

#include <array>

bool iqk_set_kernels_iquants(int ne00, int typeA, int typeB, std::array<mul_mat_t, IQK_MAX_NY>& kernels, mul_mat_t& func16);

bool iqk_convert_iquants_q80_r8(int type, int n, const void * vx, size_t bx, void * vy, int nrc_x);

#endif