From 489537e6cf6c93b74a029a11533dbcaa89791dcc Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 16 Apr 2023 12:13:00 +0200 Subject: examples: add missing include for time() (#1011) --- examples/perplexity/perplexity.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/perplexity') diff --git a/examples/perplexity/perplexity.cpp b/examples/perplexity/perplexity.cpp index 38e3643b..19449e16 100644 --- a/examples/perplexity/perplexity.cpp +++ b/examples/perplexity/perplexity.cpp @@ -2,6 +2,7 @@ #include "llama.h" #include +#include std::vector softmax(const std::vector& logits) { std::vector probs(logits.size()); -- cgit v1.2.3