Skip to content
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

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open

Draft: Compile for android #67

wants to merge 22 commits into from

Conversation

AsbjornOlling
Copy link
Contributor

@AsbjornOlling AsbjornOlling commented Dec 18, 2024

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:

  • added new dependencies to nix shell
  • forked llama-cpp-rs, fixed build script to support android cmake vars

Still needs doing:

  • fix linking error
  • add android build to github actions
  • update the gdextension file
  • test on a real android phone
  • get the llama-cpp-rs PR merged
  • fix the db module
  • ...probably more stuff that I don't know about yet

@AsbjornOlling
Copy link
Contributor Author

Hm... it seems like the only thing blocking android compilation rn is the sqlite stuff.

If I just uncomment mod db; from lib.rs, then it builds and produces an aarc64 nobodywho.so file.

@AsbjornOlling
Copy link
Contributor Author

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
b) remove nobodywhodb for android only
c) replace the rusqlite dependency with something that does cross-compile for android
d) fix the problem upstream, make a PR

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...

@AsbjornOlling
Copy link
Contributor Author

I did b) for now....

@AsbjornOlling
Copy link
Contributor Author

Also did a quick github actions thingy. Surprisingly, it worked on first try.

Pretty good for a job with nine steps, eh? 😇

@AsbjornOlling
Copy link
Contributor Author

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 🤣

@AsbjornOlling
Copy link
Contributor Author

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.

@AsbjornOlling
Copy link
Contributor Author

That was why... Thanks to Claude for showing me 😅

@AsbjornOlling
Copy link
Contributor Author

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Export for Android
2 participants