Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 17 (0.15 sec)

  1. ci/official/containers/linux_arm64/setup.sources.sh

    deb http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    deb-src http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    
    # LLVM/Clang 17 repository
    deb http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main
    deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.packages.txt

    # Other build-related tools
    autoconf
    automake
    build-essential
    ca-certificates
    llvm-17
    clang-17
    clang-format-12
    lld-17
    colordiff
    curl
    ffmpeg
    gdb
    git
    jq
    less
    libcurl3-dev
    libcurl4-openssl-dev
    libfreetype6-dev
    libhdf5-serial-dev
    libomp-17-dev
    libssl-dev
    libtool
    libxml2-dev
    libxslt1-dev
    libzmq3-dev
    mlocate
    moreutils
    openjdk-11-jdk
    openjdk-11-jre-headless
    openssl
    patchelf
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 15:23:28 GMT 2024
    - 485 bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

      TF_OperationGetAttrShape(oper, "v", nullptr, 10, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
      // Partially specified shape
      const int64_t partial_shape[] = {17, -1};
      const size_t sz = TF_ARRAYSIZE(partial_shape);
      desc = init("shape");
      TF_SetAttrShape(desc, "v", partial_shape, sz);
      oper = TF_FinishOperation(desc, s_);
    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)
  4. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

        fi
    }
    
    teardown_file() {
        rm -rf /tf/venv
    }
    
    @test "Wheel is manylinux2014 (manylinux_2_17) compliant" {
        python3 -m auditwheel show "$TF_WHEEL" > audit.txt
        grep --quiet -zoP 'is consistent with the following platform tag:\n"manylinux_2_17_(aarch|x86_)64"\.' audit.txt
    }
    
    @test "Wheel conforms to upstream size limitations" {
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  5. .bazelrc

    # By default, build TF in C++ 17 mode.
    build:android --cxxopt=-std=c++17
    build:android --host_cxxopt=-std=c++17
    build:ios --cxxopt=-std=c++17
    build:ios --host_cxxopt=-std=c++17
    build:linux --cxxopt=-std=c++17
    build:linux --host_cxxopt=-std=c++17
    build:macos --cxxopt=-std=c++17
    build:macos --host_cxxopt=-std=c++17
    build:windows --cxxopt=/std:c++17
    build:windows --host_cxxopt=/std:c++17
    
    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)
  6. ci/devinfra/docker_windows/Dockerfile

    # Install Visual C++ Redistributable for Visual Studio 2015-2022.
    RUN New-Item -Path "C:/" -Name "TEMP" -ItemType "directory"; \
        Invoke-WebRequest "https://aka.ms/vs/17/release/vc_redist.x64.exe" \
            -OutFile C:/TEMP/vc_redist.x64.exe -UseBasicParsing; \
        Start-Process -filepath C:/TEMP/vc_redist.x64.exe -ArgumentList '/install', '/passive', '/norestart' -Wait; \
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  7. configure.py

        val = os.path.realpath(val)
      environ_cp[var_name] = val
      return val
    
    
    def set_clang_cuda_compiler_path(environ_cp):
      """Set CLANG_CUDA_COMPILER_PATH."""
      default_clang_path = '/usr/lib/llvm-17/bin/clang'
      if not os.path.exists(default_clang_path):
        default_clang_path = '/usr/lib/llvm-16/bin/clang'
        if not os.path.exists(default_clang_path):
          default_clang_path = which('clang') or ''
    
    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)
  8. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    @@ -382,8 +186,6 @@ __mempcpy_small (void *__dest, char __src1,
         }
       return __extension__ ((void *) __u + __srclen);
     }
    -#   endif
    -#  endif
     # endif
     #endif
     
    @@ -391,44 +193,17 @@ __mempcpy_small (void *__dest, char __src1,
     /* Return pointer to C in S.  */
     #ifndef _HAVE_STRING_ARCH_strchr
     extern void *__rawmemchr (const void *__s, int __c);
    -# if __GNUC_PREREQ (3, 2)
     #  define strchr(s, c) \
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
Back to top