Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Aslina (0.17 sec)

  1. configure.py

    def set_gcc_host_compiler_path(environ_cp):
      """Set GCC_HOST_COMPILER_PATH."""
      default_gcc_host_compiler_path = which('gcc') or ''
      cuda_bin_symlink = '%s/bin/gcc' % environ_cp.get('CUDA_TOOLKIT_PATH')
    
      if os.path.islink(cuda_bin_symlink):
        # os.readlink is only available in linux
        default_gcc_host_compiler_path = os.path.realpath(cuda_bin_symlink)
    
      gcc_host_compiler_path = prompt_loop_or_load_from_env(
          environ_cp,
    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)
Back to top