Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseTypes (0.09 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    };
    
    void TFLDialect::printType(Type type, DialectAsmPrinter& os) const {
      if (type.isa<ControlType>()) {
        os << "control";
        return;
      }
      os << "<unknown TFL type>";
    }
    
    Type TFLDialect::parseType(DialectAsmParser& parser) const {
      StringRef data_type;
      if (parser.parseKeyword(&data_type)) return Type();
      if (data_type == "control") return ControlType::get(getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top