Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 737 for INC (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

            "passes/optimize.inc",
            "passes/post_quantize.cc",
            "passes/post_quantize.inc",
            "passes/prepare_lifting.cc",
            "passes/prepare_lifting.inc",
            "passes/prepare_quantize.cc",
            "passes/prepare_quantize.inc",
            "passes/prepare_quantize_drq.cc",
            "passes/preprocess_op.cc",
            "passes/preprocess_op.inc",
            "passes/propagate_quantize_type.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasherTest.groovy

                "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                "${Attributes.Name.IMPLEMENTATION_VERSION}": "1.0",
    
                "org/gradle/api": [
                    "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                ],
                "org/gradle/base": [
                    "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                ]
            ]
            def attributes2 = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

            def propertiesEntry2 = contextFor(context, 'some/path/to/bar.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
            def propertiesEntry3 = contextFor(context, 'some/other/path/to/fuzz.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
    
            def hash1 = unfilteredHasher.hash(propertiesEntry1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/loopbce.go

    		min, nxt = ind.Args[0], n
    	} else {
    		// Not a recognized induction variable.
    		return
    	}
    
    	if nxt.Args[0] == ind { // nxt = ind + inc
    		inc = nxt.Args[1]
    	} else if nxt.Args[1] == ind { // nxt = inc + ind
    		inc = nxt.Args[0]
    	} else {
    		panic("unreachable") // one of the cases must be true from the above.
    	}
    
    	return
    }
    
    // findIndVar finds induction variables in a function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "clustering_passes",
        hdrs = [
            "clustering_passes.h",
        ],
        textual_hdrs = [
            "clustering_passes.h.inc",
        ],
        deps = [
            ":extract_head_tail_outside_compilation",
            ":extract_outside_compilation",
            ":hoist_broadcast_read",
            ":mark_ops_for_outside_compilation",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "collection_ops_util.h",
            "einsum.h",
            "passes.h",
        ],
        includes = ["include"],
        textual_hdrs = [
            "tf_device_passes.h.inc",
            "tf_passes.h.inc",
            "tf_savedmodel_passes.h.inc",
        ],
        visibility = ["//visibility:public"],
        deps = [
            ":cluster_formation",
            ":decompose_resource_ops",
            ":decompose_resource_ops_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. cmd/http-stats.go

    	case code == 0:
    	case code == 499:
    		// 499 is a good error, shall be counted as canceled.
    		st.totalS3Canceled.Inc(api)
    	case code >= http.StatusBadRequest:
    		st.totalS3Errors.Inc(api)
    		if code >= http.StatusInternalServerError {
    			st.totalS35xxErrors.Inc(api)
    		} else {
    			st.totalS34xxErrors.Inc(api)
    		}
    	}
    }
    
    // Prepare new HTTPStats structure
    func newHTTPStats() *HTTPStats {
    	return &HTTPStats{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/BUILD

               ["ir/tf_" + target["name"] + ".cc.inc" for target in tf_ops_category_list] +
               ["ir/tf_" + target["name"] + ".h" for target in tf_ops_category_list],
        hdrs = [
        ],
        textual_hdrs = [
            "ir/tf_types.def",
            "ir/tf_all_ops.h.inc",
            "ir/tf_remaining_ops.h.inc",
        ] + ["ir/tf_" + target["name"] + ".h.inc" for target in tf_ops_category_list],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  9. src/cmd/go/main.go

    		telemetry.Inc("go/goroot:usr-local-go")
    	case "/usr/lib/go": // A typical location used by Linux package managers.
    		telemetry.Inc("go/goroot:usr-lib-go")
    	case "/usr/lib/golang": // Another typical location used by Linux package managers.
    		telemetry.Inc("go/goroot:usr-lib-golang")
    	case `c:\program files\go`: // Location used by Windows installer.
    		telemetry.Inc("go/goroot:program-files-go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    type godebugInc struct {
    	name string
    	inc  atomic.Pointer[func()]
    }
    
    func (g *godebugInc) IncNonDefault() {
    	inc := g.inc.Load()
    	if inc == nil {
    		newInc := godebugNewIncNonDefault.Load()
    		if newInc == nil {
    			return
    		}
    		inc = new(func())
    		*inc = (*newInc)(g.name)
    		if raceenabled {
    			racereleasemerge(unsafe.Pointer(&g.inc))
    		}
    		if !g.inc.CompareAndSwap(nil, inc) {
    			inc = g.inc.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top