Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsLstmOp (0.07 sec)

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

      // E.g., AddOp -> CreateAddOperator
      std::ostringstream oss;
      oss << "Create" << op_name.drop_front(4).str() << "erator";
      return oss.str();
    }
    
    static inline bool IsLstmOp(const StringRef op_name) {
      return op_name.take_back(6) == "LSTMOp";
    }
    
    static int HasOptions(const Record &def) {
      if (def.getValueAsBit("hasOptions")) {
        return 1;
      }
    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