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:
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: