Skip to content

Commit 0b25ac2

Browse files
authored
[Release] fbgemm_gpu and fbgemm_gpu_genai. Cleanup release sripts (#6570)
1. Cleanup conda scripts 2. fbgemm_gpu and fbgemm_gpu_genai release
1 parent dba7ae1 commit 0b25ac2

File tree

4 files changed

+3
-25
lines changed

4 files changed

+3
-25
lines changed

release/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ These are a collection of scripts that are to be used for release activities.
99
1010
## Requirements to actually run these scripts
1111
* AWS access to pytorch account (META Employees: `bunnylol cloud pytorch`)
12-
* Access to upload conda packages to the [`pytorch`](https://anaconda.org/pytorch) conda channel
1312
* Access to the PyPI repositories (like [torch](https://pypi.org/project/torch))
1413

1514
## Promote pypi to staging

release/promote.sh

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,6 @@ promote_s3() {
3737
echo
3838
}
3939

40-
promote_conda() {
41-
local package_name
42-
package_name=$1
43-
local package_type
44-
package_type=$2
45-
local promote_version
46-
promote_version=$3
47-
echo "=-=-=-= Promoting ${package_name}'s v${promote_version} ${package_type} packages' =-=-=-="
48-
(
49-
ANACONDA="echo + anaconda"
50-
if [[ "${DRY_RUN:-enabled}" = "disabled" ]]; then
51-
ANACONDA="anaconda"
52-
set -x
53-
else
54-
echo "DRY_RUN enabled not actually doing work"
55-
fi
56-
${ANACONDA} copy --to-owner ${PYTORCH_CONDA_TO:-pytorch} ${PYTORCH_CONDA_FROM:-pytorch-test}/${package_name}/${promote_version}
57-
)
58-
echo
59-
}
60-
6140
promote_pypi() {
6241
local package_name
6342
package_name=$1
@@ -106,7 +85,8 @@ promote_pypi() {
10685
# promote_s3 "pytorch_triton_xpu" whl "${TRITON_VERSION}"
10786
# promote_s3 torchtext whl "${TORCHTEXT_VERSION}"
10887
# promote_s3 torchrec whl "${TORCHREC_VERSION}"
109-
# promote_s3 fbgemm-gpu whl "${FBGEMMGPU_VERSION}"
88+
# promote_s3 fbgemm_gpu whl "${FBGEMMGPU_VERSION}"
89+
# promote_s3 fbgemm_gpu_genai whl "${FBGEMMGPU_VERSION}"
11090
# promote_s3 "libtorch-*" libtorch "${PYTORCH_VERSION}"
11191
# promote_s3 "torch_tensorrt" whl "${TENSORRT_VERSION}"
11292
# promote_s3 "torchao" whl "${TORCHAO_VERSION}"

release/promote/common_utils.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ aws_promote() {
4848
(
4949
set -x
5050
${AWS} s3 cp ${DRY_RUN_FLAG} \
51-
--only-show-errors \
5251
--acl public-read \
5352
--recursive \
5453
--exclude '*' \

release/release_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ EXECUTORCH_VERSION=${EXECUTORCH_VERSION:-0.3.0}
1212
TORCHAO_VERSION=${TORCHAO_VERSION:-0.9.0}
1313
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.11.0}
1414
TORCHTUNE_VERSION=${TORCHTUNE_VERSION:-0.2.1}
15-
FBGEMMGPU_VERSION=${FBGEMMGPU_VERSION:-1.0.0}
15+
FBGEMMGPU_VERSION=${FBGEMMGPU_VERSION:-1.2.0}

0 commit comments

Comments
 (0)