Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for strconv (0.26 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

     /* GCC understands weak symbols and aliases; use its interface where
        possible, instead of embedded assembly language.  */
    @@ -114,7 +119,8 @@
     /* Define ALIASNAME as a strong alias for NAME.  */
     # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
     # define _strong_alias(name, aliasname) \
    -  extern __typeof (name) aliasname __attribute__ ((alias (#name)));
    +  extern __typeof (name) aliasname __attribute__ ((alias (#name))) \
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. configure.py

      )
    
      if get_var(
          environ_cp, 'TF_OVERRIDE_EIGEN_STRONG_INLINE', 'Eigen strong inline',
          True, ('Would you like to override eigen strong inline for some C++ '
                 'compilation to reduce the compilation time?'),
          'Eigen strong inline overridden.', 'Not overriding eigen strong inline, '
          'some compilations could take more than 20 mins.'):
    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)
  3. .bazelrc

    # Don't build the python zip archive in the RBE build.
    build:rbe_win_base --remote_download_minimal
    build:rbe_win_base --enable_runfiles
    build:rbe_win_base --nobuild_python_zip
    build:rbe_win_base --define=override_eigen_strong_inline=true
    
    build:rbe_win_clang --config=rbe_win_base
    build:rbe_win_clang --crosstool_top="//tensorflow/tools/toolchains/win/20240424:toolchain"
    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)
  4. tensorflow/BUILD

    )
    
    config_setting(
        name = "using_rocm_hipcc",
        define_values = {"using_rocm_hipcc": "true"},
    )
    
    config_setting(
        name = "override_eigen_strong_inline",
        define_values = {"override_eigen_strong_inline": "true"},
        visibility = ["//visibility:public"],
    )
    
    # This flag specifies whether TensorFlow 2.0 API should be built instead
    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)
  5. RELEASE.md

        *   This does not change the minimum required version for building
            TensorFlow from source on Windows, but builds enabling
            `EIGEN_STRONG_INLINE` can take over 48 hours to compile without this
            flag. Refer to `configure.py` for more information about
            `EIGEN_STRONG_INLINE` and `/d2ReducedOptimizeHugeFunctions`.
        *   If either of the required DLLs, `msvcp140.dll` (old) or `msvcp140_1.dll`
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top