summaryrefslogtreecommitdiff
path: root/llama.cpp/ggml/src/ggml-hexagon/htp/hex-dump.h
diff options
context:
space:
mode:
Diffstat (limited to 'llama.cpp/ggml/src/ggml-hexagon/htp/hex-dump.h')
-rw-r--r--llama.cpp/ggml/src/ggml-hexagon/htp/hex-dump.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/llama.cpp/ggml/src/ggml-hexagon/htp/hex-dump.h b/llama.cpp/ggml/src/ggml-hexagon/htp/hex-dump.h
new file mode 100644
index 0000000..e3badb5
--- /dev/null
+++ b/llama.cpp/ggml/src/ggml-hexagon/htp/hex-dump.h
@@ -0,0 +1,77 @@
+#ifndef HEX_DUMP_H
+#define HEX_DUMP_H
+
+#include <HAP_farf.h>
+
+static inline void hex_dump_int8_line(char * pref, const int8_t * x, int n) {
+ char str[1024], *p = str, *p_end = str + sizeof(str);
+ p += snprintf(p, p_end - p, "%s: ", pref);
+ for (int i = 0; i < n && p < p_end; i++) {
+ p += snprintf(p, p_end - p, "%d, ", x[i]);
+ }
+ FARF(HIGH, "%s\n", str);
+}
+
+static inline void hex_dump_uint8_line(char * pref, const uint8_t * x, uint32_t n) {
+ char str[1024], *p = str, *p_end = str + sizeof(str);
+ p += snprintf(p, p_end - p, "%s: ", pref);
+ for (int i = 0; i < n && p < p_end; i++) {
+ p += snprintf(p, p_end - p, "%d, ", x[i]);
+ }
+ FARF(HIGH, "%s\n", str);
+}
+
+static inline void hex_dump_int32_line(char * pref, const int32_t * x, uint32_t n) {
+ char str[1024], *p = str, *p_end = str + sizeof(str);
+ p += snprintf(p, p_end - p, "%s: ", pref);
+ for (int i = 0; i < n; i++) {
+ p += snprintf(p, p_end - p, "%d, ", (int) x[i]);
+ }
+ FARF(HIGH, "%s\n", str);
+}
+
+static inline void hex_dump_f16_line(char * pref, const __fp16 * x, uint32_t n) {
+ char str[1024], *p = str, *p_end = str + sizeof(str);
+ p += snprintf(p, p_end - p, "%s: ", pref);
+ for (int i = 0; i < n; i++) {
+ p += snprintf(p, p_end - p, "%.6f, ", (float) x[i]);
+ }
+ FARF(HIGH, "%s\n", str);
+}
+
+static inline void hex_dump_f32_line(char * pref, const float * x, uint32_t n) {
+ char str[1024], *p = str, *p_end = str + sizeof(str);
+ p += snprintf(p, p_end - p, "%s: ", pref);
+ for (int i = 0; i < n; i++) {
+ p += snprintf(p, p_end - p, "%.6f, ", x[i]);
+ }
+ FARF(HIGH, "%s\n", str);
+}
+
+static inline void hex_dump_f32(char * pref, const float * x, uint32_t n) {
+ uint32_t n0 = n / 16;
+ uint32_t n1 = n % 16;
+
+ uint32_t i = 0;
+ for (; i < n0; i++) {
+ hex_dump_f32_line(pref, x + (16 * i), 16);
+ }
+ if (n1) {
+ hex_dump_f32_line(pref, x + (16 * i), n1);
+ }
+}
+
+static inline void hex_dump_f16(char * pref, const __fp16 * x, uint32_t n) {
+ uint32_t n0 = n / 16;
+ uint32_t n1 = n % 16;
+
+ uint32_t i = 0;
+ for (; i < n0; i++) {
+ hex_dump_f16_line(pref, x + (16 * i), 16);
+ }
+ if (n1) {
+ hex_dump_f16_line(pref, x + (16 * i), n1);
+ }
+}
+
+#endif /* HEX_DUMP_H */