Skip to content

Commit

Permalink
[HIPIFY][tests][rocSOLVER][fix] Exclude `cusparse2rocsparse_10010_120…
Browse files Browse the repository at this point in the history
…00.cu` for CUDA < 11000 on Windows

[Reason] APIs in the test were not supported on Windows until CUDA 11.0
  • Loading branch information
emankov committed Jan 23, 2024
1 parent 8024acc commit d83aede
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/lit.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ if config.cuda_version_major < 10 or (config.cuda_version_major == 10 and config
if config.cuda_version_major < 10 or (config.cuda_version_major == 10 and config.cuda_version_minor < 1) or config.cuda_version_major >= 12:
config.excludes.append('cusparse2rocsparse_10010_12000.cu')

if config.cuda_version_major < 11 and sys.platform in ['win32']:
config.excludes.append('cusparse2rocsparse_10010_12000.cu')

if config.cuda_version_major < 11 or (config.cuda_version_major == 11 and config.cuda_version_minor < 1) or config.cuda_version_major >= 12:
config.excludes.append('cusparse2rocsparse_11010_12000.cu')

Expand Down

0 comments on commit d83aede

Please sign in to comment.