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
Currently in k-NN code base we time different functions like graph creation etc, and also we put some stats in k-NN stats api related to different invocations of different code path. To achieve this we have duplicated code all over the place.
To make it easier we can build some custom annotation in java that can do this work for us and which can be reused at different place.
Some annotation that I am thinking:
@LogExecutionTime
@EmitStats(name="FaissInit")
There can be many more.
The text was updated successfully, but these errors were encountered:
Description
Currently in k-NN code base we time different functions like graph creation etc, and also we put some stats in k-NN stats api related to different invocations of different code path. To achieve this we have duplicated code all over the place.
To make it easier we can build some custom annotation in java that can do this work for us and which can be reused at different place.
Some annotation that I am thinking:
There can be many more.
The text was updated successfully, but these errors were encountered: