-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft: Compile for android #67
base: main
Are you sure you want to change the base?
Conversation
Hm... it seems like the only thing blocking android compilation rn is the sqlite stuff. If I just uncomment |
Okay so. The NobodyWhoDB problem: The core issue is that rusqlite does not cross-compile for android. I see these options for fixing it: a) remove nobodywhodb entirely a) might not be so unreasonable. I don't think anybody uses it at the moment? But I think we might need something like it in the future b) is the quickfix. it will make stuff work now. but it's a big fat footgun. c) interesting- but I have no idea what this would be. I think if we find a pure-rust vector store implementation, this could be a lot smoother. d) this feels like The Proper Solution, but also the most work by far... |
I did b) for now.... |
Also did a quick github actions thingy. Surprisingly, it worked on first try. Pretty good for a job with nine steps, eh? 😇 |
I spoke too soon 🤣 |
Huh... weirdly I keep getting an x86 file from github CI. I'm not sure why. It outputs an aarch64 build when I compile locally. |
That was why... Thanks to Claude for showing me 😅 |
okay so: The PR to llama-cpp-rs has been merged, so we can point to the latest crates release again. The android export seems to work. While I haven't run it on my phone yet, a kind user in the group chat managed to build and export for android. The next issue at hand is figuring out how to bundle the model with an android game. Are res:// paths relative to some path internal to the APK? In general (beyond android too), how do we export a godot project in such a way, that we don't need to manually copy the gguf file afterwards? |
Closes #66
The goal of this PR is to compile nobodywho for aarch64 android devices.
I haven't gotten the vulkan compile to work for android yet, so I'm disabling that for now. I wonder how much performance that would yield anyway
Done:
Still needs doing: