Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTombstoneKey (0.22 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)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h

                /*op=*/DenseMapInfo<mlir::Operation*>::getEmptyKey()};
      }
    
      static mlir::TF::ResourceHandle getTombstoneKey() {
        return {/*container=*/"", /*name=*/"", /*device=*/"",
                /*op=*/DenseMapInfo<mlir::Operation*>::getTombstoneKey()};
      }
    
      static unsigned getHashValue(
          const mlir::TF::ResourceHandle& resource_handle) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 03 19:26:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top