Skip to content

Commit 35443d0

Browse files
committed
Merge branch 'master' of github.com:pytorch/pytorch into interpolate_uint8_images_linear_cpu_support_dev
2 parents 8721df6 + e4fe11e commit 35443d0

654 files changed

Lines changed: 17964 additions & 5204 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.ci/onnx/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $MAYBE_SUDO pip -q install hypothesis==4.57.1
5959
##############
6060
if [[ "$BUILD_ENVIRONMENT" == *onnx* ]]; then
6161
pip install -q --user --no-use-pep517 "git+https://github.com/pytorch/vision.git@$(cat .github/ci_commit_pins/vision.txt)"
62-
pip install -q --user ninja flatbuffers==2.0 numpy==1.22.4 onnxruntime==1.12.1 beartype==0.10.4 onnx==1.12.0
62+
pip install -q --user ninja flatbuffers==2.0 numpy==1.22.4 onnxruntime==1.13.1 beartype==0.10.4 onnx==1.13.0
6363
# TODO: change this when onnx-script is on testPypi
6464
pip install 'onnx-script @ git+https://github.com/microsoft/onnx-script@4f3ff0d806d0d0f30cecdfd3e8b094b1e492d44a'
6565
# numba requires numpy <= 1.20, onnxruntime requires numpy >= 1.21.

.ci/pytorch/test.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ test_dynamo_shard() {
249249
test_inductor_distributed() {
250250
# this runs on both single-gpu and multi-gpu instance. It should be smart about skipping tests that aren't supported
251251
# with if required # gpus aren't available
252-
PYTORCH_TEST_WITH_INDUCTOR=0 PYTORCH_TEST_WITH_INDUCTOR=0 python test/run_test.py --include distributed/test_dynamo_distributed --verbose
252+
PYTORCH_TEST_WITH_INDUCTOR=0 python test/run_test.py --include distributed/test_dynamo_distributed --verbose
253253
assert_git_not_dirty
254254
}
255255

@@ -828,10 +828,6 @@ test_executorch() {
828828
assert_git_not_dirty
829829
}
830830

831-
test_smoke() {
832-
time python test/run_test.py --include test_fx test_jit test_schema_check test_foreach test_weak --verbose
833-
}
834-
835831
if ! [[ "${BUILD_ENVIRONMENT}" == *libtorch* || "${BUILD_ENVIRONMENT}" == *-bazel-* || "${BUILD_ENVIRONMENT}" == *-tsan* ]]; then
836832
(cd test && python -c "import torch; print(torch.__config__.show())")
837833
(cd test && python -c "import torch; print(torch.__config__.parallel_info())")
@@ -992,9 +988,6 @@ elif [[ "${TEST_CONFIG}" = docs_test ]]; then
992988
test_docs_test
993989
elif [[ "${TEST_CONFIG}" == *functorch* ]]; then
994990
test_functorch
995-
elif [[ "${TEST_CONFIG}" == *smoke* ]]; then
996-
# TODO: Delete me once we get more 3.11 testing
997-
test_smoke
998991
else
999992
install_torchvision
1000993
install_triton

.circleci/scripts/binary_windows_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export CUDA_VERSION="${DESIRED_CUDA/cu/}"
88
export USE_SCCACHE=1
99
export SCCACHE_BUCKET=ossci-compiler-cache
1010
export SCCACHE_IGNORE_SERVER_IO_ERROR=1
11-
export VC_YEAR=2019
11+
export VC_YEAR=2022
1212

1313
if [[ "${DESIRED_CUDA}" == *"cu11"* ]]; then
1414
export BUILD_SPLIT_CUDA=ON

.circleci/scripts/binary_windows_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eux -o pipefail
44
source "${BINARY_ENV_FILE:-/c/w/env}"
55

66
export CUDA_VERSION="${DESIRED_CUDA/cu/}"
7-
export VC_YEAR=2019
7+
export VC_YEAR=2022
88

99
pushd "$BUILDER_ROOT"
1010

.github/actions/calculate-docker-image/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
id: calculate-tag
3939
env:
4040
IS_XLA: ${{ inputs.xla == 'true' && 'true' || '' }}
41-
XLA_IMAGE_TAG: v0.9
41+
XLA_IMAGE_TAG: v1.0
4242
DOCKER_IMAGE_BASE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/pytorch/${{ inputs.docker-image-name }}
4343
run: |
4444
if [ -n "${IS_XLA}" ]; then

.github/ci_commit_pins/vision.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
135a0f9ea9841b6324b4fe8974e2543cbb95709a
1+
378a3274b178ab065393f0de24e0b8fba9ab819d

.github/ci_commit_pins/xla.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9cbcdb4008c14ad8251c5d4d7723aa616f659edb
1+
a121c7d3353f1c313ddc0fc97cc41162a3dd28e4

.github/pytorch-probot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
tracking_issue: 24422
22
ciflow_tracking_issue: 64124
3+
ciflow_push_tags:
4+
- ciflow/binaries
5+
- ciflow/binaries_conda
6+
- ciflow/binaries_libtorch
7+
- ciflow/binaries_wheel
8+
- ciflow/inductor
9+
- ciflow/inductor-perf-test-nightly
10+
- ciflow/mps
11+
- ciflow/nightly
12+
- ciflow/periodic
13+
- ciflow/trunk
14+
- ciflow/unstable

.github/requirements-gha-cache.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ boto3==1.19.12
99
jinja2==3.0.1
1010
lintrunner==0.9.2
1111
ninja==1.10.0.post1
12-
pynvml==11.4.1
12+
nvidia-ml-py==11.525.84
1313
pyyaml==6.0
1414
requests==2.26
1515
rich==10.9.0

.github/requirements/pip-requirements-macOS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ numba==0.56.0; platform_machine == "arm64"
99
numba<=0.49.1; platform_machine != "arm64"
1010
opt-einsum>=3.3
1111
psutil==5.9.1
12-
pynvml==11.4.1
12+
nvidia-ml-py==11.525.84
1313
pygments==2.12.0
1414
pytest==7.2.0
1515
pytest-xdist==3.0.2

0 commit comments

Comments
 (0)