Update ceil.cc

removed space as part of clang-format
This commit is contained in:
Siju 2019-01-08 09:28:38 +05:30 committed by GitHub
parent 5b74a7a727
commit 8c3f0f594c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
TfLiteTensor* output = GetOutput(context, node, kOutputTensor);
optimized_ops::Ceil(GetTensorShape(input), GetTensorData<float>(input),
GetTensorShape(output), GetTensorData<float>(output));
GetTensorShape(output), GetTensorData<float>(output));
return kTfLiteOk;
}