Skip to content

Commit

Permalink
Merge pull request #147 from tensorflow/format_fix
Browse files Browse the repository at this point in the history
flutter format
  • Loading branch information
PaulTR authored Sep 27, 2023
2 parents 22cdbdd + 2ed5464 commit c361052
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions lib/src/bindings/tensorflow_lite_bindings_generated.dart
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,9 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterDeletePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<TfLiteInterpreter>)>>('TfLiteInterpreterDelete');
ffi
.NativeFunction<ffi.Void Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterDelete');
late final _TfLiteInterpreterDelete = _TfLiteInterpreterDeletePtr.asFunction<
void Function(ffi.Pointer<TfLiteInterpreter>)>();

Expand All @@ -566,8 +566,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterGetInputTensorCountPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterGetInputTensorCount');
late final _TfLiteInterpreterGetInputTensorCount =
_TfLiteInterpreterGetInputTensorCountPtr.asFunction<
Expand Down Expand Up @@ -643,8 +643,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterAllocateTensorsPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterAllocateTensors');
late final _TfLiteInterpreterAllocateTensors =
_TfLiteInterpreterAllocateTensorsPtr.asFunction<
Expand Down Expand Up @@ -688,9 +688,9 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterInvokePtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(
ffi.Pointer<TfLiteInterpreter>)>>('TfLiteInterpreterInvoke');
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterInvoke');
late final _TfLiteInterpreterInvoke = _TfLiteInterpreterInvokePtr.asFunction<
int Function(ffi.Pointer<TfLiteInterpreter>)>();

Expand All @@ -704,8 +704,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterGetOutputTensorCountPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterGetOutputTensorCount');
late final _TfLiteInterpreterGetOutputTensorCount =
_TfLiteInterpreterGetOutputTensorCountPtr.asFunction<
Expand Down Expand Up @@ -917,8 +917,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterResetVariableTensorsPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterResetVariableTensors');
late final _TfLiteInterpreterResetVariableTensors =
_TfLiteInterpreterResetVariableTensorsPtr.asFunction<
Expand Down Expand Up @@ -1376,8 +1376,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterGetSignatureCountPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterGetSignatureCount');
late final _TfLiteInterpreterGetSignatureCount =
_TfLiteInterpreterGetSignatureCountPtr.asFunction<
Expand Down

0 comments on commit c361052

Please sign in to comment.