Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for src1 (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/BUILD

            "//tensorflow/python:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    # copybara:uncomment_begin(google-only)
    # tf_py_strict_test(
    #     name = "tensorflow_to_stablehlo_test",
    #     testonly = 1,
    #     srcs = ["integration_test/tensorflow_to_stablehlo_test.py"],
    #     deps = [
    #         ":pywrap_tensorflow_to_stablehlo",
    #         "//testing/pymocks:matchers",
    #         "//third_party/py/mlir",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/BUILD

        ]) + if_google([
            "//tensorflow/core/platform/default/build_config:test_main",
        ]),
    )
    
    filegroup(
        name = "quantize_header",
        srcs = ["quantize.h"],
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "tfcompile_lib",
        srcs = [
            "codegen.cc",
            "compile.cc",
            "flags.cc",
        ],
        hdrs = [
            "codegen.h",
            "compile.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

    tf_cc_binary(
        name = "tfl_quantizer",
        srcs = [
            "tfl_quantizer.cc",
        ],
        deps = [
            ":quantize_model",
            "//tensorflow/compiler/mlir/lite/schema:schema_fbs",
            "//tensorflow/lite:framework",
            "//tensorflow/lite/c:c_api_types",
            "@llvm-project//llvm:Support",
        ],
    )
    
    tf_cc_test(
        name = "quantize_model_test",
        srcs = ["quantize_model_test.cc"],
        args = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check_test.go

    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    	if !bytes.HasPrefix(src, []byte(prefix)) {
    		return nil // first line is not a line comment
    	}
    	src = src[len(prefix):]
    	if i := bytes.Index(src, []byte("-")); i < 0 || len(bytes.TrimSpace(src[:i])) != 0 {
    		return nil // comment doesn't start with a "-"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

    filegroup(
        name = "extra_files",
        srcs = glob(
            [
                "**/importer_test_min_max.cc.mlir",
                "**/reshape.mlir",
            ],
        ),
    )
    
    # A binary to inject min/max to a tflite model.
    # A file check command is used to verify the imported result from this
    # binary format.
    tf_native_cc_binary(
        name = "importer_test_min_max",
        srcs = [
            "importer_test_min_max.cc",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow_to_stablehlo/BUILD

        default_visibility = [
            ":internal_visibility_allowlist_package",
            "//tensorflow:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "tf_to_stablehlo",
        srcs = [
            "tf_to_stablehlo.cc",
        ],
        hdrs = [
            "tf_to_stablehlo.h",
        ],
        compatible_with = get_compatible_with_portable(),
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/utils/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "utils",
        srcs = [
            "utils.cc",
        ],
        hdrs = [
            "utils.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate_lib",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 989 bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

            "notap",
        ],
        visibility = ["//visibility:public"],
        deps = [":windows_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "windows_filesystem_impl",
        srcs = ["windows_filesystem.cc"],
        copts = get_win_copts(),
        tags = [
            "manual",
            "nobuilder",
            "notap",
        ],
        deps = ["//tensorflow/c/experimental/filesystem:filesystem_interface"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  10. src/go/types/builtins.go

    		dst, _ := coreType(x.typ).(*Slice)
    
    		y := args[1]
    		src0 := coreString(y.typ)
    		if src0 != nil && isString(src0) {
    			src0 = NewSlice(universeByte)
    		}
    		src, _ := src0.(*Slice)
    
    		if dst == nil || src == nil {
    			check.errorf(x, InvalidCopy, invalidArg+"copy expects slice arguments; found %s and %s", x, y)
    			return
    		}
    
    		if !Identical(dst.elem, src.elem) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top