Commit 65d4b94
authored
Fix circular dep in flat tensor import (#15902)
Seeing error when important flat tensor deserializer
```
(executorch) [[email protected] /data/users/lfq/executorch (aff5086)]$ python debug-lora.py
Traceback (most recent call last):
File "/data/users/lfq/executorch/debug-lora.py", line 1, in <module>
from executorch.extension.flat_tensor.serialize.serialize import _deserialize_to_flat_tensor
File "/data/users/lfq/executorch/src/executorch/extension/flat_tensor/serialize/serialize.py", line 20, in <module>
from executorch.exir._serialize._cord import Cord
File "/data/users/lfq/executorch/src/executorch/exir/__init__.py", line 9, in <module>
from executorch.exir.capture import (
File "/data/users/lfq/executorch/src/executorch/exir/capture/__init__.py", line 9, in <module>
from executorch.exir.capture._capture import (
File "/data/users/lfq/executorch/src/executorch/exir/capture/_capture.py", line 17, in <module>
from executorch.exir.program import ExirExportedProgram
File "/data/users/lfq/executorch/src/executorch/exir/program/__init__.py", line 10, in <module>
from executorch.exir.program._program import (
File "/data/users/lfq/executorch/src/executorch/exir/program/_program.py", line 82, in <module>
from executorch.extension.flat_tensor.serialize.serialize import FlatTensorSerializer
ImportError: cannot import name 'FlatTensorSerializer' from partially initialized module 'executorch.extension.flat_tensor.serialize.serialize' (most likely due to a circular import) (/data/users/lfq/executorch/src/executorch/extension/flat_tensor/serialize/serialize.py)
```
Previously, the import happened at module load time, causing the
circular dependency. Now, the import happens at runtime, and we do not
hit the circular dep.1 parent 870cb1a commit 65d4b94
1 file changed
+8
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
82 | | - | |
83 | 82 | | |
84 | 83 | | |
85 | 84 | | |
| |||
590 | 589 | | |
591 | 590 | | |
592 | 591 | | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
593 | 596 | | |
594 | 597 | | |
595 | 598 | | |
| |||
1839 | 1842 | | |
1840 | 1843 | | |
1841 | 1844 | | |
| 1845 | + | |
| 1846 | + | |
| 1847 | + | |
| 1848 | + | |
1842 | 1849 | | |
1843 | 1850 | | |
1844 | 1851 | | |
| |||
0 commit comments