"git@developer.sourcefind.cn:wangsen/paddle_dbnet.git" did not exist on "1e9099d6282169d685b26db008e3682353365ad0"
Commit 30b10d29 authored by LDOUBLEV's avatar LDOUBLEV
Browse files

raise error when run on cpu but set use_gpu as True

parent 49c4a3a7
......@@ -159,6 +159,11 @@ def create_predictor(args, mode, logger):
precision = inference.PrecisionType.Float32
if args.use_gpu:
gpu_id = get_infer_gpuid()
if gpu_id is None:
raise ValueError(
"Not found GPU in current device. Please check your device or set args.use_gpu as False"
)
config.enable_use_gpu(args.gpu_mem, 0)
if args.use_tensorrt:
config.enable_tensorrt_engine(
......
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