| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- ==============================================================================*/
- #include "tensorflow/lite/schema/schema_utils.h"
- #include <algorithm>
- #include "tensorflow/lite/kernels/internal/compatibility.h"
- namespace tflite {
- // The following GetBuiltinCode methods are the utility methods for reading
- // builtin operatore code, ensuring compatibility issues between v3 and v3a
- // schema. Always the maximum value of the two fields always will be the correct
- // value as follows:
- //
- // - Supporting schema version v3 models
- //
- // The `builtin_code` field is not available in the v3 models. Flatbuffer
- // library will feed zero value, which is the default value in the v3a schema.
- // The actual builtin operatore code value will exist in the
- // `deprecated_builtin_code` field. At the same time, it implies that
- // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
- // fields will be same with `deprecated_builtin_code'.
- //
- // - Supporting builtin operator codes beyonds 127
- //
- // New builtin operators, whose operator code is larger than 127, can not be
- // assigned to the `deprecated_builtin_code` field. In such cases, the
- // value of the `builtin_code` field should be used for the builtin operator
- // code. In the case, the maximum value of the two fields will be the value of
- // the `builtin_code` as the right value.
- BuiltinOperator GetBuiltinCode(const OperatorCode* op_code) {
- // Caller should guarantee that the given argument value is not a nullptr.
- TFLITE_DCHECK(op_code != nullptr);
- return std::max(
- op_code->builtin_code(),
- static_cast<BuiltinOperator>(op_code->deprecated_builtin_code()));
- }
- BuiltinOperator GetBuiltinCode(const OperatorCodeT* op_code) {
- // Caller should guarantee that the given argument value is not a nullptr.
- TFLITE_DCHECK(op_code != nullptr);
- return std::max(op_code->builtin_code, static_cast<BuiltinOperator>(
- op_code->deprecated_builtin_code));
- }
- } // namespace tflite
|