Fix 'occured' -> 'occurred' typos in backends and exir tracer#18905
Fix 'occured' -> 'occurred' typos in backends and exir tracer#18905SAY-5 wants to merge 1 commit intopytorch:mainfrom
Conversation
Eight runtime error messages and one Python format string used the
misspelled 'occured':
* backends/apple/mps/runtime/MPSDevice.mm — additionally had a
duplicated 'occured occured' from a stutter typo.
* backends/cadence/hifi/operators/op_quantized_matmul_out.cpp (3)
* backends/cadence/hifi/operators/op_quantized_matmul_asym8uxasym8u_asym8u_out.cpp (3)
* backends/cadence/hifi/operators/op_quantized_matmul_asym8sxasym8s_asym8s_out.cpp (3)
* exir/tracer.py — torchdynamo internal-error format string surfaced
on every dynamo trace failure.
All ET_CHECK_MSG and printf-style messages reach end users in build
and runtime error output. Python ast.parse stays clean for tracer.py;
.cpp/.mm changes are string-literal-only with no logic changes.
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/18905
Note: Links to docs will display an error until the docs builds have been completed. ✅ You can merge normally! (3 Unrelated Failures)As of commit 521361e with merge base 75fe8e9 ( FLAKY - The following job failed but was likely due to flakiness present on trunk:
BROKEN TRUNK - The following jobs failed but was present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This PR needs a
|
|
/release-notes none This is a typo-only fix to error message strings — no user-facing behaviour change. |
|
thanks |
Nine error messages used the misspelled
occured:backends/apple/mps/runtime/MPSDevice.mm:141— additionally had a duplicatedoccured occured(An error occured occured while compiling library %d).backends/cadence/hifi/operators/op_quantized_matmul_out.cpp× 3backends/cadence/hifi/operators/op_quantized_matmul_asym8uxasym8u_asym8u_out.cpp× 3backends/cadence/hifi/operators/op_quantized_matmul_asym8sxasym8s_asym8s_out.cpp× 3exir/tracer.py— torchdynamo internal-error format stringAll
ET_CHECK_MSGand printf-style messages reach end users in build / runtime error output, and the dynamo tracer message is logged on every dynamo trace failure. Pythonast.parseclean for the touched tracer.py; .cpp/.mm changes are string-literal-only with no logic touched.