Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
ab6f1ede
Unverified
Commit
ab6f1ede
authored
Aug 30, 2023
by
Huy Do
Committed by
GitHub
Aug 30, 2023
Browse files
[Release-Only] Branch Cut - Bump vision Version 0.16.0 (#7913)
parent
f1b4c7a6
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
83 additions
and
84 deletions
+83
-84
.github/workflows/build-cmake.yml
.github/workflows/build-cmake.yml
+3
-3
.github/workflows/build-conda-linux.yml
.github/workflows/build-conda-linux.yml
+4
-4
.github/workflows/build-conda-m1.yml
.github/workflows/build-conda-m1.yml
+4
-4
.github/workflows/build-conda-macos.yml
.github/workflows/build-conda-macos.yml
+4
-4
.github/workflows/build-conda-windows.yml
.github/workflows/build-conda-windows.yml
+4
-4
.github/workflows/build-wheels-aarch64-linux.yml
.github/workflows/build-wheels-aarch64-linux.yml
+4
-4
.github/workflows/build-wheels-linux.yml
.github/workflows/build-wheels-linux.yml
+4
-4
.github/workflows/build-wheels-m1.yml
.github/workflows/build-wheels-m1.yml
+4
-4
.github/workflows/build-wheels-macos.yml
.github/workflows/build-wheels-macos.yml
+4
-4
.github/workflows/build-wheels-windows.yml
.github/workflows/build-wheels-windows.yml
+4
-4
.github/workflows/docs.yml
.github/workflows/docs.yml
+11
-11
.github/workflows/lint.yml
.github/workflows/lint.yml
+14
-15
.github/workflows/prototype-tests-linux-gpu.yml
.github/workflows/prototype-tests-linux-gpu.yml
+2
-2
.github/workflows/tests.yml
.github/workflows/tests.yml
+15
-15
.github/workflows/update-viablestrict.yml
.github/workflows/update-viablestrict.yml
+1
-1
version.txt
version.txt
+1
-1
No files found.
.github/workflows/build-cmake.yml
View file @
ab6f1ede
...
...
@@ -20,7 +20,7 @@ jobs:
gpu-arch-type
:
cuda
gpu-arch-version
:
"
11.8"
fail-fast
:
false
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
runner
:
${{ matrix.runner }}
...
...
@@ -42,7 +42,7 @@ jobs:
-
runner
:
macos-12
-
runner
:
macos-m1-12
fail-fast
:
false
uses
:
pytorch/test-infra/.github/workflows/macos_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/macos_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
runner
:
${{ matrix.runner }}
...
...
@@ -65,7 +65,7 @@ jobs:
gpu-arch-type
:
cuda
gpu-arch-version
:
"
11.8"
fail-fast
:
false
uses
:
pytorch/test-infra/.github/workflows/windows_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/windows_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
runner
:
${{ matrix.runner }}
...
...
.github/workflows/build-conda-linux.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
conda
os
:
linux
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -34,13 +34,13 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_conda_linux.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_conda_linux.yml@
release/2.1
with
:
conda-package-directory
:
${{ matrix.conda-package-directory }}
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-conda-m1.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
conda
os
:
macos-arm64
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -34,13 +34,13 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_conda_macos.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_conda_macos.yml@
release/2.1
with
:
conda-package-directory
:
${{ matrix.conda-package-directory }}
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-conda-macos.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
conda
os
:
macos
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -34,13 +34,13 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_conda_macos.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_conda_macos.yml@
release/2.1
with
:
conda-package-directory
:
${{ matrix.conda-package-directory }}
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-conda-windows.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
conda
os
:
windows
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -34,13 +34,13 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_conda_windows.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_conda_windows.yml@
release/2.1
with
:
conda-package-directory
:
${{ matrix.conda-package-directory }}
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-wheels-aarch64-linux.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
wheel
os
:
linux-aarch64
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
with-cuda
:
disable
build
:
needs
:
generate-matrix
...
...
@@ -34,12 +34,12 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_wheels_linux.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_wheels_linux.yml@
release/2.1
with
:
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-wheels-linux.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
wheel
os
:
linux
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -33,12 +33,12 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_wheels_linux.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_wheels_linux.yml@
release/2.1
with
:
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-wheels-m1.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
wheel
os
:
macos-arm64
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -33,12 +33,12 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_wheels_macos.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_wheels_macos.yml@
release/2.1
with
:
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-wheels-macos.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
wheel
os
:
macos
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -33,12 +33,12 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_wheels_macos.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_wheels_macos.yml@
release/2.1
with
:
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
post-script
:
${{ matrix.post-script }}
...
...
.github/workflows/build-wheels-windows.yml
View file @
ab6f1ede
...
...
@@ -15,12 +15,12 @@ on:
jobs
:
generate-matrix
:
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
main
uses
:
pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@
release/2.1
with
:
package-type
:
wheel
os
:
windows
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build
:
needs
:
generate-matrix
strategy
:
...
...
@@ -34,12 +34,12 @@ jobs:
smoke-test-script
:
test/smoke_test.py
package-name
:
torchvision
name
:
${{ matrix.repository }}
uses
:
pytorch/test-infra/.github/workflows/build_wheels_windows.yml@
main
uses
:
pytorch/test-infra/.github/workflows/build_wheels_windows.yml@
release/2.1
with
:
repository
:
${{ matrix.repository }}
ref
:
"
"
test-infra-repository
:
pytorch/test-infra
test-infra-ref
:
main
test-infra-ref
:
release/2.1
build-matrix
:
${{ needs.generate-matrix.outputs.matrix }}
pre-script
:
${{ matrix.pre-script }}
env-script
:
${{ matrix.env-script }}
...
...
.github/workflows/docs.yml
View file @
ab6f1ede
...
...
@@ -14,7 +14,7 @@ on:
jobs
:
build
:
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
upload-artifact
:
docs
...
...
@@ -80,7 +80,7 @@ jobs:
((github.ref_type == 'branch' && github.ref_name == 'main') || github.ref_type == 'tag')
permissions
:
contents
:
write
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
download-artifact
:
docs
...
...
.github/workflows/lint.yml
View file @
ab6f1ede
...
...
@@ -11,7 +11,7 @@ on:
jobs
:
python-source-and-configs
:
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
script
:
|
...
...
@@ -37,7 +37,7 @@ jobs:
fi
c-source
:
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
script
:
|
...
...
@@ -69,9 +69,8 @@ jobs:
fi
echo '::endgroup::'
python-types
:
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
script
:
|
...
...
@@ -100,7 +99,7 @@ jobs:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Run BC Lint Action
uses
:
pytorch/test-infra/.github/actions/bc-lint@
main
uses
:
pytorch/test-infra/.github/actions/bc-lint@
release/2.1
with
:
repo
:
${{ github.event.pull_request.head.repo.full_name }}
base_sha
:
${{ github.event.pull_request.base.sha }}
...
...
.github/workflows/prototype-tests-linux-gpu.yml
View file @
ab6f1ede
...
...
@@ -20,7 +20,7 @@ jobs:
gpu-arch-type
:
cuda
gpu-arch-version
:
"
11.8"
fail-fast
:
false
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
runner
:
${{ matrix.runner }}
...
...
.github/workflows/tests.yml
View file @
ab6f1ede
...
...
@@ -26,7 +26,7 @@ jobs:
gpu-arch-type
:
cuda
gpu-arch-version
:
"
11.8"
fail-fast
:
false
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
runner
:
${{ matrix.runner }}
...
...
@@ -55,7 +55,7 @@ jobs:
-
python-version
:
"
3.8"
runner
:
macos-m1-12
fail-fast
:
false
uses
:
pytorch/test-infra/.github/workflows/macos_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/macos_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
# We need an increased timeout here, since the macos-12 runner is the free one from GH
...
...
@@ -87,7 +87,7 @@ jobs:
gpu-arch-type
:
cuda
gpu-arch-version
:
"
11.8"
fail-fast
:
false
uses
:
pytorch/test-infra/.github/workflows/windows_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/windows_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
runner
:
${{ matrix.runner }}
...
...
@@ -106,7 +106,7 @@ jobs:
./.github/scripts/unittest.sh
onnx
:
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
script
:
|
...
...
@@ -136,7 +136,7 @@ jobs:
echo '::endgroup::'
unittests-extended
:
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
main
uses
:
pytorch/test-infra/.github/workflows/linux_job.yml@
release/2.1
with
:
repository
:
pytorch/vision
script
:
|
...
...
.github/workflows/update-viablestrict.yml
View file @
ab6f1ede
...
...
@@ -14,7 +14,7 @@ concurrency:
jobs
:
do_update_viablestrict
:
uses
:
pytorch/test-infra/.github/workflows/update-viablestrict.yml@
main
uses
:
pytorch/test-infra/.github/workflows/update-viablestrict.yml@
release/2.1
with
:
repository
:
pytorch/vision
required_checks
:
"
Build
Linux,Build
M1,Build
Macos,Build
Windows,Tests,CMake,Lint,Docs"
...
...
version.txt
View file @
ab6f1ede
0.16.0
a0
0.16.0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment