提交 4c71748b 编写于 作者: E erdustiggen

Fix typos and grammatical errors

上级 18451389
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
/* /*
* no parameter check in this layer. * no parameter check in this layer.
* only responible for index combination * only responsible for index combination
*/ */
namespace milvus { namespace milvus {
...@@ -271,7 +271,7 @@ IVFHybridIndex::LoadQuantizer(const Config& conf) { ...@@ -271,7 +271,7 @@ IVFHybridIndex::LoadQuantizer(const Config& conf) {
if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) { if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) {
return new_idx->LoadQuantizer(conf); return new_idx->LoadQuantizer(conf);
} else { } else {
WRAPPER_LOG_ERROR << "Hybrid mode not support for index type: " << int(type); WRAPPER_LOG_ERROR << "Hybrid mode not supported for index type: " << int(type);
} }
} }
...@@ -282,8 +282,8 @@ IVFHybridIndex::SetQuantizer(const knowhere::QuantizerPtr& q) { ...@@ -282,8 +282,8 @@ IVFHybridIndex::SetQuantizer(const knowhere::QuantizerPtr& q) {
if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) { if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) {
new_idx->SetQuantizer(q); new_idx->SetQuantizer(q);
} else { } else {
WRAPPER_LOG_ERROR << "Hybrid mode not support for index type: " << int(type); WRAPPER_LOG_ERROR << "Hybrid mode not supported for index type: " << int(type);
return Status(KNOWHERE_ERROR, "not support"); return Status(KNOWHERE_ERROR, "not supported");
} }
} catch (knowhere::KnowhereException& e) { } catch (knowhere::KnowhereException& e) {
WRAPPER_LOG_ERROR << e.what(); WRAPPER_LOG_ERROR << e.what();
...@@ -302,8 +302,8 @@ IVFHybridIndex::UnsetQuantizer() { ...@@ -302,8 +302,8 @@ IVFHybridIndex::UnsetQuantizer() {
if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) { if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) {
new_idx->UnsetQuantizer(); new_idx->UnsetQuantizer();
} else { } else {
WRAPPER_LOG_ERROR << "Hybrid mode not support for index type: " << int(type); WRAPPER_LOG_ERROR << "Hybrid mode not supported for index type: " << int(type);
return Status(KNOWHERE_ERROR, "not support"); return Status(KNOWHERE_ERROR, "not supported");
} }
} catch (knowhere::KnowhereException& e) { } catch (knowhere::KnowhereException& e) {
WRAPPER_LOG_ERROR << e.what(); WRAPPER_LOG_ERROR << e.what();
...@@ -322,7 +322,7 @@ IVFHybridIndex::LoadData(const knowhere::QuantizerPtr& q, const Config& conf) { ...@@ -322,7 +322,7 @@ IVFHybridIndex::LoadData(const knowhere::QuantizerPtr& q, const Config& conf) {
if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) { if (auto new_idx = std::dynamic_pointer_cast<knowhere::IVFSQHybrid>(index_)) {
return std::make_shared<IVFHybridIndex>(new_idx->LoadData(q, conf), type); return std::make_shared<IVFHybridIndex>(new_idx->LoadData(q, conf), type);
} else { } else {
WRAPPER_LOG_ERROR << "Hybrid mode not support for index type: " << int(type); WRAPPER_LOG_ERROR << "Hybrid mode not supported for index type: " << int(type);
} }
} catch (knowhere::KnowhereException& e) { } catch (knowhere::KnowhereException& e) {
WRAPPER_LOG_ERROR << e.what(); WRAPPER_LOG_ERROR << e.what();
...@@ -341,7 +341,7 @@ IVFHybridIndex::CopyToGpuWithQuantizer(const int64_t& device_id, const Config& c ...@@ -341,7 +341,7 @@ IVFHybridIndex::CopyToGpuWithQuantizer(const int64_t& device_id, const Config& c
auto new_idx = std::make_shared<IVFHybridIndex>(pair.first, type); auto new_idx = std::make_shared<IVFHybridIndex>(pair.first, type);
return std::make_pair(new_idx, pair.second); return std::make_pair(new_idx, pair.second);
} else { } else {
WRAPPER_LOG_ERROR << "Hybrid mode not support for index type: " << int(type); WRAPPER_LOG_ERROR << "Hybrid mode not supported for index type: " << int(type);
} }
} catch (knowhere::KnowhereException& e) { } catch (knowhere::KnowhereException& e) {
WRAPPER_LOG_ERROR << e.what(); WRAPPER_LOG_ERROR << e.what();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册