You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# After benchmarking or profiling completes, download results
98
+
# After benchmarking completes, download results
99
99
python3 -m deploy.utils.download_pvc_results \
100
100
--namespace $NAMESPACE \
101
-
--output-dir ./pvc_files \
101
+
--output-dir ./benchmarks/results \
102
102
--folder /data/results \
103
103
--no-config # optional: skip *.yaml/*.yml in the download
104
104
```
105
105
106
+
**Download profiling results (optional, for local inspection):**
107
+
108
+
```bash
109
+
# Optional: Download profiling data for local analysis
110
+
# The planner reads directly from the PVC, so this is only needed for inspection
111
+
python3 -m deploy.utils.download_pvc_results \
112
+
--namespace $NAMESPACE \
113
+
--output-dir ./profiling_data \
114
+
--folder /data
115
+
```
116
+
117
+
> **Note on Profiling Results**: When using DGDR (DynamoGraphDeploymentRequest) for SLA-driven profiling, profiling data is stored in `/data/` on the PVC. The planner component reads this data directly from the PVC, so downloading is **optional** - only needed if you want to inspect the profiling results locally (e.g., view performance plots, check configurations).
118
+
106
119
#### Path Requirements
107
120
108
121
**Important**: The PVC is mounted at `/data` in the access pod for security reasons. All destination paths must start with `/data/`.
-`/data/results/` - Benchmark results (for download after benchmarking jobs)
126
+
-`/data/` - Profiling data (used directly by planner, typically not downloaded)
114
127
-`/data/benchmarking/` - Benchmarking artifacts
115
128
116
129
**User-friendly error messages**: If you forget the `/data/` prefix, the script will show a helpful error message with the correct path and example commands.
> **Note**: The standalone templates are provided as examples and may need customization for your model and requirements. The DGDR-generated configuration (Option 1) is recommended as it's automatically tuned to your profiling results and SLA targets.
401
+
377
402
### Relationship to DynamoGraphDeployment (DGD)
378
403
379
404
- **DGDR**: High-level "intent" - what you want deployed
0 commit comments