mirror of https://github.com/explosion/spaCy.git
Add hint for --gpu-id to CLI device info (#7234)
* Add hint for --gpu-id to CLI device info If the user has `cupy` and an available GPU, add a hint about using `--gpu-id 0` to the CLI output. * Undo change to original CPU message
This commit is contained in:
parent
d723382caa
commit
fb98862337
|
@ -11,6 +11,7 @@ from click.parser import split_arg_string
|
||||||
from typer.main import get_command
|
from typer.main import get_command
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from thinc.api import Config, ConfigValidationError, require_gpu
|
from thinc.api import Config, ConfigValidationError, require_gpu
|
||||||
|
from thinc.util import has_cupy, gpu_is_available
|
||||||
from configparser import InterpolationError
|
from configparser import InterpolationError
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@ -510,3 +511,5 @@ def setup_gpu(use_gpu: int) -> None:
|
||||||
require_gpu(use_gpu)
|
require_gpu(use_gpu)
|
||||||
else:
|
else:
|
||||||
msg.info("Using CPU")
|
msg.info("Using CPU")
|
||||||
|
if has_cupy and gpu_is_available():
|
||||||
|
msg.info("To switch to GPU 0, use the option: --gpu-id 0")
|
||||||
|
|
Loading…
Reference in New Issue