whisper.rn 0.4.0-rc.11 → 0.4.0-rc.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cpp/amx/mmq.h ADDED
@@ -0,0 +1,10 @@
1
+ #pragma once
2
+ #include "common.h"
3
+
4
+ size_t wsp_ggml_backend_amx_desired_wsize(const struct wsp_ggml_tensor * dst);
5
+
6
+ size_t wsp_ggml_backend_amx_get_alloc_size(const struct wsp_ggml_tensor * tensor);
7
+
8
+ void wsp_ggml_backend_amx_convert_weight(struct wsp_ggml_tensor * tensor, const void * data, size_t offset, size_t size);
9
+
10
+ void wsp_ggml_backend_amx_mul_mat(const struct wsp_ggml_compute_params * params, struct wsp_ggml_tensor * dst);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whisper.rn",
3
- "version": "0.4.0-rc.11",
3
+ "version": "0.4.0-rc.12",
4
4
  "description": "React Native binding of whisper.cpp",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -15,6 +15,7 @@
15
15
  "ios",
16
16
  "cpp/*.*",
17
17
  "cpp/coreml/*.*",
18
+ "cpp/amx/*.*",
18
19
  "*.podspec",
19
20
  "!lib/typescript/example",
20
21
  "!ios/build",