Update data: 5 units
Browse files- engineering/robotics_blender_tabletop_reconstruction/base/software
- engineering/sanding_performance_scoring_instance_1/base/input
- engineering/sanding_performance_scoring_instance_1/base/software
- engineering/sumo_urban_am_peak_calibration/base/input
- engineering/sumo_urban_am_peak_calibration/base/software
- tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/README_RUNTIME.txt +2 -0
- tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/blender_portable_manifest.json +11 -0
- tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/download_blender_portable.ps1 +10 -0
- tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/run_blender_portable.ps1 +8 -0
- tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/smoke_probe_notes.txt +1 -0
- tasks/engineering/sanding_performance_scoring_instance_1/base/software/README.txt +1 -0
- tasks/engineering/sumo_urban_am_peak_calibration/base/software/bootstrap_uv_env.sh +9 -0
- tasks/engineering/sumo_urban_am_peak_calibration/base/software/python_with_task_deps.sh +9 -0
- tasks/engineering/sumo_urban_am_peak_calibration/base/software/run_in_task_env.sh +9 -0
tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/README_RUNTIME.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Task-local runtime metadata for robotics_blender_tabletop_reconstruction.
|
| 2 |
+
Use run_blender_portable.ps1 to download and launch the official portable Blender 5.0.1 build on Windows if the extracted runtime is not already present next to this wrapper.
|
tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/blender_portable_manifest.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"runtime_type": "task_local_portable_blender",
|
| 3 |
+
"selected_vm": "agenthle-dev-gpu-free",
|
| 4 |
+
"os_type": "windows",
|
| 5 |
+
"blender_version": "5.0.1",
|
| 6 |
+
"archive_name": "blender-5.0.1-windows-x64.zip",
|
| 7 |
+
"download_url": "https://download.blender.org/release/Blender5.0/blender-5.0.1-windows-x64.zip",
|
| 8 |
+
"extract_dir": "blender-5.0.1-windows-x64",
|
| 9 |
+
"exe_relative_path": "blender-5.0.1-windows-x64\\blender.exe",
|
| 10 |
+
"wrapper": "run_blender_portable.ps1"
|
| 11 |
+
}
|
tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/download_blender_portable.ps1
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
$ErrorActionPreference = "Stop"
|
| 2 |
+
$Root = Split-Path -Parent $MyInvocation.MyCommand.Path
|
| 3 |
+
$ZipPath = Join-Path $Root "blender-5.0.1-windows-x64.zip"
|
| 4 |
+
$ExtractDir = Join-Path $Root "blender-5.0.1-windows-x64"
|
| 5 |
+
$Url = "https://download.blender.org/release/Blender5.0/blender-5.0.1-windows-x64.zip"
|
| 6 |
+
if (-not (Test-Path $ExtractDir)) {
|
| 7 |
+
Invoke-WebRequest -Uri $Url -OutFile $ZipPath
|
| 8 |
+
Expand-Archive -Path $ZipPath -DestinationPath $Root -Force
|
| 9 |
+
}
|
| 10 |
+
Write-Host $ExtractDir
|
tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/run_blender_portable.ps1
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
$ErrorActionPreference = "Stop"
|
| 2 |
+
$Root = Split-Path -Parent $MyInvocation.MyCommand.Path
|
| 3 |
+
$ExtractDir = Join-Path $Root "blender-5.0.1-windows-x64"
|
| 4 |
+
$ExePath = Join-Path $ExtractDir "blender.exe"
|
| 5 |
+
if (-not (Test-Path $ExePath)) {
|
| 6 |
+
& (Join-Path $Root "download_blender_portable.ps1")
|
| 7 |
+
}
|
| 8 |
+
& $ExePath @args
|
tasks/engineering/robotics_blender_tabletop_reconstruction/base/software/smoke_probe_notes.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Judge-side independent verification already established that the selected Windows gpu-free VM can run a task-local portable Blender 5.0.1 probe against the submission assets.
|
tasks/engineering/sanding_performance_scoring_instance_1/base/software/README.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
No GUI software is required. Use the installed Python runtime on PATH.
|
tasks/engineering/sumo_urban_am_peak_calibration/base/software/bootstrap_uv_env.sh
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
| 4 |
+
TASK_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
| 5 |
+
WORK_DIR="${SUMO_URBAN_RUNTIME_WORK_DIR:-${TASK_ROOT}/output/.runtime_state}"
|
| 6 |
+
mkdir -p "${WORK_DIR}/.uv-cache" "${WORK_DIR}/.venv"
|
| 7 |
+
export UV_CACHE_DIR="${UV_CACHE_DIR:-${WORK_DIR}/.uv-cache}"
|
| 8 |
+
export UV_PROJECT_ENVIRONMENT="${UV_PROJECT_ENVIRONMENT:-${WORK_DIR}/.venv}"
|
| 9 |
+
exec uv sync --frozen --project "${TASK_ROOT}/input/runtime_env"
|
tasks/engineering/sumo_urban_am_peak_calibration/base/software/python_with_task_deps.sh
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
| 4 |
+
TASK_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
| 5 |
+
WORK_DIR="${SUMO_URBAN_RUNTIME_WORK_DIR:-${TASK_ROOT}/output/.runtime_state}"
|
| 6 |
+
mkdir -p "${WORK_DIR}/.uv-cache" "${WORK_DIR}/.venv"
|
| 7 |
+
export UV_CACHE_DIR="${UV_CACHE_DIR:-${WORK_DIR}/.uv-cache}"
|
| 8 |
+
export UV_PROJECT_ENVIRONMENT="${UV_PROJECT_ENVIRONMENT:-${WORK_DIR}/.venv}"
|
| 9 |
+
exec uv run --frozen --project "${TASK_ROOT}/input/runtime_env" -- python "$@"
|
tasks/engineering/sumo_urban_am_peak_calibration/base/software/run_in_task_env.sh
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
| 4 |
+
TASK_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
| 5 |
+
WORK_DIR="${SUMO_URBAN_RUNTIME_WORK_DIR:-${TASK_ROOT}/output/.runtime_state}"
|
| 6 |
+
mkdir -p "${WORK_DIR}/.uv-cache" "${WORK_DIR}/.venv"
|
| 7 |
+
export UV_CACHE_DIR="${UV_CACHE_DIR:-${WORK_DIR}/.uv-cache}"
|
| 8 |
+
export UV_PROJECT_ENVIRONMENT="${UV_PROJECT_ENVIRONMENT:-${WORK_DIR}/.venv}"
|
| 9 |
+
exec uv run --frozen --project "${TASK_ROOT}/input/runtime_env" -- "$@"
|