Madhuram Jajoo
Madhuram Jajoo
I used [llm_inference](https://github.com/googlesamples/mediapipe/tree/main/examples/llm_inference) sample with `gemma-2b-it-cpu-int4.bin` on Pixel 8 Pro emulator. The prefill speed seems to be in minutes. Pixel 8 Pro configurations:- RAM - 22GB, VM heap - 512mb...
**Describe the Issue** From [this line](https://github.com/google/android-fhir/blob/10165589c4e7617b3bdd3a426d037f639c135342/engine/src/main/java/com/google/android/fhir/search/MoreSearch.kt#L363) it seems the sql query may return duplicate records. Update: We do a `distinctBy` [here](https://github.com/google/android-fhir/blob/10165589c4e7617b3bdd3a426d037f639c135342/engine/src/main/java/com/google/android/fhir/db/impl/DatabaseImpl.kt#L210). So the records are still distinct but we should...
**IMPORTANT: All PRs must be linked to an issue (except for extremely trivial and straightforward changes).** Fixes #2556 **Description** Clear and concise code change description. **Alternative(s) considered** Have you considered...
**Describe the Issue** The CRUD + Search APIs are suspend function which application can invoke in main thread also. We should wrap these function within `withContext(Dispatcher.IO){}" to ensure that this...
**Describe the bug** A question like following will enable mulit-selection but since repeats is false the SDC crashes on selecting the second choice. ``` { "type": "choice", "extension": [ {...
**Describe the Issue** Room components(@Database, @Dao, @Entity) should be completely independent of hapi dependencies. The primary reason is to maintain a better code structure as the implementation of the DAOs...
**IMPORTANT: All PRs must be linked to an issue (except for extremely trivial and straightforward changes).** Partially Fixes #2686 **Description** Clear and concise code change description. **Alternative(s) considered** Have you...
**Describe the Issue** Currently in search for forward includes, we search the ReferenceIndexEntity table for reference values in a resource. We could probably replace it with extracting reference values from...