From e3a8c484cded3af3a937b15638f55515bbef78c2 Mon Sep 17 00:00:00 2001 From: yejianwu Date: Wed, 10 Jan 2018 16:44:45 +0800 Subject: [PATCH] add blank vector into codegen --- .gitignore | 2 -- mace/codegen/opencl/opencl_compiled_program.cc | 16 ++++++++++++++++ mace/codegen/tuning/tuning_params.cc | 16 ++++++++++++++++ 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 mace/codegen/opencl/opencl_compiled_program.cc create mode 100644 mace/codegen/tuning/tuning_params.cc diff --git a/.gitignore b/.gitignore index e24bb332..769047a4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,5 @@ tags cmake-build-debug/ *.pyc mace/codegen/models/ -mace/codegen/opencl/ mace/codegen/opencl_bin/ -mace/codegen/tuning/ mace/codegen/version/ diff --git a/mace/codegen/opencl/opencl_compiled_program.cc b/mace/codegen/opencl/opencl_compiled_program.cc new file mode 100644 index 00000000..35c5d641 --- /dev/null +++ b/mace/codegen/opencl/opencl_compiled_program.cc @@ -0,0 +1,16 @@ +// +// Copyright (c) 2017 XiaoMi All rights reserved. +// + +// This is a generated file, DO NOT EDIT + +#include +#include +#include + +namespace mace { + +extern const std::map> + kCompiledProgramMap = {}; + +} // namespace diff --git a/mace/codegen/tuning/tuning_params.cc b/mace/codegen/tuning/tuning_params.cc new file mode 100644 index 00000000..12b5199b --- /dev/null +++ b/mace/codegen/tuning/tuning_params.cc @@ -0,0 +1,16 @@ +// +// Copyright (c) 2017 XiaoMi All rights reserved. +// + +// This is a generated file, DO NOT EDIT + +#include +#include +#include + +namespace mace { + +extern const std::map> + kTuningParamsData = {}; + +} // namespace -- GitLab