From 07c10f46c68b2916eb7f8d4368d931cfb2d7b1f4 Mon Sep 17 00:00:00 2001 From: liuqi Date: Mon, 2 Apr 2018 09:21:49 +0800 Subject: [PATCH] Fix format problems. --- mace/benchmark/benchmark_model.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mace/benchmark/benchmark_model.cc b/mace/benchmark/benchmark_model.cc index 85f80bed..b4644e65 100644 --- a/mace/benchmark/benchmark_model.cc +++ b/mace/benchmark/benchmark_model.cc @@ -330,7 +330,8 @@ int Main(int argc, char **argv) { std::multiplies()); auto buffer_out = std::shared_ptr(new float[output_size], std::default_delete()); - outputs[output_names[i]] = mace::MaceTensor(output_shape_vec[i], buffer_out); + outputs[output_names[i]] = mace::MaceTensor(output_shape_vec[i], + buffer_out); } // Init model -- GitLab