Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for bzl (0.15 sec)

  1. tensorflow/c/experimental/grappler/BUILD

    # Description:
    # Graph C API.
    
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    load(
        "//tensorflow:tensorflow.bzl",
        "tf_cc_test",
    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "grappler_hdrs",
        hdrs = ["grappler.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  2. ci/official/requirements_updater/README.md

    All the files referenced below are located in the same directory as this README,
    unless indicated otherwise.
    
    1) Add the new version to the `VERSIONS` variable inside
       `tensorflow/tools/toolchains/python/python_repo.bzl`. \
       While this isn't necessary for running the updater, it is required for
       actually using the new version with Tensorflow.
    
    2) In the `WORKSPACE` file, add the new version to the `python_versions`
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 3.9K 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/filesystem/plugins/posix/BUILD

    # Experimental posix filesystem plugin.
    load("//tensorflow:tensorflow.bzl", "tf_cc_shared_object")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for POSIX environments: Linux, MacOS, Android, etc.
    tf_cc_shared_object(
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

    # Experimental gcs filesystem plugin.
    load("//tensorflow:tensorflow.bzl", "get_win_copts", "tf_cc_shared_object", "tf_cc_test")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for GCS environments
    tf_cc_shared_object(
        name = "gcs_filesystem",
        framework_so = [],
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/next_pluggable_device/BUILD

    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "c_api",
        srcs = ["c_api.cc"],
        hdrs = ["c_api.h"],
        visibility = ["//visibility:public"],
        deps = [
            ":tensor_pjrt_buffer_util",
    Plain Text
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Tue Jan 09 00:52:04 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/c/BUILD

    # Description:
    # C API for TensorFlow, for use by client language bindings.
    
    load("@bazel_skylib//lib:selects.bzl", "selects")
    load("@local_config_tensorrt//:build_defs.bzl", "if_tensorrt")
    load("@local_tsl//tsl/platform:rules_cc.bzl", "cc_library")
    load(
        "//tensorflow:tensorflow.bzl",
        "check_deps",
        "if_google",
        "if_not_mobile",
        "tf_cc_test",
        "tf_copts",
        "tf_cuda_library",
        "tf_custom_op_library",
    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. tensorflow/c/eager/BUILD

    load(
        "//tensorflow:tensorflow.bzl",
        "tf_cc_test",
        "tf_copts",
        "tf_cuda_cc_test",
        "tf_cuda_library",
    )
    load("//tensorflow:tensorflow.default.bzl", "cc_header_only_library", "filegroup")
    load(
        "//tensorflow/core/platform:build_config_root.bzl",
        "tf_cuda_tests_tags",
    )
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
    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)
  9. configure.py

      # Convert python path to Windows style before writing into bazel.rc
      if is_windows() or is_cygwin():
        python_lib_path = cygpath(python_lib_path)
    
      # Set-up env variables used by python_configure.bzl
      write_action_env_to_bazelrc('PYTHON_BIN_PATH', python_bin_path)
      write_action_env_to_bazelrc('PYTHON_LIB_PATH', python_lib_path)
      write_to_bazelrc('build --python_path=\"{}"'.format(python_bin_path))
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  10. .bazelrc

    build:cuda_clang_official --crosstool_top="@sigbuild-r2.17-clang_config_cuda//crosstool:toolchain"
    
    # Build with nvcc for CUDA and clang for host
    build:nvcc_clang --config=cuda
    # Unfortunately, cuda_configure.bzl demands this for using nvcc + clang
    build:nvcc_clang --action_env=TF_CUDA_CLANG="1"
    build:nvcc_clang --action_env=TF_NVCC_CLANG="1"
    build:nvcc_clang --@local_config_cuda//:cuda_compiler=nvcc
    
    
    # Debug config
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
Back to top