Skip to content

Commit

Permalink
Remove obsolete condition (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
tengyifei authored Feb 10, 2025
1 parent c3516d6 commit 10288db
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions torchprime/launcher/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,7 @@ def run(args, use_hf):

# Submit xpk workload
datetime_str = datetime.now().strftime("%Y%m%d-%H%M%S")
if use_hf:
command = [
"python",
] + list(args)
else:
command = ["python", "torchprime/launcher/thunk.py"] + list(args)
command = ["python", "torchprime/launcher/thunk.py"] + list(args)

# Forward a bunch of important env vars.
env_forwarding = [
Expand Down

0 comments on commit 10288db

Please sign in to comment.