Commit d4c0517f authored by ronny1996's avatar ronny1996
Browse files

fix bug for rocm

parent c81baca7
......@@ -311,7 +311,10 @@ def create_predictor(args, mode, logger):
def get_infer_gpuid():
cmd = "env | grep CUDA_VISIBLE_DEVICES"
if not paddle.fluid.core.is_compiled_with_rocm():
cmd = "env | grep CUDA_VISIBLE_DEVICES"
else:
cmd = "env | grep HIP_VISIBLE_DEVICES"
env_cuda = os.popen(cmd).readlines()
if len(env_cuda) == 0:
return 0
......
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