We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b1e0f3 commit b00a5e2Copy full SHA for b00a5e2
tools/ci/check_validate.sh
@@ -29,8 +29,10 @@ function prepare_env() {
29
[ $? -ne 0 ] && LOG "[FATAL] Update pip failed!" && exit -1
30
# install torch
31
pip install torch==2.7.0 --index-url https://download.pytorch.org/whl/cu118
32
+ python -c "import torch; print(torch.__version__)"
33
# install paddlepaddle of develop
34
python -m pip install --pre paddlepaddle-gpu -i https://www.paddlepaddle.org.cn/packages/nightly/cu118/
35
+ python -c "import paddle; print(paddle.version.commit)"
36
}
37
38
function check_validation() {
0 commit comments