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
@@ -74,10 +74,35 @@ The `*_total_*_size_dist/` statistics the `op_type`'s input/output_size distribu
74
74
75
75
[The `profile/` is the tools provided by pytorch](https://pytorch.org/tutorials/recipes/recipes/profiler_recipe.html), you can open it by the url: chrome://tracing
76
76
77
+
78
+
# For developers
79
+
80
+
## Install torch-ttnn with editable mode
81
+
82
+
During development, you may want to use the torch-ttnn package for testing.
83
+
In order to do that, you can install the torch-ttnn package in "editable"
84
+
mode with
85
+
86
+
```shell
87
+
pip install -e .
88
+
```
89
+
90
+
Now, you can utilize `torch_ttnn` in your Python code. Any modifications you make to the `torch_ttnn` package will take effect immediately, eliminating the need for constant reinstallation via pip.
91
+
92
+
## Build wheel file
93
+
94
+
For developers want to deploy the wheel, you can build the wheel file with
95
+
96
+
```shell
97
+
python -m build
98
+
```
99
+
100
+
Then you can upload the `.whl` file to the PyPI (Python Package Index).
0 commit comments