mirror of https://github.com/milvus-io/milvus.git
[skip ci] Remove unused utils import (#8384)
Signed-off-by: ThreadDao <yufen.zong@zilliz.com>pull/8422/head
parent
6469d83072
commit
169fd5d572
|
@ -1,9 +1,5 @@
|
|||
import os
|
||||
import sys
|
||||
import random
|
||||
import pdb
|
||||
import string
|
||||
import struct
|
||||
import logging
|
||||
import threading
|
||||
import traceback
|
||||
|
@ -68,8 +64,10 @@ default_index_params = [
|
|||
{"nlist": 128}
|
||||
]
|
||||
|
||||
def create_target_index(index,field_name):
|
||||
index["field_name"]=field_name
|
||||
|
||||
def create_target_index(index, field_name):
|
||||
index["field_name"] = field_name
|
||||
|
||||
|
||||
def index_cpu_not_support():
|
||||
return ["IVF_SQ8_HYBRID"]
|
||||
|
@ -1021,5 +1019,3 @@ class MyThread(threading.Thread):
|
|||
super(MyThread, self).join()
|
||||
if self.exc:
|
||||
raise self.exc
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue