Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEmptyKey (0.1 sec)

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

        static inline Signature getEmptyKey() { return {}; }
        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();
    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

    }  // namespace mlir
    
    namespace llvm {
    template <>
    struct DenseMapInfo<mlir::TF::ResourceHandle> {
      static mlir::TF::ResourceHandle getEmptyKey() {
        return {/*container=*/"", /*name=*/"", /*device=*/"",
                /*op=*/DenseMapInfo<mlir::Operation*>::getEmptyKey()};
      }
    
      static mlir::TF::ResourceHandle getTombstoneKey() {
        return {/*container=*/"", /*name=*/"", /*device=*/"",
    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