Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for has_operator_ (0.17 sec)

  1. tensorflow/compiler/mlir/lite/metrics/types_util.h

        if (v.has_subcomponent()) {
          hash_result ^= std::hash<std::string>{}(v.subcomponent()) << 1;
        }
        if (v.has_error_code()) {
          hash_result ^= std::hash<int>{}(v.error_code()) << 2;
        }
        if (v.has_operator_() && v.operator_().has_name()) {
          hash_result ^= std::hash<std::string>{}(v.operator_().name()) << 3;
        }
        return hash_result;
      }
    };
    
    // The comparison function for ConverterErrorData.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 16:09:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top