Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    // ConstBytesAttr
    //===----------------------------------------------------------------------===//
    
    Attribute ConstBytesAttr::parse(AsmParser& parser, Type type) {
      if (parser.parseColon()) {
        return nullptr;
      }
    
      std::string data;
      if (parser.parseString(&data)) {
        return nullptr;
      }
      if (data.size() < 2 || data.substr(0, 2) != "0x") {
    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