Skip to content

Commit

Permalink
fixup! Uniform code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
BenBE committed Jan 23, 2022
1 parent 07f7acb commit cc8554e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/transpose_conv_bias.cc
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,13 @@ TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
op_params.stride_height = stride_height;

TransposeConvBias(
op_params, ::tflite::GetTensorShape(input),
op_params,
::tflite::GetTensorShape(input),
::tflite::GetTensorData<float>(input),
::tflite::GetTensorShape(weights),
::tflite::GetTensorData<float>(weights),
::tflite::GetTensorShape(bias), ::tflite::GetTensorData<float>(bias),
::tflite::GetTensorShape(bias),
::tflite::GetTensorData<float>(bias),
::tflite::GetTensorShape(output),
::tflite::GetTensorData<float>(output),
// Last two args specify im2col which reference_ops ignores.
Expand Down

0 comments on commit cc8554e

Please sign in to comment.