Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for multiplier (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary =
        "Replicate TensorList init ops for correct shape assignments in shape inference";
    
      let description = [{
        If we pass same TensorList to a while op as multiple arguments or just use
        the same TensorList at multiple places and assign different
        TensorListSetItem to elements of TensorList, the shape inference is then
        unable to identify the Shape of these args and thus the input TensorList
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    const (
    	None Fault = iota
    	MissingContentLength
    	TooBigObject
    	TooBigDecodedLength
    	BadSignature
    	BadMD5
    	MissingUploadID
    )
    
    // Wrapper for calling HeadObject API handler tests for both Erasure multiple disks and FS single drive setup.
    func TestAPIHeadObjectHandler(t *testing.T) {
    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testAPIHeadObjectHandler, endpoints: []string{"HeadObject"}})
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Constructs a tensor by tiling a given tensor.
    
       This operation creates a new tensor by replicating input
       multiples times. The output tensor's i'th dimension has
       input.dims(i) * multiples[i] elements, and the values of input
       are replicated multiples[i] times along the 'i'th dimension.
       For example, tiling [a b c d] by [2] produces [a b c d a b c d].
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // defers this error until a Scan.
    var ErrNoRows = errors.New("sql: no rows in result set")
    
    // DB is a database handle representing a pool of zero or more
    // underlying connections. It's safe for concurrent use by multiple
    // goroutines.
    //
    // The sql package creates and frees connections automatically; it
    // also maintains a free pool of idle connections. If the database has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    				Bind:       config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    				PostBind:   config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    			},
    		},
    		{
    			name: "Multiple MultiPoint plugins",
    			plugins: &config.Plugins{
    				MultiPoint: config.PluginSet{
    					Enabled: []config.Plugin{
    						{Name: testPlugin},
    						{Name: scorePlugin1},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	// which doesn't work very well.
    	seen := map[string]bool{}
    	reported := map[string]bool{}
    	for _, pkg := range PackageList(pkgs) {
    		// -pgo=auto with multiple main packages can cause a package being
    		// built multiple times (with different profiles).
    		// We check that package import path + profile path is unique.
    		key := pkg.ImportPath
    		if pkg.Internal.PGOProfile != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    				return false
    			}
    		}
    		return true
    	}
    
    	// Every expected chain should match one (or more) returned chain. We tolerate multiple
    	// matches, as due to root store semantics it is plausible that (at least on the system
    	// verifiers) multiple identical (looking) chains may be returned when two roots with the
    	// same subject are present.
    	for _, expectedChain := range test.expectedChains {
    		var match bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    func validateTelemetryTracing(tracing []*telemetry.Tracing) (v Validation) {
    	if len(tracing) > 1 {
    		v = AppendWarningf(v, "multiple tracing is not currently supported")
    	}
    	for _, l := range tracing {
    		if l == nil {
    			continue
    		}
    		if len(l.Providers) > 1 {
    			v = AppendWarningf(v, "multiple providers is not currently supported")
    		}
    		v = AppendValidation(v, validateTelemetryProviders(l.Providers))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    			podIPs: []v1.PodIP{
    				{IP: "fd01::1234"},
    			},
    		},
    		{
    			name:      "Multiple IPv4 IPs",
    			nodeIP:    "",
    			criPodIPs: []string{"10.0.0.1", "10.0.0.2", "10.0.0.3"},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name:      "Multiple Dual-Stack IPs",
    			nodeIP:    "",
    			criPodIPs: []string{"10.0.0.1", "10.0.0.2", "fd01::1234", "10.0.0.3", "fd01::5678"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. src/net/http/server.go

    // development. Any error means the connection is dead and we should
    // down its context.
    //
    // It may be called from multiple goroutines.
    func (cr *connReader) handleReadError(_ error) {
    	cr.conn.cancelCtx()
    	cr.closeNotify()
    }
    
    // may be called from multiple goroutines.
    func (cr *connReader) closeNotify() {
    	res := cr.conn.curReq.Load()
    	if res != nil && !res.didCloseNotify.Swap(true) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top