Skip to content

Commit 9d5c72a

Browse files
committed
format
1 parent 4c50752 commit 9d5c72a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

operators/softmax/op.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@
2121
class AIESoftmax(AIEOperatorBase):
2222

2323
def __init__(
24-
self,
25-
rows: int,
26-
cols: int,
27-
num_aie_columns=1,
28-
num_channels=1,
29-
context=None
24+
self, rows: int, cols: int, num_aie_columns=1, num_channels=1, context=None
3025
):
3126
self.size = rows * cols
3227
self.rows = rows

operators/softmax/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def test_softmax(input_length, num_aie_columns, num_channels, tile_size, aie_con
8484
cols=cols,
8585
num_aie_columns=num_aie_columns,
8686
num_channels=num_channels,
87-
context=aie_context
87+
context=aie_context,
8888
)
8989

9090
input_buffers = {"in": golden_ref["input"]}

0 commit comments

Comments
 (0)