summaryrefslogtreecommitdiff
path: root/llama.cpp/ggml/src/ggml-hexagon/htp/htp_iface.idl
diff options
context:
space:
mode:
Diffstat (limited to 'llama.cpp/ggml/src/ggml-hexagon/htp/htp_iface.idl')
-rw-r--r--llama.cpp/ggml/src/ggml-hexagon/htp/htp_iface.idl16
1 files changed, 16 insertions, 0 deletions
diff --git a/llama.cpp/ggml/src/ggml-hexagon/htp/htp_iface.idl b/llama.cpp/ggml/src/ggml-hexagon/htp/htp_iface.idl
new file mode 100644
index 0000000..9ebd937
--- /dev/null
+++ b/llama.cpp/ggml/src/ggml-hexagon/htp/htp_iface.idl
@@ -0,0 +1,16 @@
+// FastRPC IDL interface for GGML HTP
+
+#ifndef HTP_IDL
+#define HTP_IDL
+
+#include "AEEStdDef.idl"
+#include "remote.idl"
+
+interface htp_iface : remote_handle64 {
+ AEEResult start(in uint32 sess_id, in uint64 dsp_queue_id, in uint32 n_hvx);
+ AEEResult stop();
+ AEEResult enable_etm();
+ AEEResult disable_etm();
+};
+
+#endif /* HTP_IDL */