Skip to content

Commit

Permalink
Add target triple support for TITAN RTX (nod-ai#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchen62 authored Jan 4, 2023
1 parent e60b456 commit 017dcab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions shark/iree_utils/vulkan_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ def get_vulkan_target_triple(device_name):
triple = f"turing-rtx6000-{system_os}"
elif all(x in device_name for x in ("RTX", "8000")):
triple = f"turing-rtx8000-{system_os}"
elif all(x in device_name for x in ("TITAN", "RTX")):
triple = f"turing-titanrtx-{system_os}"
elif all(x in device_name for x in ("GTX", "1060")):
triple = f"pascal-gtx1060-{system_os}"
elif all(x in device_name for x in ("GTX", "1070")):
Expand Down

0 comments on commit 017dcab

Please sign in to comment.