Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for multiplier (0.19 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // have a corresponding 'depth_multiplier' attribute; the multiplier is the
        // fourth dimension in the 4-D filter tensor. We query the multiplier from
        // tf.DepthwiseConv2dNative and set it as the attribute value accordingly.
        auto multiplier =
            mlir::cast<RankedTensorType>(filter.getType()).getDimSize(3);
    
        filter = legalizeFilter(rewriter, loc, filter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                    $w_factor, TFL_AF_None, $padding, $stride_h, $stride_w,
                    $multiplier)),
        (TFL_DepthwiseConv2DOp $input, $filter, $bias, $h_factor, $w_factor,
            ActFnAttr, $padding, $stride_h, $stride_w, $multiplier),
        [(HasOneUse $conv_out)]>;
    }
    
    multiclass FuseActFnIntoPoolOpPat<Op ActFnOp, ConstantStrAttr ActFnAttr> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		t,
    		"testdata/valid-configs/aes/aes-cbc-multiple-providers.json",
    		"k8s:enc:aescbc:v1:1:",
    		"testdata/valid-configs/aes/aes-cbc-multiple-providers-reversed.json",
    		"k8s:enc:aescbc:v1:2:",
    	)
    }
    
    func TestCBCKeyRotationWithoutOverlappingProviders(t *testing.T) {
    	testCBCKeyRotationWithProviders(
    		t,
    		"testdata/valid-configs/aes/aes-cbc-multiple-keys.json",
    		"k8s:enc:aescbc:v1:A:",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. src/testing/testing.go

    // other parallel tests. When a test is run multiple times due to use of
    // -test.count or -test.cpu, multiple instances of a single test never run in
    // parallel with each other.
    func (t *T) Parallel() {
    	if t.isParallel {
    		panic("testing: t.Parallel called multiple times")
    	}
    	if t.isEnvSet {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters: map[string][]string{
    				"inbound|8080||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    			},
    		},
    		{
    			name:     "single service, multiple instance",
    			services: []*model.Service{service},
    			instances: flattenInstances(
    				makeInstances(proxy, service, 80, 8080),
    				makeInstances(proxy, service, 81, 8081)),
    			clusters: map[string][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/reflect/type.go

    				styp := (*structType)(unsafe.Pointer(ntyp))
    				if nextCount[styp] > 0 {
    					nextCount[styp] = 2 // exact multiple doesn't matter
    					continue
    				}
    				if nextCount == nil {
    					nextCount = map[*structType]int{}
    				}
    				nextCount[styp] = 1
    				if count[t] > 1 {
    					nextCount[styp] = 2 // exact multiple doesn't matter
    				}
    				var index []int
    				index = append(index, scan.index...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	buf *bytes.Buffer
    	id1 cache.ActionID
    	id2 cache.ActionID
    }
    
    // stdoutMu and lockedStdout provide a locked standard output
    // that guarantees never to interlace writes from multiple
    // goroutines, so that we can have multiple JSON streams writing
    // to a lockedStdout simultaneously and know that events will
    // still be intelligible.
    var stdoutMu sync.Mutex
    
    type lockedStdout struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                for (Service candidate : services) {
                    descriptions.add(candidate.getDisplayName());
                }
    
                Formatter formatter = new Formatter();
                formatter.format("Multiple factories for objects of type %s available in %s:", format(type), getDisplayName());
                for (String description : descriptions) {
                    formatter.format("%n   - %s", description);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/time/time.go

    //
    // Programs using times should typically store and pass them as values,
    // not pointers. That is, time variables and struct fields should be of
    // type [time.Time], not *time.Time.
    //
    // A Time value can be used by multiple goroutines simultaneously except
    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    	// from updating go.mod and go.sum or reporting errors when updates are
    	// needed. A package should set this if it would cause go.mod to be written
    	// multiple times (for example, 'go get' calls LoadPackages multiple times) or
    	// if it needs some other operation to be successful before go.mod and go.sum
    	// can be written (for example, 'go mod download' must download modules before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top