Skip to content

Commit 0b79246

Browse files
author
Robert Muchsel
authored
Pin protobuf; remove unneeded packages (#241)
1 parent b449c4a commit 0b79246

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

izer/backend/max7800x.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ def create_net(self) -> str: # pylint: disable=too-many-locals,too-many-branche
10041004
apb.output(f'// Layer {r * layers + ll}: '
10051005
f'{str(operands[ll])+"x" if operands[ll] > 1 else ""}'
10061006
f'{input_chan[ll]}x{input_dim_str[ll]}'
1007-
f'{"streaming " if streaming[ll] else ""}{flatten_str}, ',
1007+
f'{" streaming" if streaming[ll] else ""}{flatten_str}, ',
10081008
embedded_code)
10091009
if not pool_first[ll] and operands[ll] > 1:
10101010
apb.output(f'{operands[ll]}-element {op.string(eltwise[ll], elt=True)}, ',

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
numpy>=1.22,<1.23
22
PyYAML>=5.1.1
3-
tabulate==0.8.3
4-
future>=0.17.1
53
six>=1.12.0
64
scipy>=1.3.0
75
torch==1.8.1
86
pytest~=4.6.4
97
onnx>=1.9.0
10-
tensorboard==2.4.1
118
yamllint>=1.26.1,<1.27
129
GitPython>=3.1.18
1310
PyGithub>=1.55
1411
rich>=11.2.0
12+
protobuf>=3.20.1,<4.0

0 commit comments

Comments
 (0)