You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, for vectors stored as element_type: byte we disallow scripting functions to be calculated with floating point query. However, if the user used some external quantization methodology, allowing the asymmetric distance calculation like this might be useful.
Since we already calculate magnitude for everything, the implementation will be fairly trivial.
The one aspect around this that might be "slow" is the actual vector ops. We have no SIMD optimized operations between float[], byte[] for dot-product. But, that should be fairly simple to do.