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
Copy file name to clipboardExpand all lines: backends/qualcomm/README.md
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,3 +73,67 @@ examples/qualcomm
73
73
Please see this [README.md](../../examples/qualcomm/README.md).
74
74
75
75
Further, an example build script is provided as [build.sh](scripts/build.sh).
76
+
77
+
## Issues
78
+
If you want to address the problem encountered, it would be great to have reproduction information for indicating maintainers. Please also follow the [policy](../../CONTRIBUTING.md#issues) to emit issues.
79
+
80
+
## Pull Requests
81
+
PRs are always welcome to help improve the codebase in a comprehensive manner. Before submitting changes, please apply:
82
+
83
+
-**Check the Coding Style**:<br/>
84
+
Make sure your code follows the [style guides](../../CONTRIBUTING.md#coding-style) and passes the [lint checks](../../CONTRIBUTING.md#lintrunner).
85
+
86
+
-**Add Unit Tests**:<br/>
87
+
Following is an example of adding test case after [creating new operator builder](builders/README.md), please navigate to `backends/qualcomm/tests` folder and put minimum example module in `model.py`. e.g.:
88
+
```python
89
+
classIndexPut(torch.nn.Module):
90
+
...
91
+
92
+
# please insert implementation in alphabetical order
0 commit comments