Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for basic_lstm (0.27 sec)

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

        }
        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();
    }
    
    // Emits a function that returns built-in operator code for each TFLite op.
    //
    // The signature of the function is:
    //
    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