Skip to content

Commit

Permalink
Micro: Fix compile error for Arm Mbed OS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jenselofsson committed Jan 8, 2020
1 parent b40e538 commit 98292c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/lite/micro/kernels/cmsis-nn/pooling.cc
Expand Up @@ -77,7 +77,7 @@ void AverageEvalFloat(const TfLiteContext* context, const TfLiteNode* node,
GetTensorShape(output), GetTensorData<float>(output));
}

void AverageEvalUint8(const TfLiteContext* context, const TfLiteNode* node,
void AverageEvalUint8(TfLiteContext* context, const TfLiteNode* node,
const TfLitePoolParams* params, const OpData* data,
const TfLiteTensor* input, TfLiteTensor* output) {
int32_t activation_min, activation_max;
Expand Down

0 comments on commit 98292c1

Please sign in to comment.