CH-Abhinav opened a new pull request, #16640: URL: https://github.com/apache/lucene/pull/16640
### Description This is Draft PR addressing #16556 and subsequently progressing #15155 This PR is trying to move bulk scoring API down to `VectorUtilSupport` layer, allowing the `PanamaVectorUtilSupport` to see bulk operations. **Current progress (float32 dot product):** 1. Added zero-allocation `void dotProductBulk(float[] query, float[][] docs, float[] results)` to `VectorUtilSupport`. 2. Added scalar fallback loop to `DefaultVectorUtilSupport` and pass-through to `NativeVectorUtilSupport`. 3. Added 4 vector unrolling in `PanamaVectorUtilSupport` **Next steps:** * Update `RandomVectorScorer` to consume the new `VectorUtil.dotProductBulk()` method to prove the end-to-end integration. * Add similar methods to in bulk format. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
