Skip to content

Commit

Permalink
このcommitはexprorer_msmdでmpsを実装するためのものです。
Browse files Browse the repository at this point in the history
  • Loading branch information
Ell112a committed Apr 30, 2024
1 parent d9bfd3f commit ac01c5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exprorer_msmd
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ if __name__ == "__main__":
# Raise EnvironmentError if GPU is not available
gpuids = get_gpuids()
# gpuids = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
gpuids = ast.literal_eval(args.mps)
if args.mps is not None:
gpuids = ast.literal_eval(args.mps)

ngpus = len(gpuids)
if not setting["general"]["multiprocessing"]:
Expand Down

0 comments on commit ac01c5c

Please sign in to comment.