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
Copy file name to clipboardExpand all lines: content/learning-paths/embedded-and-microcontrollers/sme-executorch-profiling/03-model-onboarding-and-profiling.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ What you need to do:
28
28
- Per-tensor quantization: Single scale/zero-point per tensor (simpler but less accurate)
29
29
- Backend partitioning: XNNPACK vs portable (which operators are delegated to XNNPACK)
30
30
31
-
Real-world example: The EdgeTAM image encoder (see agent skill `08_onboard_edgetam.md` for onboarding steps) required:
31
+
Real-world example: The EdgeTAM image encoder (see agent skill [`08_onboard_edgetam.md`](https://github.com/ArmDeveloperEcosystem/sme-executorch-profiling/blob/main/agent_skill_ml_profiling/08_onboard_edgetam.md) for onboarding steps) required:
@@ -50,7 +50,7 @@ To add a new model to the performance analysis workflow:
50
50
51
51
The key insight: This registration system lets you add models without touching ExecuTorch source code. The exporter patches the registry at runtime, so your models appear alongside ExecuTorch's built-in models.
52
52
53
-
Advanced onboarding example: The EdgeTAM image encoder (see agent skill `08_onboard_edgetam.md` for complete onboarding workflow) demonstrates:
53
+
Advanced onboarding example: The EdgeTAM image encoder (see agent skill [`08_onboard_edgetam.md`](https://github.com/ArmDeveloperEcosystem/sme-executorch-profiling/blob/main/agent_skill_ml_profiling/08_onboard_edgetam.md) for complete onboarding workflow) demonstrates:
Why `out_<model>/artifacts/`: This keeps the `models/` directory clean (source code only). Exported artifacts live in a separate tree, making it easy to version control models without committing large `.pte` files.
83
+
Why `model_profiling/out_<model>/artifacts/`: This keeps the `models/` directory clean (source code only). Exported artifacts live in a separate tree, making it easy to version control models without committing large `.pte` files.
0 commit comments