Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConvertBuiltinCodeToDeprecatedBuiltinCode (0.85 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_SCHEMA_SCHEMA_CONVERSION_UTILS_H_
    
    #include "flatbuffers/flatbuffers.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace tflite {
    
    int8_t ConvertBuiltinCodeToDeprecatedBuiltinCode(
        const BuiltinOperator builtin_code);
    
    // The following methods are for backward compatibility for the early version
    // three, which does not have an extended builtin code.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.cc

    ==============================================================================*/
    #include "tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.h"
    
    #include <algorithm>
    
    namespace tflite {
    
    int8_t ConvertBuiltinCodeToDeprecatedBuiltinCode(
        const BuiltinOperator builtin_code) {
      return (builtin_code < BuiltinOperator_PLACEHOLDER_FOR_GREATER_OP_CODES)
                 ? static_cast<int8_t>(builtin_code)
                 : static_cast<int8_t>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top