Skip to content

Commit

Permalink
Fix if statement in lit.cfg.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mmakevic-amd committed Jun 20, 2024
1 parent 59ada7f commit bc143af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xla/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
("%PYTHON", os.getenv("PYTHON", sys.executable)),
])

if lit_config.params.get('PTX', 'GCN'):
if lit_config.params.get('PTX') == 'GCN':
config.available_features.add("IS_ROCM")


Expand Down

0 comments on commit bc143af

Please sign in to comment.