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:
parent
c7a7d50dd4
commit
2ea65c4f4f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user