Update data: 5 units
Browse files- computing_math/clustered_cyclic_code_circuit_level_simulation/base/software
- computing_math/cost_optimization_1/base/input
- computing_math/cost_optimization_1/base/software
- computing_math/cp_test_gen_1/default/input
- computing_math/data_pipeline_etl_instance_1/base/input
- tasks/computing_math/clustered_cyclic_code_circuit_level_simulation/base/software/README.txt +1 -0
- tasks/computing_math/cost_optimization_1/base/software/README.txt +1 -0
- tasks/computing_math/cost_optimization_1/base/software/python_cost_optimization.sh +11 -0
- tasks/computing_math/cp_test_gen_1/default/input/Binary String Copying Inputs.xlsx +0 -0
tasks/computing_math/clustered_cyclic_code_circuit_level_simulation/base/software/README.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
No preinstalled GUI entry point is required. Install and run the open-source Python tools from input/runtime_env or input/requirements.txt, then write the CSV to ../output/logical_error_rates_3codes.csv.
|
tasks/computing_math/cost_optimization_1/base/software/README.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Use python_cost_optimization.sh to run the task-scoped Python 3.10.12 + pandas 2.3.3 runtime that Stage 4 provisions under .runtime/.
|
tasks/computing_math/cost_optimization_1/base/software/python_cost_optimization.sh
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
| 4 |
+
TASK_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
|
| 5 |
+
PY_BIN="$TASK_DIR/.runtime/python-3.10.12-pandas-2.3.3/bin/python"
|
| 6 |
+
if [ ! -x "$PY_BIN" ]; then
|
| 7 |
+
echo "Missing task-scoped Python runtime at $PY_BIN. Ask an admin to run scripts/install_software.sh on the target VM." >&2
|
| 8 |
+
exit 1
|
| 9 |
+
fi
|
| 10 |
+
export PYTHONNOUSERSITE=1
|
| 11 |
+
exec "$PY_BIN" "$@"
|
tasks/computing_math/cp_test_gen_1/default/input/Binary String Copying Inputs.xlsx
CHANGED
|
Binary files a/tasks/computing_math/cp_test_gen_1/default/input/Binary String Copying Inputs.xlsx and b/tasks/computing_math/cp_test_gen_1/default/input/Binary String Copying Inputs.xlsx differ
|
|
|