summaryrefslogtreecommitdiff
path: root/examples/llama-bench/llama-bench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/llama-bench/llama-bench.cpp')
-rw-r--r--examples/llama-bench/llama-bench.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/examples/llama-bench/llama-bench.cpp b/examples/llama-bench/llama-bench.cpp
index dedaa34f..34ddfde3 100644
--- a/examples/llama-bench/llama-bench.cpp
+++ b/examples/llama-bench/llama-bench.cpp
@@ -74,14 +74,6 @@ static T stdev(const std::vector<T> & v) {
return stdev;
}
-static bool ggml_cpu_has_metal() {
-#if defined(GGML_USE_METAL)
- return true;
-#else
- return false;
-#endif
-}
-
static std::string get_cpu_info() {
std::string id;
#ifdef __linux__