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
This task is part of a bigger effort to migrate Pytorch from Mypy to Pyre. The goal of this task for you is to gain comfort with the Python type system and the types of errors Pyre gives. Future Pysa project work and debugging builds on this foundation.
Fix the Pyre type checking errors in torch/fx/experimental/fx2trt/example/fx2trt_example.py:
torch/fx/experimental/fx2trt/example/fx2trt_example.py:75:8 Incompatible variable type [9]: settings is declared to have type `net_min_base._MinimizerSettingBase` but is used as type `None`.
torch/fx/experimental/fx2trt/example/fx2trt_example.py:116:8 Incompatible variable type [9]: operator_support is declared to have type `op_support.OperatorSupport` but is used as type `None`.
torch/fx/experimental/fx2trt/example/fx2trt_example.py:117:8 Incompatible variable type [9]: settings is declared to have type `splitter_base._SplitterSettingBase` but is used as type `None`.
Submitting a PR
We use the following linters internally, so to save everyone's time, please make sure you run the following linters locally and fix errors related to the files you modified before submitting a PR:
black && usort format . && flake8
To install the linters, you can run the following command:
pip install flake8 usort black==21.4b2
The text was updated successfully, but these errors were encountered:
This task is part of a bigger effort to migrate Pytorch from Mypy to Pyre. The goal of this task for you is to gain comfort with the Python type system and the types of errors Pyre gives. Future Pysa project work and debugging builds on this foundation.
Development Environment Setup
Task Description
Fix the Pyre type checking errors in
torch/fx/experimental/fx2trt/example/fx2trt_example.py
:Submitting a PR
We use the following linters internally, so to save everyone's time, please make sure you run the following linters locally and fix errors related to the files you modified before submitting a PR:
To install the linters, you can run the following command:
The text was updated successfully, but these errors were encountered: