Update data: 5 units
Browse files- engineering/aerospace_low_thrust_trajectory/base/software
- engineering/cailian_road_highway_alignment_2/base/input
- engineering/cailian_road_highway_alignment_2/base/software
- engineering/chisel_verilog_alignment_seq_1/base/input
- engineering/chisel_verilog_alignment_seq_1/base/software
- tasks/engineering/aerospace_low_thrust_trajectory/base/software/README.txt +1 -0
- tasks/engineering/aerospace_low_thrust_trajectory/base/software/python +10 -0
- tasks/engineering/aerospace_low_thrust_trajectory/base/software/uv +4 -0
- tasks/engineering/cailian_road_highway_alignment_2/base/software/open_civil3d_2024.bat +7 -0
- tasks/engineering/chisel_verilog_alignment_seq_1/base/software/README.txt +8 -0
- tasks/engineering/chisel_verilog_alignment_seq_1/base/software/firtool +3 -0
- tasks/engineering/chisel_verilog_alignment_seq_1/base/software/jq +3 -0
- tasks/engineering/chisel_verilog_alignment_seq_1/base/software/python +3 -0
- tasks/engineering/chisel_verilog_alignment_seq_1/base/software/sbt +3 -0
- tasks/engineering/chisel_verilog_alignment_seq_1/base/software/yosys +4 -0
tasks/engineering/aerospace_low_thrust_trajectory/base/software/README.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Use software/python for the task-scoped Python runtime. Use software/uv to inspect or recreate it from input/runtime_env/pyproject.toml if needed.
|
tasks/engineering/aerospace_low_thrust_trajectory/base/software/python
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
#!/usr/bin/env bash
|
| 3 |
+
set -euo pipefail
|
| 4 |
+
TASK_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
| 5 |
+
VENV_PYTHON="$TASK_ROOT/.runtime_env/bin/python"
|
| 6 |
+
if [ ! -x "$VENV_PYTHON" ]; then
|
| 7 |
+
echo "Missing task runtime environment at $TASK_ROOT/.runtime_env; Stage 4 provisioning must run first." >&2
|
| 8 |
+
exit 127
|
| 9 |
+
fi
|
| 10 |
+
exec "$VENV_PYTHON" "$@"
|
tasks/engineering/aerospace_low_thrust_trajectory/base/software/uv
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
#!/usr/bin/env bash
|
| 3 |
+
set -euo pipefail
|
| 4 |
+
exec uv "$@"
|
tasks/engineering/cailian_road_highway_alignment_2/base/software/open_civil3d_2024.bat
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@echo off
|
| 2 |
+
set "C3D_EXE=C:\Program Files\Autodesk\AutoCAD 2024\acad.exe"
|
| 3 |
+
if not exist "%C3D_EXE%" (
|
| 4 |
+
echo Civil 3D 2024 launcher target not found: %C3D_EXE%
|
| 5 |
+
exit /b 1
|
| 6 |
+
)
|
| 7 |
+
start "" "%C3D_EXE%"
|
tasks/engineering/chisel_verilog_alignment_seq_1/base/software/README.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Stage 4 CLI entry points for hardware/chisel_verilog_alignment_seq_1.
|
| 2 |
+
|
| 3 |
+
Use these task-local wrappers during solve time:
|
| 4 |
+
- software/yosys -> /opt/oss-cad-suite-20260422/bin/yosys through OSS CAD Suite 2026-04-22
|
| 5 |
+
- software/firtool -> /opt/firtool-1.138.0/bin/firtool (1.138.0)
|
| 6 |
+
- software/sbt -> /opt/sbt-1.9.9/bin/sbt (1.9.9); Chisel 6.5.0 dependencies are prewarmed in the user cache
|
| 7 |
+
- software/python -> /usr/bin/python
|
| 8 |
+
- software/jq -> /usr/bin/jq
|
tasks/engineering/chisel_verilog_alignment_seq_1/base/software/firtool
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
exec "/opt/firtool-1.138.0/bin/firtool" "$@"
|
tasks/engineering/chisel_verilog_alignment_seq_1/base/software/jq
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
exec /usr/bin/jq "$@"
|
tasks/engineering/chisel_verilog_alignment_seq_1/base/software/python
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
exec /usr/bin/python "$@"
|
tasks/engineering/chisel_verilog_alignment_seq_1/base/software/sbt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
exec "/opt/sbt-1.9.9/bin/sbt" "$@"
|
tasks/engineering/chisel_verilog_alignment_seq_1/base/software/yosys
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
source "/opt/oss-cad-suite-20260422/environment"
|
| 4 |
+
exec yosys "$@"
|