Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 134 for td_library (0.44 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

    # Placeholder: load py_proto_library
    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test")
    load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
    load("//tensorflow/compiler/mlir/quantization/stablehlo:internal_visibility_allowlist.bzl", "internal_visibility_allowlist")
    load("//tensorflow/core/platform:build_config.bzl", "tf_proto_library")
    
    package_group(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/BUILD

    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
    load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/BUILD

            "@llvm-project//mlir:TransformUtils",
        ],
    )
    
    cc_library(
        name = "constants",
        hdrs = ["constants.h"],
    )
    
    cc_library(
        name = "test_opkernels",
        testonly = True,
        srcs = ["test_opkernels.cc"],
        deps = ["//tensorflow/core:framework"],
        alwayslink = True,
    )
    
    cc_library(
        name = "backend_compiler",
        srcs = ["backend_compiler.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow:tensorflow.default.bzl", "filegroup", "get_compatible_with_portable")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # copybara:uncomment_end(google-only)
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/BUILD

    load("@bazel_skylib//rules:build_test.bzl", "build_test")
    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test", "tf_native_cc_binary")
    load("//tensorflow:tensorflow.default.bzl", "filegroup", "get_compatible_with_portable")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:LICENSE"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/BUILD

    load("@bazel_skylib//rules:build_test.bzl", "build_test")
    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    load("//tensorflow:tensorflow.bzl", "tf_cc_test", "tf_gen_op_wrapper_py")
    load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/BUILD

    # tfcompile.bzl correctly handles usage from outside of the package that it is
    # defined in.
    
    # A simple test of tf_library from a text protobuf, to enable benchmark_test.
    # This test uses an incompleted graph with a node that is not defined. The
    # compilation works because the undefined node is a feed node.
    tf_library(
        name = "test_graph_tfadd",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tfcompile.bzl

    """Build macro that compiles a TensorFlow graph into a cc_library.
    
    To use from your BUILD file, add the following line to load the macro:
    
    load("//tensorflow/compiler/aot:tfcompile.bzl", "tf_library")
    
    Then call the macro like this:
    
    tf_library(
        name = "test_graph_tfmatmul",
        config = "test_graph_tfmatmul.config.pbtxt",
        cpp_class = "MatMulComp",
        graph = ":test_graph_tfmatmul.pb",
    )
    """
    
    load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/build_defs.bzl

            outs = [name + ".inc.cc"],
            cmd = "$(location %s) --output=$@ --gen_register_op=true" % gen_op_lib_exec,
            tools = [":" + gen_op_lib_exec],
            tags = tags,
        )
    
        native.cc_library(
            name = name + "_cc",
            testonly = test,
            srcs = [":" + registered_op],
            deps = [
                "//tensorflow/core:framework",
                "//tensorflow/core:lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tests/BUILD

                # expand the "required by all tf_library targets" list in tfcompile.bzl.
                include_standard_runtime_deps = False,
                mlir_components = mlir_component,
                tags = [
                    "manual",
                    "no_mac",  # TODO(b/228273415)
                ],
            ),
            tf_library(
                name = "test_graph_tfadd_with_ckpt" + suffix,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top