Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for src2 (0.04 sec)

  1. tensorflow/cc/tools/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "freeze_saved_model",
        srcs = ["freeze_saved_model.cc"],
        hdrs = ["freeze_saved_model.h"],
        deps = [
            "//tensorflow/cc/saved_model:loader",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/stablehlo/BUILD

        ],
    )
    
    pytype_strict_library(
        name = "stablehlo",
        srcs = ["stablehlo.py"],
        srcs_version = "PY3",
        visibility = ["//visibility:public"],
        deps = [
            ":stablehlo_extension",
        ],
    )
    
    py_strict_test(
        name = "stablehlo_test",
        srcs = ["stablehlo_test.py"],
        python_version = "PY3",
        deps = [
            ":stablehlo",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 18:15:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser_test.go

    	src_   = flag.String("src", "parser.go", "source file to parse")
    	skip   = flag.String("skip", "", "files matching this regular expression are skipped by TestStdLib")
    )
    
    func TestParse(t *testing.T) {
    	ParseFile(*src_, func(err error) { t.Error(err) }, nil, 0)
    }
    
    func TestVerify(t *testing.T) {
    	ast, err := ParseFile(*src_, func(err error) { t.Error(err) }, nil, 0)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

        default_visibility = [
            "//tensorflow/compiler/mlir/lite/experimental/tac:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "tac_wrapper_lib",
        srcs = ["tac_wrapper.cc"],
        hdrs = [
            "tac_wrapper.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite/experimental/tac:common",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    		// Leading src fragment.
    		src = subtractb(src, (off+7)/8)
    		if frag := off & 7; frag != 0 {
    			bits |= uintptr(*src) >> (8 - frag) << nbits
    			src = add1(src)
    			nbits += frag
    			c -= frag
    		}
    		// Main loop: load one byte, write another.
    		// The bits are rotating through the bit buffer.
    		for i := c / 8; i > 0; i-- {
    			bits |= uintptr(*src) << nbits
    			src = add1(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/ir/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    td_library(
        name = "QuantizationOpsTdFiles",
        srcs = [
            "QuantOps.td",
            "QuantOpsBase.td",
        ],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//mlir:InferTypeOpInterfaceTdFiles",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. build/pause/Makefile

    # For more information, see: https://github.com/kubernetes/kubernetes/pull/91452
    BIN.linux = pause
    BIN.windows = pause wincat
    BIN := ${BIN.${OS}}
    SRCS.linux = linux/pause.c
    SRCS.windows = windows/pause.c
    SRCS := ${SRCS.${OS}}
    
    EXTENSION.linux =
    EXTENSION.windows = .exe
    EXTENSION := ${EXTENSION.${OS}}
    
    # The manifest command is still experimental as of Docker 18.09.3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/c/BUILD

        default_visibility = [":friends"],
        licenses = ["notice"],
    )
    
    package_group(
        name = "friends",
        packages = ["//tensorflow/..."],
    )
    
    tf_cuda_library(
        name = "mlir_c_api",
        srcs = [
            "c_api_unified_experimental_mlir.cc",
        ],
        copts = tf_copts(),
        deps = [
            "//tensorflow/c:c_api",
            "//tensorflow/c:tensor_interface",
            "//tensorflow/c:tf_status_helper",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/go/types/builtins_test.go

    	{"copy", `var src, dst []byte; copy(dst, src)`, `func([]byte, []byte) int`},
    	{"copy", `type T [][]int; var src, dst T; _ = copy(dst, src)`, `func(p.T, p.T) int`},
    	{"copy", `var src string; var dst []byte; copy(dst, src)`, `func([]byte, string) int`},
    	{"copy", `type T string; type U []byte; var src T; var dst U; copy(dst, src)`, `func(p.U, p.T) int`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/BUILD

            "//tensorflow/compiler/mlir/tensorflow:__pkg__",
            "//tensorflow/compiler/mlir/tfrt:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    td_library(
        name = "tensorflow_tfrt_ops_td_files",
        srcs = [
            "tfrt_ops.td",
        ],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_ops_td_files",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top