Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for src1 (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/BUILD

            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
        ],
    )
    
    cc_library(
        name = "embedding_pipelining",
        srcs = ["embedding_pipelining.cc"],
        hdrs = [
            "sparsecore_passes.h",
        ],
        deps = [
            ":sparsecore_passes_inc_gen",
            "//tensorflow/compiler/jit:flags_headers",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/ops/BUILD

            # Restricting visibility for now
            "//tensorflow/c/experimental/saved_model/core:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "restore_ops",
        srcs = [
            "restore_ops.cc",
        ],
        hdrs = [
            "restore_ops.h",
        ],
        deps = [
            "//tensorflow/c:tensor_interface",
            "//tensorflow/c/eager:abstract_tensor_handle",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/BUILD

    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "cpp",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen:__pkg__"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "renderers",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp:__pkg__"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. src/image/draw/clip_test.go

    	dst0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	src0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	mask0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	for _, c := range clipTests {
    		dst := dst0.SubImage(c.dr).(*image.RGBA)
    		src := src0.SubImage(c.sr).(*image.RGBA)
    		r, sp, mp := c.r, c.sp, c.mp
    		if c.nilMask {
    			clip(dst, &r, src, &sp, nil, nil)
    		} else {
    			clip(dst, &r, src, &sp, mask0.SubImage(c.mr), &mp)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/python/mlir_wrapper/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    tf_python_pybind_extension(
        name = "mlir_wrapper",
        srcs = [
            "attrs.cc",
            "basic_classes.cc",
            "builders.cc",
            "mlir_wrapper.cc",
            "mlir_wrapper.h",
            "ops.cc",
            "types.cc",
        ],
        enable_stub_generation = True,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 17:52:48 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top