aboutsummaryrefslogtreecommitdiff
path: root/delegate/opaque/src/BatchMatMul.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'delegate/opaque/src/BatchMatMul.hpp')
-rw-r--r--delegate/opaque/src/BatchMatMul.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/delegate/opaque/src/BatchMatMul.hpp b/delegate/opaque/src/BatchMatMul.hpp
index 5da6e5ac6a..5261fbd6c4 100644
--- a/delegate/opaque/src/BatchMatMul.hpp
+++ b/delegate/opaque/src/BatchMatMul.hpp
@@ -44,15 +44,6 @@ TfLiteStatus VisitBatchMatMulOperator(DelegateData& delegateData,
return kTfLiteError;
}
- if (IsDynamicTensor(kTfLiteLHSInputTensor) || IsDynamicTensor(kTfLiteRHSInputTensor))
- {
- TF_LITE_OPAQUE_MAYBE_KERNEL_LOG(
- tfLiteContext,
- "TfLiteArmnnOpaqueDelegate: Dynamic input tensors are not supported in operator #%d node #%d: ",
- operatorCode, nodeIndex);
- return kTfLiteError;
- }
-
// Gather output indices and use to get output tensors.
int numOutputs = 0;
const int* outputTensors;