Commit c21cd19
authored
FIX float counts in Paladin mapping (#74)
* FIX setup.py
- Eliminate problems of compability
* Add AMP and Hemo models for compatibility
- Add downgraded IR versions of Hemo and AMP models to wide compatibility
- Downgrade of IR versions to 7 (allows compatibility to the present the installed environment and before ones)
Include the same models adapted with:
```
>>> from onnx import version_converter
>>> model = onnx.load('TEST.onnx')
>>> model.ir_version = 7
>>> model = optimize(model, ["eliminate_identity", "fuse_consecutive_transposes"])
>>> model = version_converter.convert_version(model, 16)
>>> onnx.save(model, "TEST.onnx")
```
* ENH count.ngl
Include a filter of sam matchers:
filtered = select(input, keep_if=[{unique}])
and a count parameter to avoid secondary aligments:
multiple={unique_only}1 parent c59432b commit c21cd19
File tree
4 files changed
+2
-2
lines changed- macrel/data
- models
- scripts
4 files changed
+2
-2
lines changedBinary file not shown.
Binary file not shown.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
6 | 7 | | |
7 | 8 | | |
| 9 | + | |
8 | 10 | | |
9 | 11 | | |
10 | 12 | | |
11 | 13 | | |
12 | 14 | | |
13 | 15 | | |
14 | | - | |
15 | 16 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | | - | |
50 | 49 | | |
51 | 50 | | |
52 | 51 | | |
| |||
0 commit comments