"vscode:/vscode.git/clone" did not exist on "6a479588db5201c1f4dfc4c01350f5c91d8d8c0d"
Commit a0381457 authored by LDOUBLEV's avatar LDOUBLEV
Browse files

fix bug in line185

parent b4d7be33
...@@ -182,7 +182,7 @@ function func_inference(){ ...@@ -182,7 +182,7 @@ function func_inference(){
if [ ${use_trt} = "False" ] && [ ${precision} != "fp32" ]; then if [ ${use_trt} = "False" ] && [ ${precision} != "fp32" ]; then
continue continue
fi fi
if [ ${use_trt} = "False" || ${precision} != "int8"] && [ ${_flag_quant} = "True" ]; then if [[ ${use_trt} = "False" || ${precision} != "int8" ]] && [ ${_flag_quant} = "True" ]; then
continue continue
fi fi
for batch_size in ${batch_size_list[*]}; do for batch_size in ${batch_size_list[*]}; do
......
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