Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getTombstoneKey (0.11 sec)

  1. tensorflow/compiler/mlir/lite/quantization/device_target.h

        static inline Signature getTombstoneKey() { return {nullptr}; }
        static unsigned getHashValue(Signature val) {
          return llvm::hash_combine_range(val.begin(), val.end());
        }
        static bool isEqual(Signature LHS, Signature RHS) {
          if (RHS == getEmptyKey()) return LHS == getEmptyKey();
          if (RHS == getTombstoneKey()) return LHS == getTombstoneKey();
          if (LHS.size() != RHS.size()) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top