Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for paths (0.5 sec)

  1. .bazelrc

    # Use Python 3.X as installed in container image
    build:release_linux_base --action_env PYTHON_BIN_PATH="/usr/bin/python3"
    build:release_linux_base --action_env PYTHON_LIB_PATH="/usr/lib/tf_python"
    build:release_linux_base --python_path="/usr/bin/python3"
    # Set Clang as compiler. Use the actual path to clang installed in container.
    build:release_cpu_linux_base --repo_env=CC="/usr/lib/llvm-17/bin/clang"
    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. RELEASE.md

        GRU(recurrent_activation='hard_sigmoid', reset_after=False) to fallback to
        1.x behavior.
    
    *   `CUDNN_INSTALL_PATH`, `TENSORRT_INSTALL_PATH`, `NCCL_INSTALL_PATH`,
        `NCCL_HDR_PATH` are deprecated. Use `TF_CUDA_PATHS` instead which supports a
        comma-separated list of base paths that are searched to find CUDA libraries
        and headers.
    
    Refer to our
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  3. tensorflow/c/c_test.c

      const char* path;
    
      if (!TF_StringStreamNext(s, &path)) {
        fprintf(stderr, "TF_GetLocalTempDirectories returned no results\n");
        return 1;
      }
    
      char file_name[100];
      time_t t = time(NULL);
      snprintf(file_name, sizeof(file_name), "test-%d-%ld.txt", getpid(), t);
    
      size_t length = 2 + strlen(path) + strlen(file_name);
      char* full_path = malloc(length);
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 2.8K bytes
    - Viewed (0)
Back to top