Skip to content

Commit

Permalink
indentation correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshkunasi committed Jan 27, 2025
1 parent 733e523 commit 2ce81e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/lite/micro/kernels/fully_connected.cc
Original file line number Diff line number Diff line change
Expand Up @@ -238,13 +238,13 @@ TfLiteStatus FullyConnectedEval(TfLiteContext* context, TfLiteNode* node) {
case kTfLiteInt16: {
switch (filter->type) {
case kTfLiteInt8: {
if (bias == nullptr || bias->type == kTfLiteInt32) {
if (bias == nullptr || bias->type == kTfLiteInt32) {
data.is_per_channel
? tflite::reference_integer_ops::FullyConnectedPerChannel(
FullyConnectedParamsQuantized(data),
data.per_channel_output_multiplier,
reinterpret_cast<const int*>(
data.per_channel_output_shift),
data.per_channel_output_shift),
tflite::micro::GetTensorShape(input),
tflite::micro::GetTensorData<int16_t>(input),
tflite::micro::GetTensorShape(filter),
Expand Down

0 comments on commit 2ce81e8

Please sign in to comment.