1 /* Copyright 2018 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14 ==============================================================================*/ 15 #ifndef TENSORFLOW_LITE_TOCO_TOCO_CONVERT_H_ 16 #define TENSORFLOW_LITE_TOCO_TOCO_CONVERT_H_ 17 18 #include "tensorflow/core/lib/core/status.h" 19 #include "tensorflow/lite/toco/args.h" 20 #include "tensorflow/lite/toco/model_flags.pb.h" 21 #include "tensorflow/lite/toco/toco_flags.pb.h" 22 23 namespace toco { 24 25 tensorflow::Status Convert(const string& graph_def_contents, 26 const TocoFlags& toco_flags, 27 const ModelFlags& model_flags, 28 string* output_file_contents, 29 int64* arithmetic_ops_count = nullptr); 30 31 tensorflow::Status Convert(const ParsedTocoFlags& parsed_toco_flags, 32 const ParsedModelFlags& parsed_model_flags); 33 } // namespace toco 34 35 #endif // TENSORFLOW_LITE_TOCO_TOCO_CONVERT_H_ 36