Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for HashTable (0.18 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    func printTags(w io.Writer, rpt *Report) error {
    	p := rpt.prof
    
    	o := rpt.options
    	formatTag := func(v int64, key string) string {
    		return measurement.ScaledLabel(v, key, o.OutputUnit)
    	}
    
    	// Hashtable to keep accumulate tags as key,value,count.
    	tagMap := make(map[string]map[string]int64)
    	for _, s := range p.Sample {
    		for key, vals := range s.Label {
    			for _, val := range vals {
    				valueMap, ok := tagMap[key]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		return 0
    	}
    	d.linkctxt.Errorf(symIdx, "internal error: no entry for sym %d in rtmap\n", symIdx)
    	return 0
    }
    
    // Find child by AT_name using hashtable if available or linear scan
    // if not.
    func findchild(die *dwarf.DWDie, name string) *dwarf.DWDie {
    	var prev *dwarf.DWDie
    	for ; die != prev; prev, die = die, walktypedef(die) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/runtime/map.go

    // high-order bits of each hash to distinguish the entries
    // within a single bucket.
    //
    // If more than 8 keys hash to a bucket, we chain on
    // extra buckets.
    //
    // When the hashtable grows, we allocate a new array
    // of buckets twice as big. Buckets are incrementally
    // copied from the old bucket array to the new bucket array.
    //
    // Map iterators walk through the array of buckets and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

            return DEFAULT.hashFile(file);
        }
    
        /**
         * Hash the given {@code hashable} instance with the default hash function.
         */
        public static HashCode hashHashable(Hashable hashable) {
            Hasher hasher = newHasher();
            hasher.put(hashable);
            return hasher.hash();
        }
    
        /**
         * The default hashing function.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let arguments = (ins
        TFL_TensorOf<[Complex<F<32>>, Complex<F<64>>]>:$input
      );
    
      let results = (outs
        TFL_TensorOf<[F32, F64]>:$output
      );
    }
    
    def TFL_HashtableOp: TFL_Op<"hashtable", []> {
      let summary = "Creates a non-initialized hash table.";
      let description = [{
    This op creates a hash table, specifying the type of its keys and values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. RELEASE.md

    *   Fixes a division by zero in TFLite's implementation of `DepthwiseConv`
        ([CVE-2021-29602](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29602))
    *   Fixes a division by zero in TFLite's implementation of hashtable lookup
        ([CVE-2021-29604](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29604))
    *   Fixes a integer overflow in TFLite concatentation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/value.h

    // Declare hash types so they can be instantiated below.
    
    /// @brief TaggedValue hashing infrastructure, which uses absl::hash.
    ///
    /// Hashable TaggedValues overload `AbslHashValue`. Non-hashable structures
    /// return 0.
    template <>
    struct TaggedValueHash<TaggedValue> {
      size_t operator()(const TaggedValue& v) const;
    };
    
    /// @brief Hash implementation for TaggedValue Tuples.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    //     consistent. For now, we require we know the current package
    //     path so we can always expand symbol names. (Otherwise,
    //     symbols with relocations are not considered hashable.)
    //
    // For now, we assume there is no circular dependencies among
    // hashed symbols.
    func (w *writer) contentHash(s *LSym) goobj.HashType {
    	h := notsha256.New()
    	var tmp [14]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        Res<TF_FloatTensor, [{`images` converted to RGB.}]>:$output
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_HashTableOp : TF_Op<"HashTable", []> {
      let summary = "Creates a non-initialized hash table.";
    
      let description = [{
    This op creates a hash table, specifying the type of its keys and values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top