Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 17 (0.21 sec)

  1. .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 May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
  2. 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 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  3. 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 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
Back to top