Skip to content

Commit 674e174

Browse files
authored
update wheels (#206)
1 parent ea3075b commit 674e174

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed
2.35 MB
Binary file not shown.
4.64 KB
Binary file not shown.
5.72 KB
Binary file not shown.

scripts/build_wheels.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ BLUE='\033[0;34m'
99
NC='\033[0m'
1010

1111
# Configuration
12-
PYTORCH_VERSION="2.9.0.dev20250828"
12+
PYTORCH_VERSION="2.9.0.dev20250905"
1313
VLLM_BRANCH="v0.10.0"
14-
MONARCH_COMMIT="b8a047359462c134bc9f1c48d7d9b8c2248913d2"
15-
TORCHTITAN_COMMIT="298bf48212adf36c60690f0a8be7481737890828"
16-
TORCHSTORE_COMMIT="35430b4be4f26519704b1c7db07deccae87c883b"
14+
MONARCH_COMMIT="ce078ddbbac6b6f3682afd763d8d96dad8092a91"
15+
TORCHTITAN_COMMIT="60645bc78cf4138ae54e8f29a8b24bf0ccd64404"
16+
TORCHSTORE_COMMIT="dae7e5cbc2b23c294e14fd5be86a38411595bed4"
1717
BUILD_DIR="$HOME/forge-build"
1818
WHEEL_DIR="$(pwd)/assets/wheels"
1919

scripts/install.sh

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ log_error() { echo -e "${RED}[ERROR]${NC} $1"; }
1818
log_warning() { echo -e "${YELLOW}[WARNING]${NC} $1";}
1919

2020
# Configuration
21-
PYTORCH_VERSION="2.9.0.dev20250828"
21+
PYTORCH_VERSION="2.9.0.dev20250905"
2222
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
2323
WHEEL_DIR="$SCRIPT_DIR/../assets/wheels"
24-
RELEASE_TAG="v0.0.0"
24+
RELEASE_TAG="v0.0.0-92025"
2525
GITHUB_REPO="meta-pytorch/forge"
2626

2727
# Check conda environment
@@ -165,9 +165,16 @@ download_vllm_wheel() {
165165

166166
if [ -z "$vllm_wheel_name" ]; then
167167
log_error "Could not find vLLM wheel in release $RELEASE_TAG"
168-
log_info "Make sure you've uploaded the vLLM wheel to the GitHub release"
168+
log_info "Make sure the vLLM wheel has been uploaded to the GitHub release"
169169
exit 1
170170
fi
171+
for f in assets/wheels/vllm-*; do
172+
[ -e "$f" ] || continue # skip if glob didn't match
173+
if [ "$(basename "$f")" != "$vllm_wheel_name" ]; then
174+
log_info "Removing stale vLLM wheel: $(basename "$f")"
175+
rm -f "$f"
176+
fi
177+
done
171178

172179
local local_path="$WHEEL_DIR/$vllm_wheel_name"
173180

0 commit comments

Comments
 (0)