dnn_backend_tf.c: fix build issue for tensorflow backend

Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
This commit is contained in:
Guo, Yejun 2020-08-13 14:48:11 +08:00
parent cfc6552032
commit 3c05c8a15f
1 changed files with 1 additions and 1 deletions

View File

@ -490,7 +490,7 @@ static DNNReturnType load_native_model(TFModel *tf_model, const char *model_file
DNNModel *native_model = NULL;
ConvolutionalNetwork *conv_network;
native_model = ff_dnn_load_model_native(model_filename);
native_model = ff_dnn_load_model_native(model_filename, NULL);
if (!native_model){
return DNN_ERROR;
}