Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 372 for multiplier (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

        return mul_op.getResult();
      }
      auto q_op = dq_op.getArg().getDefiningOp<quantfork::QuantizeCastOp>();
      if (!q_op) return {};
    
      Value float_value = q_op.getArg();
      Value new_value = builder.create<TF::MulOp>(loc, float_value, multiplier);
      auto new_value_type = mlir::cast<TensorType>(new_value.getType());
    
      // Get multiplier value in double.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                        @Test
                        public void testMultiply() {
                            Multiplier multiplier = new Multiplier();
                            Assert.assertEquals(1, multiplier.multiply(1, 1));
                            Assert.assertEquals(4, multiplier.multiply(2, 2));
                            Assert.assertEquals(2, multiplier.multiply(1, 2));
                        }
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					MaxLength: maxPtr(20),
    				},
    			},
    			// manually set by MaxLength, but we expect a 4x multiplier compared to the original input
    			// since OpenAPIv3 maxLength uses code points, but DeclType works with bytes
    			ExpectedMaxElements: 80,
    		},
    		{
    			Name: "mapWithLength",
    			InputSchema: &schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/noderesources.go

    	resyncPeriod   = time.Duration(10 * time.Minute)
    	retryPeriod    = 5 * time.Second
    	maxRetryPeriod = 180 * time.Second
    	backoffFactor  = 2.0 // Introduce a backoff multiplier as jitter factor
    )
    
    // nodeResourcesController collects resource information from all registered
    // plugins and synchronizes that information with ResourceSlice objects.
    type nodeResourcesController struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat.go

    			//
    			//   for i := 0; i < n; i++ {
    			//       d := bLimbs[i]
    			//       T[n+i] = addMulVVW(T[i:n+i], aLimbs, d)
    			//   }
    			//
    			// where d is a digit of the multiplier, T[i:n+i] is the shifted
    			// position of the product of that digit, and T[n+i] is the final carry.
    			// Note that T[i] isn't modified after processing the i-th digit.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1/types.go

    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    	// times to have multiple elements in the slice under a single key
    	ImpersonateUserExtraHeaderPrefix = "Impersonate-Extra-"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    }
    
    // Scale multiplies all sample values in a profile by a constant and keeps
    // only samples that have at least one non-zero value.
    func (p *Profile) Scale(ratio float64) {
    	if ratio == 1 {
    		return
    	}
    	ratios := make([]float64, len(p.SampleType))
    	for i := range p.SampleType {
    		ratios[i] = ratio
    	}
    	p.ScaleN(ratios)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    	}
    
    	var key [gcmBlockSize]byte
    	cipher.Encrypt(key[:], key[:])
    
    	g := &gcm{cipher: cipher, nonceSize: nonceSize, tagSize: tagSize}
    
    	// We precompute 16 multiples of |key|. However, when we do lookups
    	// into this table we'll be using bits from a field element and
    	// therefore the bits will be in the reverse order. So normally one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation_test.go

    				duplicate("root", "compound key[4]"),
    				duplicate("root", "nil key[3]"),
    				duplicate("root", "nil item[3]"),
    				duplicate("root", "nil item multiple keys[3]"),
    				duplicate("root", "multiple duplicates[4]"),
    				duplicate("root", "multiple duplicates[5]"),
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/docker.md

    For example (depending on your setup) you could have some tool like a Prometheus exporter in the same container that should have access to **each of the requests** that come.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top