Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetOperatorName (0.26 sec)

  1. tensorflow/compiler/mlir/lite/converter_gen.cc

          os << "      tflite::BuiltinOptions2_" << option_name << ", "
             << "Create" << option_name << "(tflOp, fbb).Union()";
        }
        os << ");\n}\n\n";
      }
    }
    
    static inline std::string GetOperatorName(const Record &def) {
      auto name = def.getValueAsString("opName");
      // Special case for basic_lstm.
      if (name == "basic_lstm") {
        return "LSTM";
      }
      return name.upper();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top