Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Fingerprint64 (0.21 sec)

  1. tensorflow/cc/saved_model/fingerprinting_utils.cc

                  return a.first < b.first;
                });
      for (const auto& signature_def : signature_def_sorted) {
        uint64_t signature_def_pair_hash =
            FingerprintCat64(Fingerprint64(signature_def.first),
                             Fingerprint64(SerializeProto(signature_def.second)));
        signature_def_hash =
            FingerprintCat64(signature_def_hash, signature_def_pair_hash);
        SignatureDef signature_def_val = signature_def.second;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/fingerprinting.cc

      std::string data;
      absl::Status read_status =
          ReadFileToString(Env::Default(), meta_filename, &data);
      if (read_status.ok()) {
        return tensorflow::Fingerprint64(data);
      } else {
        LOG(WARNING) << "Failed to read checkpoint file: " << read_status;
        return 0;
      }
    }
    
    uint64_t HashSavedModel(const SavedModel& saved_model) {
      std::string saved_model_serialized;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

    import static com.google.common.hash.LittleEndianByteArray.load64;
    import static java.lang.Long.rotateRight;
    
    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of FarmHash Fingerprint64, an open-source fingerprinting algorithm for strings.
     *
     * <p>Its speed is comparable to CityHash64, and its quality of hashing is at least as good.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/FarmHashFingerprint64.java

    import static com.google.common.hash.LittleEndianByteArray.load64;
    import static java.lang.Long.rotateRight;
    
    import com.google.common.annotations.VisibleForTesting;
    
    /**
     * Implementation of FarmHash Fingerprint64, an open-source fingerprinting algorithm for strings.
     *
     * <p>Its speed is comparable to CityHash64, and its quality of hashing is at least as good.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/Hashing.java

        }
    
        private static LinkageError newLinkageError(Throwable cause) {
          return new LinkageError(cause.toString(), cause);
        }
      }
    
      /**
       * Returns a hash function implementing FarmHash's Fingerprint64, an open-source algorithm.
       *
       * <p>This is designed for generating persistent fingerprints of strings. It isn't
       * cryptographically secure, but it produces a high-quality hash with fewer collisions than some
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Hashing.java

        ChecksumType(String toString) {
          this.hashFunction = new ChecksumHashFunction(this, 32, toString);
        }
      }
    
      /**
       * Returns a hash function implementing FarmHash's Fingerprint64, an open-source algorithm.
       *
       * <p>This is designed for generating persistent fingerprints of strings. It isn't
       * cryptographically secure, but it produces a high-quality hash with fewer collisions than some
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      auto program_type =
          RankedTensorType::get({3}, builder->getType<TF::StringType>());
    
      // Add MLIR module's fingerprint to compile metadata.
      uint64_t mlir_fingerprint = tensorflow::Fingerprint64(txt_module);
      metadata.set_mlir_fingerprint(mlir_fingerprint);
    
      std::string txt_metadata;
      if (tpu_compile_metadata_debug) {
        ::tensorflow::protobuf::TextFormat::Printer printer;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        return tensorflow::Fingerprint64(lhs.first) <
               tensorflow::Fingerprint64(rhs.first);
      });
      std::vector<std::pair<std::string, TensorInfo>> outputs(
          signature_def.outputs().begin(), signature_def.outputs().end());
      llvm::sort(outputs, [](const auto& lhs, const auto& rhs) {
        return tensorflow::Fingerprint64(lhs.first) <
               tensorflow::Fingerprint64(rhs.first);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      while (it != buffer_data_map_.end()) {
        std::string buffer = it->second;
        int64_t index = it->first;
        int64_t offset = result.size();
        int64_t size = buffer.size();
        uint64_t hash = tsl::Fingerprint64(buffer);
        if (hashcode_to_pos.find(hash) == hashcode_to_pos.end()) {
          hashcode_to_pos[hash] = std::make_pair(offset, size);
          buffer_idx_map_[index] = std::make_pair(offset, size);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top