milvus/core/src/server/init/CpuChecker.cpp
Cai Yudong b532a69c8b
clean compile warning (#2380)
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
2020-05-19 17:58:23 +00:00

72 lines
2.4 KiB
C++

// Copyright (C) 2019-2020 Zilliz. All rights reserved.
//
// Licensed 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.
#include "server/init/CpuChecker.h"
#include <iostream>
#include <string>
#include <vector>
#include <fiu-local.h>
#include "faiss/FaissHook.h"
#include "faiss/utils/instruction_set.h"
#include "utils/Log.h"
#include "utils/StringHelpFunctions.h"
namespace milvus {
namespace server {
Status
CpuChecker::CheckCpuInstructionSet() {
std::vector<std::string> instruction_sets;
bool support_avx512 = faiss::support_avx512();
fiu_do_on("CpuChecker.CheckCpuInstructionSet.not_support_avx512", support_avx512 = false);
if (support_avx512) {
instruction_sets.emplace_back("avx512");
}
bool support_axv2 = faiss::support_avx2();
fiu_do_on("CpuChecker.CheckCpuInstructionSet.not_support_avx2", support_axv2 = false);
if (support_axv2) {
instruction_sets.emplace_back("avx2");
}
bool support_sse4_2 = faiss::support_sse();
fiu_do_on("CpuChecker.CheckCpuInstructionSet.not_support_sse4_2", support_sse4_2 = false);
if (support_sse4_2) {
instruction_sets.emplace_back("sse4_2");
}
fiu_do_on("CpuChecker.CheckCpuInstructionSet.instruction_sets_empty", instruction_sets.clear());
if (instruction_sets.empty()) {
std::string msg =
"CPU instruction sets are not supported. Ensure the CPU supports at least one of the following instruction "
"sets: sse4_2, avx2, avx512";
LOG_SERVER_FATAL_ << msg;
std::cerr << msg << std::endl;
return Status(SERVER_UNEXPECTED_ERROR, msg);
}
std::string instruction_sets_msg;
StringHelpFunctions::MergeStringWithDelimeter(instruction_sets, ", ", instruction_sets_msg);
std::string msg = "Supported CPU instruction sets: " + instruction_sets_msg;
LOG_SERVER_INFO_ << msg;
LOG_ENGINE_DEBUG_ << msg;
std::cout << msg << std::endl;
return Status::OK();
}
} // namespace server
} // namespace milvus