Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for defs (0.04 sec)

  1. src/runtime/defs1_netbsd_amd64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_amd64.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      int subgraph_idx = 0;
    
      // Entry functions for signature defs.
      std::vector<FuncOp> entry_functions;
      std::vector<FuncOp> non_entry_functions;
      FuncOp main_fn = module_.lookupSymbol<FuncOp>("main");
      if (main_fn != nullptr) {
        // Treat the main function as a signature def when the given main function
        // contains on the tf.entry_function attribute.
        auto attrs =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

    )
    
    cc_library(
        name = "types",
        hdrs = ["types.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [],
    )
    
    cc_library(
        name = "component",
        hdrs = ["component.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "@com_google_absl//absl/status:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

    )
    
    cc_library(
        name = "tac-opt_lib",
        testonly = True,
        deps = [
            ":target_aware_conversion",
            "//tensorflow/compiler/mlir:tf_mlir_opt_main",
        ],
        alwayslink = 1,
    )
    
    # Binary with no hardwares linked.
    tf_cc_binary(
        name = "tac-opt",
        testonly = True,
        deps = [
            ":tac-opt_lib",
        ],
    )
    
    # Binary with all backends linked.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/impl/BUILD

    )
    
    cc_library(
        name = "iostream",
        srcs = [
            "iostream.cc",
        ],
        deps = [
            ":none",
            ":string",
            ":tensor_spec",
        ],
    )
    
    tf_cc_test(
        name = "iostream_test",
        size = "small",
        srcs = ["iostream_test.cc"],
        deps = [
            ":iostream",
            ":none",
            ":scalars",
            ":string",
            ":tensor_spec",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/runtime/metrics.go

    	sysStats  sysStatsAggregate
    	cpuStats  cpuStatsAggregate
    	gcStats   gcStatsAggregate
    }
    
    // ensure populates statistics aggregates determined by deps if they
    // haven't yet been populated.
    func (a *statAggregate) ensure(deps *statDepSet) {
    	missing := deps.difference(a.ensured)
    	if missing.empty() {
    		return
    	}
    	for i := statDep(0); i < numStatsDeps; i++ {
    		if !missing.has(i) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/BUILD

        hdrs = [
            "tf_mlir_translate_cl.h",
        ],
        deps = [
            "@llvm-project//llvm:Support",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "export_graphdef",
        srcs = [
            "export_graphdef.cc",
        ],
        hdrs = [
            "export_graphdef.h",
        ],
        visibility = ["//visibility:public"],
        deps = [
            ":export_tf_dialect_op",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. cni/pkg/ipset/ipset.go

    func NewIPSet(name string, v6 bool, deps NetlinkIpsetDeps) (IPSet, error) {
    	var err error
    	set := IPSet{
    		V4Name: fmt.Sprintf(V4Name, name),
    		Deps:   deps,
    		Prefix: name,
    	}
    	err = deps.ipsetIPHashCreate(set.V4Name, false)
    	if v6 {
    		set.V6Name = fmt.Sprintf(V6Name, name)
    		v6err := deps.ipsetIPHashCreate(set.V6Name, true)
    		err = errors.Join(err, v6err)
    	}
    	return set, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/BUILD

        deps = [
            ":calibration_statistics_proto_cc",
            "@com_google_absl//absl/types:span",
        ],
    )
    
    cc_library(
        name = "calibration_statistics_collector_min_max",
        srcs = ["calibration_statistics_collector_min_max.cc"],
        hdrs = ["calibration_statistics_collector_min_max.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/BUILD

            "//tensorflow:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    pytype_strict_library(
        name = "quantization",
        srcs = ["quantization.py"],
        visibility = ["//visibility:public"],
        deps = [
            ":pywrap_quantization",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_py",
            "//tensorflow/compiler/mlir/quantization/tensorflow/python:py_function_lib_py",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 20:18:36 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top