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 // An utility library to generate pure C header for builtin ops definition. 16 #ifndef TENSORFLOW_LITE_SCHEMA_BUILTIN_OPS_HEADER_GENERATOR_H_ 17 #define TENSORFLOW_LITE_SCHEMA_BUILTIN_OPS_HEADER_GENERATOR_H_ 18 19 #include <iostream> 20 21 namespace tflite { 22 namespace builtin_ops_header { 23 24 // Check if the input enum name (from the Flatbuffer definition) is valid. 25 bool IsValidInputEnumName(const std::string& name); 26 27 // Convert the enum name from Flatbuffer convention to C enum name convention. 28 // E.g. `L2_POOL_2D` becomes `kTfLiteBuiltinL2Pool2d`. 29 std::string ConstantizeVariableName(const std::string& name); 30 31 // The function generates a pure C header for builtin ops definition, and write 32 // it to the output stream. 33 bool GenerateHeader(std::ostream& os); 34 35 } // namespace builtin_ops_header 36 } // namespace tflite 37 38 #endif // TENSORFLOW_LITE_SCHEMA_BUILTIN_OPS_HEADER_GENERATOR_H_ 39