Skip to content

Commit ffca5c5

Browse files
committed
python: ran black 24.4.2
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent e83ce93 commit ffca5c5

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

flow/platforms/sky130ram/configs/sky130_sram_1kbyte_1r1w_8x1024_8.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
44
Useful as a byte FIFO between two devices (the reader and the writer).
55
"""
6+
67
word_size = 8 # Bits
78
num_words = 1024
89
human_byte_size = "{:.0f}kbytes".format((word_size * num_words) / 1024 / 8)

flow/platforms/sky130ram/configs/sky130_sram_1kbyte_1rw1r_32x256_8.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
FIXME: What is this useful for?
55
FIXME: Why would you want byte write on this?
66
"""
7+
78
word_size = 32 # Bits
89
num_words = 256
910
human_byte_size = "{:.0f}kbytes".format((word_size * num_words) / 1024 / 8)

flow/platforms/sky130ram/configs/sky130_sram_1kbyte_1rw_32x256_8.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Single port, 1 kbytes SRAM, with byte write, useful for RISC-V processor main
33
memory.
44
"""
5+
56
word_size = 32 # Bits
67
num_words = 256
78
human_byte_size = "{:.0f}kbytes".format((word_size * num_words) / 1024 / 8)

flow/platforms/sky130ram/configs/sky130_sram_2kbyte_1rw1r_32x512_8.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
FIXME: What is this useful for?
55
FIXME: Why would you want byte write on this?
66
"""
7+
78
word_size = 32 # Bits
89
num_words = 512
910
human_byte_size = "{:.0f}kbytes".format((word_size * num_words) / 1024 / 8)

flow/platforms/sky130ram/configs/sky130_sram_2kbyte_1rw_32x512_8.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Single port, 2 kbytes SRAM, with byte write, useful for RISC-V processor main
33
memory.
44
"""
5+
56
word_size = 32 # Bits
67
num_words = 512
78
human_byte_size = "{:.0f}kbytes".format((word_size * num_words) / 1024 / 8)

0 commit comments

Comments
 (0)