Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for filegroup (0.18 sec)

  1. arm_compiler.BUILD

    filegroup(
        name = "gcc",
        srcs = glob(["bin/*-gcc"]),
    )
    
    filegroup(
        name = "ar",
        srcs = glob(["bin/*-ar"]),
    )
    
    filegroup(
        name = "ld",
        srcs = glob(["bin/*-ld"]),
    )
    
    filegroup(
        name = "nm",
        srcs = glob(["bin/*-nm"]),
    )
    
    filegroup(
        name = "objcopy",
        srcs = glob(["bin/*-objcopy"]),
    )
    
    filegroup(
        name = "objdump",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 12 11:17:46 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/BUILD

    # need a second rule that omits .cc files, in
    # tensorflow/python:_pywrap_parallel_device.
    filegroup(
        name = "lib_headers",
        srcs = ["parallel_device_lib.h"],
    )
    
    filegroup(
        name = "lib_sources",
        srcs = ["parallel_device_lib.cc"],
    )
    
    filegroup(
        name = "device_headers",
        srcs = ["parallel_device.h"],
    )
    
    filegroup(
        name = "device_sources",
        srcs = ["parallel_device.cc"],
    )
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:19:06 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/BUILD

    load(
        "//tensorflow:tensorflow.bzl",
        "if_libtpu",
        "tf_cuda_cc_test",
    )
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "tf_cuda_tests_tags",
    )
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Library of gradient functions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Mon Apr 01 20:39:44 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/gradients/tape/BUILD

            ":tape_context",
            ":tape_operation",
            "//tensorflow/c/eager:abstract_context",
            "//tensorflow/c/eager:abstract_operation",
            "//tensorflow/c/eager:gradients_internal",
        ],
    )
    
    filegroup(
        name = "pywrap_required_hdrs",
        srcs = [
            "tape_context.h",
            "tape_operation.h",
        ],
        visibility = [
            "//tensorflow:internal",
        ],
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Thu Nov 17 15:20:54 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  5. models.BUILD

    package(default_visibility = ["//visibility:public"])
    
    licenses(["notice"])  # Apache 2.0
    
    filegroup(
        name = "model_files",
        srcs = glob(
            [
                "**/*",
            ],
            exclude = [
                "**/BUILD",
                "**/WORKSPACE",
                "**/LICENSE",
                "**/*.zip",
            ],
        ),
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 10 22:25:53 GMT 2017
    - 328 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/BUILD

    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Experimental ops. These will eventually be replaced by machine-generated versions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "array_ops",
        srcs = [
            "array_ops.cc",
        ],
        hdrs = [
            "array_ops.h",
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Thu Nov 17 15:20:54 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/c/BUILD

        "tf_kernel_library",
    )
    load("//tensorflow:tensorflow.default.bzl", "filegroup", "tf_cuda_cc_test")
    load(
        "//tensorflow/core/tpu:build_defs.bzl",
        "if_libtpu_tf_status",
    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    filegroup(
        name = "safe_ptr_hdr",
        srcs = ["safe_ptr.h"],
        visibility = [
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 30.3K bytes
    - Viewed (0)
  8. WORKSPACE

    )
    
    load("@python//:defs.bzl", "interpreter")
    load("@rules_python//python:pip.bzl", "package_annotation", "pip_parse")
    
    NUMPY_ANNOTATIONS = {
        "numpy": package_annotation(
            additive_build_content = """\
    filegroup(
        name = "includes",
        srcs = glob(["site-packages/numpy/core/include/**/*.h"]),
    )
    cc_library(
        name = "numpy_headers",
        hdrs = [":includes"],
        strip_include_prefix="site-packages/numpy/core/include/",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Apr 05 22:27:48 GMT 2024
    - 3K bytes
    - Viewed (2)
  9. tensorflow/c/eager/BUILD

            "//tensorflow/core/config:flags",
        ],
    )
    
    filegroup(
        name = "headers",
        srcs = [
            "c_api.h",
            "c_api_experimental.h",
            "dlpack.h",
        ],
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    filegroup(
        name = "pywrap_headers_monitoring_reader",
        srcs = [
            "c_api_experimental_reader.h",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  10. ci/official/utilities/setup_macos.sh

    fi
    set -x
    
    # When cross-compiling with RBE, we need to copy the macOS sysroot to be
    # inside the TensorFlow root directory. We then define them as a filegroup
    # target inside "tensorflow/tools/toolchains/cross_compile/cc" so that Bazel
    # can register it as an input to compile/link actions and send it to the remote
    # VMs when needed.
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 15:23:28 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top