Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for _lifted (0.19 sec)

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

        Value hoisted_read;
        // the type of the data held by the resource.
        Type data_type;
        // For written resources, the result # of the lifted op which will hold the
        // value of the resource. This result will be used to generates writes to
        // the resource after the lifted op.
        int result_index;
        // Attributes on the read operation.
        DictionaryAttr read_attrs;
        // Attributes on the write operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    }
    
    // depsuffix records the allowed suffixes for source files.
    var depsuffix = []string{
    	".s",
    	".go",
    }
    
    // gentab records how to generate some trivial files.
    // Files listed here should also be listed in ../distpack/pack.go's srcArch.Remove list.
    var gentab = []struct {
    	pkg  string // Relative to $GOROOT/src
    	file string
    	gen  func(dir, file string)
    }{
    	{"go/build", "zcgo.go", mkzcgo},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

                    )
                ]
            ),
            tf_saved_model=qc.TfSavedModelConfig(tags=[tag_constants.SERVING]),
            # Disable quantization for the quantizable unit (lifted function) whose
            # function name starts with "composite_dot_general".
            specs=qc.QuantizationSpecs(
                specs=[
                    qc.QuantizationSpec(
                        matcher=qc.MatcherSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. cmd/object-api-multipart_test.go

    			},
    		},
    		// listMultipartResults - 32.
    		// checking listing with marker set to no of objects in the list.
    		// `NextUploadIDMarker` is expected to be empty since all results are listed.
    		// `NextKeyMarker` is expected to be empty since all results are listed.
    		{
    			MaxUploads:  6,
    			IsTruncated: false,
    			Uploads: []MultipartInfo{
    				{
    					Object:   objectNames[0],
    					UploadID: uploadIDs[4],
    				},
    				{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // build list: they could be lower than existing requirements or conflict with
    // versions in mustSelect.)
    //
    // If the versions listed in mustSelect are mutually incompatible (due to one of
    // the listed modules requiring a higher version of another), EditBuildList
    // returns a *ConstraintError and leaves the build list in its previous state.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    			if mr := findModuleRoot(absDir); mr != "" {
    				return "", fmt.Errorf("%s is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use %s", dirstr, base.ShortPath(mr))
    			}
    			return "", fmt.Errorf("%s outside modules listed in go.work or their selected dependencies", dirstr)
    		}
    		return "", fmt.Errorf("%s outside main module or its selected dependencies", dirstr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    // SideEffectClass denotes the type of side effects resulting from calling the webhook
    type SideEffectClass string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    ### `-tf-resource-device-inference`
    
    _Propagates the device attribute on resources from callers to callees._
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FCMPD0", argLength: 1, reg: fp1flags, asm: "FCMPD", typ: "Flags"},                 // arg0 compare to 0, float64
    
    		// shifted ops
    		{name: "MVNshiftLL", argLength: 1, reg: gp11, asm: "MVN", aux: "Int64"},                   // ^(arg0<<auxInt), auxInt should be in the range 0 to 63.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: %[[MAX:.*]] = "tf.Max"(%[[ARG0]], %[[AXIS]]) <{keep_dims = true}> : (tensor<2x3xf32>, tensor<1xi64>) -> tensor<2x1xf32>
      // CHECK-DAG: %[[SHIFTED:.*]] = "tf.Sub"(%[[ARG0]], %[[MAX]]) : (tensor<2x3xf32>, tensor<2x1xf32>) -> tensor<2x3xf32>
      // CHECK-DAG: %[[EXP:.*]] = "tf.Exp"(%[[SHIFTED]]) : (tensor<2x3xf32>) -> tensor<2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
Back to top