提交 602d87c0 编写于 作者: L liuqi

Fix atrous convolution transform bug.

上级 12c3af21
...@@ -135,15 +135,16 @@ int main(int argc, char **argv) { ...@@ -135,15 +135,16 @@ int main(int argc, char **argv) {
gflags::SetUsageMessage("some usage message"); gflags::SetUsageMessage("some usage message");
gflags::ParseCommandLineFlags(&argc, &argv, true); gflags::ParseCommandLineFlags(&argc, &argv, true);
LOG(INFO) << "mace version: " << MaceVersion() LOG(INFO) << "mace version: " << MaceVersion();
<< "mace git version: " << MaceGitVersion() LOG(INFO) << "mace git version: " << MaceGitVersion();
<< "model checksum: " << mace::MACE_MODEL_TAG::ModelChecksum() LOG(INFO) << "model checksum: " << mace::MACE_MODEL_TAG::ModelChecksum();
<< "input_shape: " << FLAGS_input_shape LOG(INFO) << "input_shape: " << FLAGS_input_shape;
<< "output_shape: " << FLAGS_output_shape LOG(INFO) << "output_shape: " << FLAGS_output_shape;
<< "input_file: " << FLAGS_input_file LOG(INFO) << "input_file: " << FLAGS_input_file;
<< "output_file: " << FLAGS_output_file LOG(INFO) << "output_file: " << FLAGS_output_file;
<< "model_data_file: " << FLAGS_model_data_file LOG(INFO) << "model_data_file: " << FLAGS_model_data_file;
<< "device: " << FLAGS_device << "round: " << FLAGS_round; LOG(INFO) << "device: " << FLAGS_device;
LOG(INFO) << "round: " << FLAGS_round;
vector<int64_t> input_shape_vec; vector<int64_t> input_shape_vec;
vector<int64_t> output_shape_vec; vector<int64_t> output_shape_vec;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册