Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for limbs (0.3 sec)

  1. configure.py

      write_to_bazelrc('test:v2 --build_tag_filters=%s' %
                       ','.join(test_and_build_filters + ['-v1only']))
    
    
    def set_system_libs_flag(environ_cp):
      """Set system libs flags."""
      syslibs = environ_cp.get('TF_SYSTEM_LIBS', '')
    
      if is_s390x() and 'boringssl' not in syslibs:
        syslibs = 'boringssl' + (', ' + syslibs if syslibs else '')
    
      if syslibs:
        if ',' in syslibs:
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  2. .bazelrc

    build:android_x86 --fat_apk_cpu=x86
    build:android_x86_64 --config=android
    build:android_x86_64 --cpu=x86_64
    build:android_x86_64 --fat_apk_cpu=x86_64
    
    # Build everything statically for Android since all static libs are later
    # bundled together into a single .so for deployment.
    build:android --dynamic_mode=off
    
    # Sets the default Apple platform to macOS.
    build:macos --apple_platform_type=macos
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  3. tensorflow/BUILD

            continue
          fi
    
          if [[ $${d} == external* ]]; then
            extname="$${d#*external/}"
            extname="$${extname%%/*}"
            if [[ $${TF_SYSTEM_LIBS:-} == *$${extname}* ]]; then
              continue
            fi
    
            d="$${d#*external/farmhash_archive/src}"
            d="$${d#*external/$${extname}/}"
            d="$${d#_virtual_includes/*/}"
          fi
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
Back to top