"git@developer.sourcefind.cn:OpenDAS/torchaudio.git" did not exist on "1f9b91041d2610c163a3931857cb71f3490f2912"
Unverified Commit 290e015c authored by Suhong Moon's avatar Suhong Moon Committed by GitHub
Browse files

Update Help Text for --gpu-memory-utilization Argument (#2183)

parent 1b7c791d
...@@ -156,11 +156,13 @@ class EngineArgs: ...@@ -156,11 +156,13 @@ class EngineArgs:
type=int, type=int,
default=EngineArgs.swap_space, default=EngineArgs.swap_space,
help='CPU swap space size (GiB) per GPU') help='CPU swap space size (GiB) per GPU')
parser.add_argument('--gpu-memory-utilization', parser.add_argument(
type=float, '--gpu-memory-utilization',
default=EngineArgs.gpu_memory_utilization, type=float,
help='the percentage of GPU memory to be used for ' default=EngineArgs.gpu_memory_utilization,
'the model executor') help='the fraction of GPU memory to be used for '
'the model executor, which can range from 0 to 1.'
'If unspecified, will use the default value of 0.9.')
parser.add_argument('--max-num-batched-tokens', parser.add_argument('--max-num-batched-tokens',
type=int, type=int,
default=EngineArgs.max_num_batched_tokens, default=EngineArgs.max_num_batched_tokens,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment