Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for whave (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    }
    
    // Follow the use chain of TensorList and return true iff all elements written
    // to TensorList have same static shape. If all elements have same shape, assign
    // it to `potential_element_type`.
    //
    // This can handle multiple mutations of a TensorList object and would return
    // true if across all mutations the elements written have the same shape.
    bool CanInferTensorListElementType(Value tensorlist,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // specifies certain data type and shape for the inputs in the `specs_`.
        // This node shouldn't have any inputs, only have one output and its
        // output type/shape is only determined by its "named" attributes. (The
        // attributes should have fixed names so we can use the info from `specs_`
        // to set the value of them.) `Placeholder` satisfies these constraints.
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "updatedReplicas": {
              "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
              "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	// need to be checked against the files variable above.
    	var have map[string]bool
    	for _, file := range p.EmbedFiles {
    		if !strings.Contains(file, "/") {
    			if have == nil {
    				have = make(map[string]bool)
    				for _, file := range files {
    					have[file] = true
    				}
    			}
    			if have[file] {
    				continue
    			}
    		}
    		files = append(files, file)
    	}
    	return files
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // dst has been filled or src has been exhausted.
    // It returns the number of elements copied.
    // Dst and src each must have kind [Slice] or [Array], and
    // dst and src must have the same element type.
    //
    // As a special case, src can have kind [String] if the element type of dst is kind [Uint8].
    func Copy(dst, src Value) int {
    	dk := dst.kind()
    	if dk != Array && dk != Slice {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    	// convertToAPIContainerStatuses is purely transformative and shouldn't alter the state of the kubelet
    	// as there are no synchronisation events in that function (no locks, no channels, ...) each test routine
    	// should have its own vector clock increased independently. Golang race detector uses pure happens-before
    	// detection, so would catch a race condition consistently, despite only spawning 2 goroutines
    	for i := 0; i < 2; i++ {
    		go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    mounted by pods using the `clusterTrustBundle` projection.  All service accounts have read access to ClusterTrustBundles by default.  Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access to.\n\nIt can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer. Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // lower case letter) and should have the signature,
    //
    //	func TestXxx(t *testing.T) { ... }
    //
    // A benchmark function is one named BenchmarkXxx and should have the signature,
    //
    //	func BenchmarkXxx(b *testing.B) { ... }
    //
    // A fuzz test is one named FuzzXxx and should have the signature,
    //
    //	func FuzzXxx(f *testing.F) { ... }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    structurally equivalent; that is, they have the same literal structure and corresponding
    components have identical types. In detail:
    </p>
    
    <ul>
    	<li>Two array types are identical if they have identical element types and
    	    the same array length.</li>
    
    	<li>Two slice types are identical if they have identical element types.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<*xf32>
    }
    
    // -----
    
    func.func @testGatherUnsupportedType(%arg0 : tensor<?xi32>, %arg1 : tensor<?xi32>) -> tensor<?xf32> {
      // expected-error @+1 {{op failed to verify that params and output must have same element type}}
      %0 = "tfl.gather"(%arg0, %arg1) {axis = 1 : i32}: (tensor<?xi32>,tensor<?xi32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top