Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for rubble (0.2 sec)

  1. ci/official/requirements_updater/updater_config_repository.bzl

    '''
     Repository rule to set some environment variables.
     Can be set via build parameter "--repo_env=<VARIABLE_NAME>=<value>"
     e.g "--repo_env=REQUIREMENTS_FILE_NAME=requirements.in"
    
     List of variables:
     REQUIREMENTS_FILE_NAME
    '''
    
    def _updater_config_repository_impl(repository_ctx):
        repository_ctx.file("BUILD", "")
        requirements_file_name = repository_ctx.os.environ.get("REQUIREMENTS_FILE_NAME", "requirements.in")
        repository_ctx.file(
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 31 18:17:57 GMT 2023
    - 718 bytes
    - Viewed (0)
  2. .github/workflows/scorecards-analysis.yml

    # limitations under the License.
    # ============================================================================
    
    name: Scorecards supply-chain security
    on:
      # Only the default branch is supported.
      branch_protection_rule:
      schedule:
        - cron: '44 15 * * 5'
      push:
        branches: [ master ]
    
    # Declare default permissions as read only.
    permissions: read-all
    
    jobs:
      analysis:
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Dec 21 23:56:23 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/BUILD

        licenses = ["notice"],
    )
    
    # Currently pybind extension shared objects must use only C API headers since
    # the C API has static initializers duplicated in the Python bindings. So we
    # 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",
    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)
  4. tensorflow/c/c_api_test.cc

      TF_DeleteTensor(t);
      EXPECT_TRUE(deallocator_called);
    }
    
    TEST(CAPI, LibraryLoadFunctions) {
      // TODO(b/73318067): Fix linking for the GPU test generated by the
      // tf_cuda_cc_test() bazel rule and remove the next line.
      if (!GPUDeviceName().empty()) return;
    
    #if !defined(TENSORFLOW_NO_SHARED_OBJECTS)
      {
        // Load the library.
        TF_Status* status = TF_NewStatus();
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  5. configure.py

      write_action_env_to_bazelrc('CLANG_CUDA_COMPILER_PATH',
                                  clang_cuda_compiler_path)
      return clang_cuda_compiler_path
    
    
    def create_android_ndk_rule(environ_cp):
      """Set ANDROID_NDK_HOME and write Android NDK WORKSPACE rule."""
      if is_windows() or is_cygwin():
        default_ndk_path = cygpath('%s/Android/Sdk/ndk-bundle' %
                                   environ_cp['APPDATA'])
      elif is_macos():
    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)
  6. ci/official/utilities/setup_macos.sh

    # can register it as an input to compile/link actions and send it to the remote
    # VMs when needed.
    # TODO(b/316932689): Avoid copying and replace with a local repository rule.
    if [[ "$TFCI_MACOS_CROSS_COMPILE_ENABLE" == 1 ]]; then
      mkdir -p "${TFCI_MACOS_CROSS_COMPILE_SDK_DEST}/usr"
      mkdir -p "${TFCI_MACOS_CROSS_COMPILE_SDK_DEST}/System/Library/Frameworks/"
    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)
  7. tensorflow/BUILD

        "if_static",
        "tf_additional_plugin_deps",
        "tf_additional_profiler_deps",
    )
    load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
    
    # Do not sort: Copybara rule
    # copybara:uncomment_begin
    # # buildifier: disable=out-of-order-load
    # load("//devtools/build_cleaner/skylark:action_config_test.bzl", "action_config_test")
    # load("//devtools/copybara/rules:copybara.bzl", "copybara_config_test")
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  8. tensorflow/c/eager/BUILD

            "@com_google_absl//absl/strings",
            "@dlpack",
        ],
    )
    
    # TODO(karllessard): only used by //tensorflow/core:mobile_srcs_only_runtime
    # right now, remove this public rule when no longer needed (it should be
    # replaced by TF Lite)
    filegroup(
        name = "srcs",
        srcs = glob(
            [
                "*.cc",
                "*.h",
            ],
            exclude = [
    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. RELEASE.md

        build environment of the currently installed TensorFlow package, e.g. the
        NVIDIA CUDA and NVIDIA CuDNN versions used when TensorFlow was built.
    
    ### Profiler
    
    *   Fix a subtle use-after-free issue in `XStatVisitor::RefValue()`.
    
    ### TPU Enhancements
    
    *   Adds 3D mesh support in TPU configurations ops.
    *   Added TPU code for `FTRL` with `multiply_linear_by_lr`.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  10. tensorflow/build_cleaner_spec.textproto

    # proto-file: devtools/build_cleaner/proto/actions.proto
    # proto-message: ActionSpecs
    
    # Python rules should not have more than one source file.
    action_spec {
      action: CHECK_FILE_COUNT
      file_count_params {
        rule_selector {
          rule_kind_regex: "^.*py(type)?(_strict)?_(binary|library|test).*$"
          generator_function_regex: "^(?!boq_header)$"
        }
        max_source_count: 1
      }
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Nov 29 18:16:42 GMT 2023
    - 387 bytes
    - Viewed (0)
Back to top