Skip to content

Commit

Permalink
Fix vulkan target env extensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
monorimet committed Sep 11, 2023
1 parent e9e8f0e commit 399f882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shark/iree_utils/vulkan_target_env_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def get_version(triple):
@functools.cache
def get_extensions(triple):
def make_ext_list(ext_list):
return ", ".join(ext_list)
res = ", ".join(ext_list)
return f"[{res}]"

arch, product, os = triple
if arch == "m1":
Expand Down

0 comments on commit 399f882

Please sign in to comment.