Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for defs (0.03 sec)

  1. src/cmd/compile/internal/types2/api.go

    	Defs map[*syntax.Name]Object
    
    	// Uses maps identifiers to the objects they denote.
    	//
    	// For an embedded field, Uses returns the *TypeName it denotes.
    	//
    	// Invariant: Uses[id].Pos() != id.Pos()
    	Uses map[*syntax.Name]Object
    
    	// Implicits maps nodes to their implicitly declared objects, if any.
    	// The following node and object types may appear:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                       "defs argument",
                       i);
          return nullptr;
        }
    
        // Parse op def from character array.
        tensorflow::OpDef opdef;
        if (!tensorflow::protobuf::TextFormat::ParseFromString(tf_opdefs, &opdef)) {
          PyErr_Format(
              PyExc_ValueError,
              "Failed to parse opdefs at index %d of custom op defs argument: %s",
              i, tf_opdefs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. build/common.sh

      LOCAL_OUTPUT_BUILD_CONTEXT="${LOCAL_OUTPUT_IMAGE_STAGING}/${KUBE_BUILD_IMAGE}"
    
      kube::version::get_version_vars
      kube::version::save_version_vars "${KUBE_ROOT}/.dockerized-kube-version-defs"
    
      # Without this, the user's umask can leak through.
      umask 0022
    }
    
    # ---------------------------------------------------------------------------
    # Utility functions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K 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/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)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/BUILD

        ],
    )
    
    cc_library(
        name = "compile_mlir_util_no_tf_dialect_passes",
        srcs = ["compile_mlir_util.cc"],
        hdrs = ["compile_mlir_util.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:bridge_passes",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:bridge_logger",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

            "//learning/brain/mlir/bridge:__pkg__",
            "//tensorflow/compiler/mlir/quantization/stablehlo:__pkg__",
            "//tensorflow/compiler/mlir/tfrt/transforms/ifrt:__pkg__",
        ],
        deps = [
            ":device_type_proto_cc",
            "//tensorflow/compiler/jit:flags_headers",
            "//tensorflow/compiler/jit:shape_inference",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/net_test.go

    	ztunnelServer := &fakeZtunnel{}
    
    	fakeIPSetDeps := ipset.FakeNLDeps()
    	set := ipset.IPSet{V4Name: "foo-v4", Prefix: "foo", Deps: fakeIPSetDeps}
    	netServer := newNetServer(ztunnelServer, podNsMap, iptablesConfigurator, NewPodNetnsProcFinder(fakeFs()), set)
    
    	netServer.netnsRunner = func(fdable NetnsFd, toRun func() error) error {
    		return toRun()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top