mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-09-07 20:47:30 +02:00
14 lines
271 B
C++
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;
|
|
}
|