From c6355444df7a13df710ca0bc0f927d294b7f3867 Mon Sep 17 00:00:00 2001 From: xzl Date: Wed, 11 Oct 2017 14:10:45 +0800 Subject: [PATCH] avoid modify the proto files --- proto/DataConfig.proto | 2 -- proto/ModelConfig.proto | 1 - proto/ParameterConfig.proto | 2 -- proto/ParameterService.proto | 2 -- proto/TrainerConfig.proto | 2 -- 5 files changed, 9 deletions(-) diff --git a/proto/DataConfig.proto b/proto/DataConfig.proto index c11e69c8a..0cb5d7afb 100644 --- a/proto/DataConfig.proto +++ b/proto/DataConfig.proto @@ -13,8 +13,6 @@ See the License for the specific language governing permissions and limitations under the License. */ syntax = "proto2"; -option optimize_for = LITE_RUNTIME; - package paddle; message FileGroupConf { diff --git a/proto/ModelConfig.proto b/proto/ModelConfig.proto index a0db95b6e..ebf0911d6 100644 --- a/proto/ModelConfig.proto +++ b/proto/ModelConfig.proto @@ -13,7 +13,6 @@ See the License for the specific language governing permissions and limitations under the License. */ syntax = "proto2"; -option optimize_for = LITE_RUNTIME; import "ParameterConfig.proto"; package paddle; diff --git a/proto/ParameterConfig.proto b/proto/ParameterConfig.proto index f043f5a0a..b13570a2c 100644 --- a/proto/ParameterConfig.proto +++ b/proto/ParameterConfig.proto @@ -13,8 +13,6 @@ See the License for the specific language governing permissions and limitations under the License. */ syntax = "proto2"; -option optimize_for = LITE_RUNTIME; - package paddle; /** diff --git a/proto/ParameterService.proto b/proto/ParameterService.proto index 40c2f9d62..e3c180ccc 100644 --- a/proto/ParameterService.proto +++ b/proto/ParameterService.proto @@ -13,8 +13,6 @@ See the License for the specific language governing permissions and limitations under the License. */ syntax = "proto2"; -option optimize_for = LITE_RUNTIME; - import "ParameterConfig.proto"; import "TrainerConfig.proto"; diff --git a/proto/TrainerConfig.proto b/proto/TrainerConfig.proto index 2a7e7f736..b7c235515 100644 --- a/proto/TrainerConfig.proto +++ b/proto/TrainerConfig.proto @@ -13,8 +13,6 @@ See the License for the specific language governing permissions and limitations under the License. */ syntax = "proto2"; -option optimize_for = LITE_RUNTIME; - import "DataConfig.proto"; import "ModelConfig.proto"; -- GitLab