Files
llama.cpp/tools/tuning/fa-vec.cpp
T

14 lines
271 B
C++

#include "fa-vec.h"
#include <cstdio>
bool tuner_fa_vec_run(ggml_backend_t backend, ggml_backend_dev_t dev, const tuner_opts & opts) {
fprintf(stderr, "fa-vec tuner: not implemented yet\n");
(void) backend;
(void) dev;
(void) opts;
return true;
}