@novastera-oss/llamarn 0.5.1 → 0.5.2
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.
|
@@ -1,3 +1,20 @@
|
|
|
1
1
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
2
|
package="com.novastera.llamarn">
|
|
3
|
+
|
|
4
|
+
<!-- GPU backends we ship -->
|
|
5
|
+
<uses-native-library
|
|
6
|
+
android:name="libggml-opencl.so"
|
|
7
|
+
android:required="false" />
|
|
8
|
+
<uses-native-library
|
|
9
|
+
android:name="libggml-vulkan.so"
|
|
10
|
+
android:required="false" />
|
|
11
|
+
|
|
12
|
+
<!-- System loaders (only mapped if present on device) -->
|
|
13
|
+
<uses-native-library
|
|
14
|
+
android:name="libOpenCL.so"
|
|
15
|
+
android:required="false" />
|
|
16
|
+
<uses-native-library
|
|
17
|
+
android:name="libvulkan.so"
|
|
18
|
+
android:required="false" />
|
|
19
|
+
|
|
3
20
|
</manifest>
|
package/package.json
CHANGED