micro: fixup use of ReportError in DEPTH_TO_SPACE

Change use of ReportError() to TF_LITE_KERNEL_LOG to satisfy an
internal CI check, even though this code is not yet included in
the build.
This commit is contained in:
Ryan Kuester 2021-01-04 15:09:22 -06:00
parent c7a7d50dd4
commit 2ea65c4f4f

View File

@ -136,8 +136,8 @@ TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
}
break;
default:
context->ReportError(context, "Type '%s' not currently supported.",
TfLiteTypeGetName(input->type));
TF_LITE_KERNEL_LOG(context, "Type '%s' not currently supported.",
TfLiteTypeGetName(input->type));
return kTfLiteError;
}
#undef TF_LITE_DEPTH_TO_SPACE