From 602d87c09973ee42a4da6633f031b41d86160127 Mon Sep 17 00:00:00 2001 From: liuqi Date: Thu, 1 Mar 2018 11:38:40 +0800 Subject: [PATCH] Fix atrous convolution transform bug. --- mace_run.cc | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/mace_run.cc b/mace_run.cc index a38334a6..57055f30 100644 --- a/mace_run.cc +++ b/mace_run.cc @@ -135,15 +135,16 @@ int main(int argc, char **argv) { gflags::SetUsageMessage("some usage message"); gflags::ParseCommandLineFlags(&argc, &argv, true); - LOG(INFO) << "mace version: " << MaceVersion() - << "mace git version: " << MaceGitVersion() - << "model checksum: " << mace::MACE_MODEL_TAG::ModelChecksum() - << "input_shape: " << FLAGS_input_shape - << "output_shape: " << FLAGS_output_shape - << "input_file: " << FLAGS_input_file - << "output_file: " << FLAGS_output_file - << "model_data_file: " << FLAGS_model_data_file - << "device: " << FLAGS_device << "round: " << FLAGS_round; + LOG(INFO) << "mace version: " << MaceVersion(); + LOG(INFO) << "mace git version: " << MaceGitVersion(); + LOG(INFO) << "model checksum: " << mace::MACE_MODEL_TAG::ModelChecksum(); + LOG(INFO) << "input_shape: " << FLAGS_input_shape; + LOG(INFO) << "output_shape: " << FLAGS_output_shape; + LOG(INFO) << "input_file: " << FLAGS_input_file; + LOG(INFO) << "output_file: " << FLAGS_output_file; + LOG(INFO) << "model_data_file: " << FLAGS_model_data_file; + LOG(INFO) << "device: " << FLAGS_device; + LOG(INFO) << "round: " << FLAGS_round; vector input_shape_vec; vector output_shape_vec; -- GitLab