forked from milvus-io/milvus-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonUtils.java
More file actions
316 lines (277 loc) · 11.2 KB
/
CommonUtils.java
File metadata and controls
316 lines (277 loc) · 11.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package io.milvus.v1;
import io.milvus.common.utils.Float16Utils;
import io.milvus.param.R;
import org.tensorflow.Tensor;
import org.tensorflow.ndarray.Shape;
import org.tensorflow.ndarray.buffer.ByteDataBuffer;
import org.tensorflow.ndarray.buffer.DataBuffers;
import org.tensorflow.types.TBfloat16;
import org.tensorflow.types.TFloat16;
import java.nio.ByteBuffer;
import java.util.*;
public class CommonUtils {
public static void handleResponseStatus(R<?> r) {
if (r.getStatus() != R.Status.Success.getCode()) {
throw new RuntimeException(r.getMessage());
}
}
public static List<Float> generateFloatVector(int dimension) {
Random ran = new Random();
List<Float> vector = new ArrayList<>();
for (int i = 0; i < dimension; ++i) {
vector.add(ran.nextFloat());
}
return vector;
}
public static List<Float> generateFloatVector(int dimension, Float initValue) {
List<Float> vector = new ArrayList<>();
for (int i = 0; i < dimension; ++i) {
vector.add(initValue);
}
return vector;
}
public static List<List<Float>> generateFloatVectors(int dimension, int count) {
List<List<Float>> vectors = new ArrayList<>();
for (int n = 0; n < count; ++n) {
List<Float> vector = generateFloatVector(dimension);
vectors.add(vector);
}
return vectors;
}
public static List<List<Float>> generateFixFloatVectors(int dimension, int count) {
List<List<Float>> vectors = new ArrayList<>();
for (int n = 0; n < count; ++n) {
List<Float> vector = generateFloatVector(dimension, (float) n);
vectors.add(vector);
}
return vectors;
}
public static void compareFloatVectors(List<Float> vec1, List<Float> vec2) {
if (vec1.size() != vec2.size()) {
throw new RuntimeException(String.format("Vector dimension mismatch: %d vs %d", vec1.size(), vec2.size()));
}
for (int i = 0; i < vec1.size(); i++) {
if (Math.abs(vec1.get(i) - vec2.get(i)) > 0.001f) {
throw new RuntimeException(String.format("Vector value mismatch: %f vs %f at No.%d value",
vec1.get(i), vec2.get(i), i));
}
}
}
/// //////////////////////////////////////////////////////////////////////////////////////////////////
public static ByteBuffer generateBinaryVector(int dimension) {
Random ran = new Random();
int byteCount = dimension / 8;
// binary vector doesn't care endian since each byte is independent
ByteBuffer vector = ByteBuffer.allocate(byteCount);
for (int i = 0; i < byteCount; ++i) {
vector.put((byte) ran.nextInt(Byte.MAX_VALUE));
}
return vector;
}
public static List<ByteBuffer> generateBinaryVectors(int dimension, int count) {
List<ByteBuffer> vectors = new ArrayList<>();
for (int n = 0; n < count; ++n) {
ByteBuffer vector = generateBinaryVector(dimension);
vectors.add(vector);
}
return vectors;
}
public static void printBinaryVector(ByteBuffer vector) {
vector.rewind();
while (vector.hasRemaining()) {
String byteStr = String.format("%8s", Integer.toBinaryString(vector.get())).replace(' ', '0');
System.out.print(byteStr);
}
System.out.println();
}
/// //////////////////////////////////////////////////////////////////////////////////////////////////
public static TBfloat16 genTensorflowBF16Vector(int dimension) {
Random ran = new Random();
float[] array = new float[dimension];
for (int n = 0; n < dimension; ++n) {
array[n] = ran.nextFloat();
}
return TBfloat16.vectorOf(array);
}
public static List<TBfloat16> genTensorflowBF16Vectors(int dimension, int count) {
List<TBfloat16> vectors = new ArrayList<>();
for (int n = 0; n < count; ++n) {
TBfloat16 vector = genTensorflowBF16Vector(dimension);
vectors.add(vector);
}
return vectors;
}
public static ByteBuffer encodeTensorBF16Vector(TBfloat16 vector) {
ByteDataBuffer tensorBuf = vector.asRawTensor().data();
ByteBuffer buf = ByteBuffer.allocate((int) tensorBuf.size());
for (long i = 0; i < tensorBuf.size(); i++) {
buf.put(tensorBuf.getByte(i));
}
return buf;
}
public static List<ByteBuffer> encodeTensorBF16Vectors(List<TBfloat16> vectors) {
List<ByteBuffer> buffers = new ArrayList<>();
for (TBfloat16 tf : vectors) {
ByteBuffer bf = encodeTensorBF16Vector(tf);
buffers.add(bf);
}
return buffers;
}
public static TBfloat16 decodeBF16VectorToTensor(ByteBuffer buf) {
if (buf.limit() % 2 != 0) {
return null;
}
int dim = buf.limit() / 2;
ByteDataBuffer bf = DataBuffers.of(buf.array());
return Tensor.of(TBfloat16.class, Shape.of(dim), bf);
}
public static List<Float> decodeBF16VectorToFloat(ByteBuffer buf) {
List<Float> vector = new ArrayList<>();
TBfloat16 tf = decodeBF16VectorToTensor(buf);
for (long i = 0; i < tf.size(); i++) {
vector.add(tf.getFloat(i));
}
return vector;
}
public static TFloat16 genTensorflowFP16Vector(int dimension) {
Random ran = new Random();
float[] array = new float[dimension];
for (int n = 0; n < dimension; ++n) {
array[n] = ran.nextFloat();
}
return TFloat16.vectorOf(array);
}
public static List<TFloat16> genTensorflowFP16Vectors(int dimension, int count) {
List<TFloat16> vectors = new ArrayList<>();
for (int n = 0; n < count; ++n) {
TFloat16 vector = genTensorflowFP16Vector(dimension);
vectors.add(vector);
}
return vectors;
}
public static ByteBuffer encodeTensorFP16Vector(TFloat16 vector) {
ByteDataBuffer tensorBuf = vector.asRawTensor().data();
ByteBuffer buf = ByteBuffer.allocate((int) tensorBuf.size());
for (long i = 0; i < tensorBuf.size(); i++) {
buf.put(tensorBuf.getByte(i));
}
return buf;
}
public static List<ByteBuffer> encodeTensorFP16Vectors(List<TFloat16> vectors) {
List<ByteBuffer> buffers = new ArrayList<>();
for (TFloat16 tf : vectors) {
ByteBuffer bf = encodeTensorFP16Vector(tf);
buffers.add(bf);
}
return buffers;
}
public static TFloat16 decodeFP16VectorToTensor(ByteBuffer buf) {
if (buf.limit() % 2 != 0) {
return null;
}
int dim = buf.limit() / 2;
ByteDataBuffer bf = DataBuffers.of(buf.array());
return Tensor.of(TFloat16.class, Shape.of(dim), bf);
}
public static List<Float> decodeFP16VectorToFloat(ByteBuffer buf) {
List<Float> vector = new ArrayList<>();
TFloat16 tf = decodeFP16VectorToTensor(buf);
for (long i = 0; i < tf.size(); i++) {
vector.add(tf.getFloat(i));
}
return vector;
}
/// //////////////////////////////////////////////////////////////////////////////////////////////////
public static ByteBuffer encodeFloat16Vector(List<Float> originVector, boolean bfloat16) {
if (bfloat16) {
return Float16Utils.f32VectorToBf16Buffer(originVector);
} else {
return Float16Utils.f32VectorToFp16Buffer(originVector);
}
}
public static List<Float> decodeFloat16Vector(ByteBuffer buf, boolean bfloat16) {
if (bfloat16) {
return Float16Utils.bf16BufferToVector(buf);
} else {
return Float16Utils.fp16BufferToVector(buf);
}
}
public static List<ByteBuffer> encodeFloat16Vectors(List<List<Float>> originVectors, boolean bfloat16) {
List<ByteBuffer> vectors = new ArrayList<>();
for (List<Float> originVector : originVectors) {
if (bfloat16) {
vectors.add(Float16Utils.f32VectorToBf16Buffer(originVector));
} else {
vectors.add(Float16Utils.f32VectorToFp16Buffer(originVector));
}
}
return vectors;
}
public static ByteBuffer generateFloat16Vector(int dimension, boolean bfloat16) {
List<Float> originalVector = generateFloatVector(dimension);
return encodeFloat16Vector(originalVector, bfloat16);
}
public static List<ByteBuffer> generateFloat16Vectors(int dimension, int count, boolean bfloat16) {
List<ByteBuffer> vectors = new ArrayList<>();
for (int i = 0; i < count; i++) {
ByteBuffer buf = generateFloat16Vector(dimension, bfloat16);
vectors.add((buf));
}
return vectors;
}
/// //////////////////////////////////////////////////////////////////////////////////////////////////
public static ByteBuffer generateInt8Vector(int dimension) {
Random ran = new Random();
int byteCount = dimension;
// binary vector doesn't care endian since each byte is independent
ByteBuffer vector = ByteBuffer.allocate(byteCount);
for (int i = 0; i < byteCount; ++i) {
vector.put((byte) (ran.nextInt(256) - 128));
}
return vector;
}
public static List<ByteBuffer> generateInt8Vectors(int dimension, int count) {
List<ByteBuffer> vectors = new ArrayList<>();
for (int n = 0; n < count; ++n) {
ByteBuffer vector = generateInt8Vector(dimension);
vectors.add(vector);
}
return vectors;
}
/// //////////////////////////////////////////////////////////////////////////////////////////////////
public static SortedMap<Long, Float> generateSparseVector() {
Random ran = new Random();
SortedMap<Long, Float> sparse = new TreeMap<>();
int dim = ran.nextInt(10) + 10;
while (sparse.size() < dim) {
sparse.put((long) ran.nextInt(1000000), ran.nextFloat());
}
return sparse;
}
public static List<SortedMap<Long, Float>> generateSparseVectors(int count) {
List<SortedMap<Long, Float>> vectors = new ArrayList<>();
for (int n = 0; n < count; ++n) {
SortedMap<Long, Float> sparse = generateSparseVector();
vectors.add(sparse);
}
return vectors;
}
}