Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for bucketize (0.2 sec)

  1. src/runtime/histogram.go

    	// (e.g. 1, 2, 3, 4, 5 ns) that aren't very useful, timeHistNumBuckets
    	// is defined in terms of the least significant bit (timeHistMinBucketBits)
    	// that needs to be set before we start bucketing and the most
    	// significant bit (timeHistMaxBucketBits) that we bucket before we just
    	// dump it into a catch-all bucket.
    	//
    	// As an example, consider the configuration:
    	//
    	//    timeHistMinBucketBits = 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

              TF::AddV2Op::getOperationName().str(),
              TF::ArgMaxOp::getOperationName().str(),
              TF::AvgPoolOp::getOperationName().str(),
              TF::BiasAddOp::getOperationName().str(),
              TF::BucketizeOp::getOperationName().str(),
              TF::ConcatV2Op::getOperationName().str(),
              TF::Conv2DBackpropInputOp::getOperationName().str(),
              TF::Conv2DOp::getOperationName().str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

            TypeID::get<TF::BiasAddOp>(),
            TypeID::get<TF::BitwiseAndOp>(),
            TypeID::get<TF::BitwiseOrOp>(),
            TypeID::get<TF::BitwiseXorOp>(),
            TypeID::get<TF::BucketizeOp>(),
            // CaseOp isn't actually supported but is enabled for testing to
            // make sure ops with symbol ref attributes are filtered out.
            TypeID::get<TF::CaseOp>(),
            TypeID::get<TF::CastOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_BoostedTreesBucketizeOp : TF_Op<"BoostedTreesBucketize", [Pure, SameVariadicOperandSize]> {
      let summary = "Bucketize each feature based on bucket boundaries.";
    
      let description = [{
    An op that returns a list of float tensors, where each tensor represents the
    bucketized values for a single feature.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/internal/abi/type.go

    	// function for hashing keys (ptr to key, seed) -> hash
    	Hasher     func(unsafe.Pointer, uintptr) uintptr
    	KeySize    uint8  // size of key slot
    	ValueSize  uint8  // size of elem slot
    	BucketSize uint16 // size of bucket
    	Flags      uint32
    }
    
    // Note: flag values must match those used in the TMAP case
    // in ../cmd/compile/internal/reflectdata/reflect.go:writeType.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    			keysize = int64(d.arch.PtrSize)
    			indirectKey = true
    		}
    		if valsize > abi.MapMaxElemBytes {
    			valsize = int64(d.arch.PtrSize)
    			indirectVal = true
    		}
    
    		// Construct type to represent an array of BucketSize keys
    		keyname := d.nameFromDIESym(keytype)
    		dwhks := d.mkinternaltype(ctxt, dwarf.DW_ABRV_ARRAYTYPE, "[]key", keyname, "", func(dwhk *dwarf.DWDie) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	cacher.bookmarkWatchers.popExpiredWatchersThreadUnsafe()
    	if len(cacher.bookmarkWatchers.watchersBuckets) != 0 {
    		numWatchers := 0
    		for bucketID, v := range cacher.bookmarkWatchers.watchersBuckets {
    			numWatchers += len(v)
    			t.Errorf("there are %v watchers at bucket Id %v with start Id %v", len(v), bucketID, cacher.bookmarkWatchers.startBucketID)
    		}
    		t.Errorf("unexpected bookmark watchers %v", numWatchers)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/export_test.go

    	// a series of emptyRest cells.
    	h := *(**hmap)(unsafe.Pointer(&m))
    	i := any(m)
    	t := *(**maptype)(unsafe.Pointer(&i))
    
    	for x := 0; x < 1<<h.B; x++ {
    		b0 := (*bmap)(add(h.buckets, uintptr(x)*uintptr(t.BucketSize)))
    		n := 0
    		for b := b0; b != nil; b = b.overflow(t) {
    			for i := 0; i < abi.MapBucketCount; i++ {
    				if b.tophash[i] != emptyRest {
    					n++
    				}
    			}
    		}
    		k := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. RELEASE.md

    # Release 2.8.0
    
    ## Major Features and Improvements
    
    *   `tf.lite`:
    
        *   Added TFLite builtin op support for the following TF ops:
            *   `tf.raw_ops.Bucketize` op on CPU.
            *   `tf.where` op for data types
                `tf.int32`/`tf.uint32`/`tf.int8`/`tf.uint8`/`tf.int64`.
            *   `tf.random.normal` op for output data type `tf.float32` on CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top