"test/vscode:/vscode.git/clone" did not exist on "a6e1d4cf74826c0c465f0e01861f8aae3c26e8e7"
Commit a8e33f9f authored by Shucai Xiao's avatar Shucai Xiao
Browse files

fix a bug

parent efd73d5c
......@@ -457,7 +457,7 @@ std::size_t capture_arguments(program& prog,
size_t num_quant_params = 0;
// the int8 quantization only support dot and convolution
std::vector<std::string> op_names = {"dot", "convolution"};
std::set<std::string> op_names = {"dot", "convolution"};
std::set<std::string> input_ins_names(ins_names.begin(), ins_names.end());
if(!std::includes(
op_names.begin(), op_names.end(), input_ins_names.begin(), input_ins_names.end()))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment