Skip to content

Commit

Permalink
[qnn ep] fix naming convention of ort-nightly-qnn package (#22157)
Browse files Browse the repository at this point in the history
followed the rocm example below it which isn't the naming convention we
want to follow. didn't fix rocm because i'm not sure if there are
consumers using its naming convention.
  • Loading branch information
jywu-msft committed Sep 20, 2024
1 parent 03ce996 commit c270fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def parse_arg_remove_string(argv, arg_name_equal):
pass
elif parse_arg_remove_boolean(sys.argv, "--use_qnn"):
is_qnn = True
package_name = "onnxruntime-qnn" if not nightly_build else "ort-qnn-nightly"
package_name = "onnxruntime-qnn" if not nightly_build else "ort-nightly-qnn"

if is_rocm or is_migraphx:
package_name = "onnxruntime-rocm" if not nightly_build else "ort-rocm-nightly"
Expand Down

0 comments on commit c270fe6

Please sign in to comment.