Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/129730
Note: Links to docs will display an error until the docs builds have been completed. ❗ 1 Active SEVsThere are 1 currently active SEVs. If your PR is affected, please view them below: ✅ No FailuresAs of commit 4280371 with merge base 8af58f6 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
|
Depends on triton xpu issue intel/intel-xpu-backend-for-triton#1505. Need triton xpu commit pin update PR #129847 land firstly. Have tested the new triton commit in https://github.com/pytorch/pytorch/actions/runs/9733469391/job/26860432767?pr=129730, and it works fine. |
a6a0d79 to
83fcaa6
Compare
51e201b to
ef8158f
Compare
84747c7 to
2f58326
Compare
| # Triton xpu build use GCC11 | ||
| if [[ "${BUILD_DEVICE}" == xpu ]]; then | ||
| docker exec -t "${container_name}" yum install -y devtoolset-11-gcc-c++ | ||
| docker exec -t "${container_name}" bash -c "source /opt/rh/devtoolset-11/enable && ${PYTHON_EXECUTABLE} /pytorch/.github/scripts/build_triton_wheel.py --device=$BUILD_DEVICE $RELEASE" |
There was a problem hiding this comment.
nit: Can we do something like this ?
if [[ "${BUILD_DEVICE}" == xpu ]]; then
docker exec -t "${container_name}" yum install -y devtoolset-11-gcc-c++
docker exec -t "${container_name}" bash -c "source /opt/rh/devtoolset-11/enable
fi
docker exec -t "${container_name}" bash -c "${PYTHON_EXECUTABLE} /pytorch/.github/scripts/build_triton_wheel.py --device=$BUILD_DEVICE $RELEASE"
There was a problem hiding this comment.
unfortunately, we can't. Because the source /opt/rh/devtoolset-11/enable is only effective at that time. This change will let xpu use GCC9 again
|
@pytorchbot merge |
Merge startedYour change will be merged once all checks pass (ETA 0-4 Hours). Learn more about merging in the wiki. Questions? Feedback? Please reach out to the PyTorch DevX Team |
Enable triton xpu wheel build firstly, then add pytorch xpu nightly wheel build, works for #114850