xloem
xloem
huggingface has a normative python model interface where each model has an architecture wrapped with code in their codebase. Often this means copying work from other codebases or languages into...
Mozilla, it sounds like communicating around this has been difficult. It would be great if it were supported to build on arm machines. Many people run systems that are aarch64...
I've gotten this code kind of together now. Is anybody else using android and able to test it?
I started work on this for https://github.com/orgs/brainflow-dev/projects/1 which is just a casual project for me, to get an openbci device running on android that hasn't in a long time. Not...
> I had a quick test on an unrooted Android 10, and it appear to work. However, devices are only detected and prompted for request if plugged into the device...
The biggest thing in the way of me just implementing the device list rescanning is that I don't have an application to test it yet. The brainflow test app doesn't...
I've read your post but I am not set up to work on this these days. It's inspiring you tried my work and I'll return and edit this post if...
I believe the unneeded `android_jni_gen_string` function and its usage may have some further memory issues present in it. This PR may need attention to remove the function or address the...
Thanks for catching that. I tried to update the todo list. Possibly a clear solution to `DetachCurrentThread` would be to use `GetEnv` to get the jni pointer, then set a...
This states that global references are thread-agnostic: https://www.ibm.com/docs/en/sdk-java-technology/8?topic=collector-overview-jni-object-references Android's docs recommend using a pthread destructor to detach from the thread: https://developer.android.com/training/articles/perf-jni#threads Your worker thread idea is great too.