Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sm (2.04 sec)

  1. .bazelrc

    # release while SASS is only forward compatible inside the current
    # major release. Example: sm_80 kernels can run on sm_89 GPUs but
    # not on sm_90 GPUs. compute_80 kernels though can also run on sm_90 GPUs.
    build:cuda_clang --repo_env=TF_CUDA_COMPUTE_CAPABILITIES="sm_60,sm_70,sm_80,sm_89,compute_90"
    
    # Set up compilation CUDA version and paths and use the CUDA Clang toolchain.
    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. configure.py

          if not m:
            # We now support sm_35,sm_50,sm_60,compute_70.
            sm_compute_match = re.match('(sm|compute)_?([0-9]+[0-9]+)',
                                        compute_capability)
            if not sm_compute_match:
              print('Invalid compute capability: %s' % compute_capability)
              all_valid = False
            else:
              ver = int(sm_compute_match.group(2))
              if ver < 30:
    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