adonnini
adonnini
@kirklandsign Thanks. I think we can close this issue. Agreed?
Does the fact that EasyDict is not dynamo traceable make it impossible to diagnose the problem reported in the traceback log above? I tried using ```AttrDict``` (https://pypi.org/project/attrdict/) instead of ```EasyDict```...
I also tried using ``` class AttrDict(dict): def __init__(self, *args, **kwargs): super(AttrDict, self).__init__(*args, **kwargs) self.__dict__ = self ``` i.e. not using any external library. Execution failed with the same error...
@kimishpatel I added ```strict=False``` to ```export(pre_autograd_aten_dialect, (enc_input, dec_input, dec_source_mask, dec_target_mask))``` When I ran the code, it failed at this line ```lowered_module = edge_program.to_backend(XnnpackPartitioner())``` Telling me it could not find ```flatc```...
I hope that is the case. It should be. Should I wait to hear from @mcr229 with regards to this latest error? Please let me know if there is anything...
No problem at all. I created a new issue in executorch repo, https://github.com/pytorch/executorch/issues/2025
Hi, I cloned the main executorch branch (```git clone --branch main https://github.com/pytorch/executorch.git```). Ran executorch installation/set-up following the updated instructions in https://pytorch.org/executorch/stable/getting-started-setup.html I set ```strict=False``` in ```aten_dialect: ExportedProgram = export(pre_autograd_aten_dialect, (config,...
@kimishpatel After the failure described above with the executorch main branch installed, I reverted back to ```v0.1.0``` and completed the steps in https://pytorch.org/executorch/stable/getting-started-setup.html The ```buck2``` build failed as described in...
@kimishpatel yes I mean this https://github.com/pytorch/executorch/releases/tag/v0.1.0
@tugsbayasgalan Hi, did you get a chance to take a look at this issue? Is there anything I can do to help resolve it? Please let me know if you...