summaryrefslogtreecommitdiff
path: root/llama.cpp/ggml/src/ggml-hexagon/htp/htp-ctx.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
commitb333b06772c89d96aacb5490d6a219fba7c09cc6 (patch)
tree211df60083a5946baa2ed61d33d8121b7e251b06 /llama.cpp/ggml/src/ggml-hexagon/htp/htp-ctx.h
downloadllmnpc-b333b06772c89d96aacb5490d6a219fba7c09cc6.tar.gz
Engage!
Diffstat (limited to 'llama.cpp/ggml/src/ggml-hexagon/htp/htp-ctx.h')
-rw-r--r--llama.cpp/ggml/src/ggml-hexagon/htp/htp-ctx.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/llama.cpp/ggml/src/ggml-hexagon/htp/htp-ctx.h b/llama.cpp/ggml/src/ggml-hexagon/htp/htp-ctx.h
new file mode 100644
index 0000000..a707d98
--- /dev/null
+++ b/llama.cpp/ggml/src/ggml-hexagon/htp/htp-ctx.h
@@ -0,0 +1,35 @@
+#ifndef HTP_CTX_H
+#define HTP_CTX_H
+
+#include "hex-dma.h"
+#include "worker-pool.h"
+
+#include <assert.h>
+#include <dspqueue.h>
+#include <stdatomic.h>
+#include <stdint.h>
+
+#define HTP_MAX_NTHREADS 10
+
+// Main context for htp DSP backend
+struct htp_context {
+ dspqueue_t queue;
+ dma_queue * dma[HTP_MAX_NTHREADS];
+ worker_pool_context_t worker_pool;
+ uint32_t n_threads;
+
+ int thread_id;
+ int thread_prio;
+
+ uint8_t * vtcm_base;
+ size_t vtcm_size;
+ uint32_t vtcm_rctx;
+
+ atomic_bool vtcm_valid;
+ atomic_bool vtcm_inuse;
+ atomic_bool vtcm_needs_release;
+
+ uint32_t opmask;
+};
+
+#endif /* HTP_CTX_H */