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
I noticed the IVF-PQ specializations don't seem to be getting used consistently throughout the codebase, which I think is contributing to the growing build time.
Here's the (value_t, index_t) type pairs that are being used in each source file:
Any types being used which are not being specialized are going to cause that call to be recompiled each time it is used. We should make sure we're at least specializing the union of these types if not trying to see where we can prune some out.
The text was updated successfully, but these errors were encountered:
I noticed the IVF-PQ specializations don't seem to be getting used consistently throughout the codebase, which I think is contributing to the growing build time.
Here's the
(value_t, index_t)
type pairs that are being used in each source file:Search:
Any types being used which are not being specialized are going to cause that call to be recompiled each time it is used. We should make sure we're at least specializing the union of these types if not trying to see where we can prune some out.
The text was updated successfully, but these errors were encountered: