misc improvements

This commit is contained in:
Jonathan Shook
2024-01-11 12:54:04 -06:00
parent 990d3b73bb
commit 6a668f3947
3 changed files with 10 additions and 7 deletions

View File

@@ -22,6 +22,11 @@ import io.nosqlbench.virtdata.api.annotations.ThreadSafeMapper;
import java.util.function.LongFunction;
/**
* This represents an enumerated population of vectors of some dimension,
* where any ordinal values which address outside of that enumeration
* simply wrap with modulo.
*/
@ThreadSafeMapper
@Categories(Category.experimental)
public class DNN_euclidean_v_wrap implements LongFunction<float[]> {