This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stop on any error | |
$ErrorActionPreference = "Stop" | |
Write-Host "=== Installing ROCm Nightly PyTorch (gfx1151) in current directory ===" | |
# Locate uv | |
$uvExe = (Get-Command uv -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Source) | |
if (-not $uvExe) { throw "uv not found. Please install with: winget install astral-sh.uv" } | |
function Run-UV { param([Parameter(ValueFromRemainingArguments = $true)] $Args); & $uvExe @Args } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stop on any error | |
$ErrorActionPreference = "Stop" | |
Write-Host "=== Installing ROCm PyTorch Environment on Windows (gfx1151) ===" | |
# --------------------------- | |
# Helper: robust download | |
# --------------------------- | |
function Download-WithRetries { | |
param( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# User for local dev | |
FROM app/base | |
RUN npm install -g orion-cli | |
# This forces package-catalog update. Should speed up further runs | |
RUN meteor show meteor-platform |