PaddlePaddle / Paddle

PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)
http://www.paddlepaddle.org/
Apache License 2.0
22.12k stars 5.55k forks source link

Installation with ROCM #64207

Open juhonkang opened 4 months ago

juhonkang commented 4 months ago

问题描述 Issue Description

It seems it cannot run with this python -m pip install paddlepaddle-rocm==2.4.1.post401 -f https://www.paddlepaddle.org.cn/whl/rocm/stable.whl

版本&环境信息 Version & Environment Information

python 3.7

qili93 commented 4 months ago

please kindly help to confirm if you are running the above command in a standard docker environment provided by PaddlePaddle official docker image. For example:

docker pull paddlepaddle/paddle:latest-dev-rocm4.0-miopen2.11
docker run -it --name paddle-rocm-dev --shm-size=128G \
     --device=/dev/kfd --device=/dev/dri --group-add video \
     --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
     paddlepaddle/paddle:latest-dev-rocm4.0-miopen2.11 /bin/bash
python -m pip install paddlepaddle-rocm==2.4.1.post401 -f https://www.paddlepaddle.org.cn/whl/rocm/stable.whl

Also please provide your detailed error messge into this issue to diagnose, thanks!