-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht04_gen_sram.py
147 lines (125 loc) · 5.17 KB
/
t04_gen_sram.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# BSD-3-clause
#
# Copyright (c) 2024 tsinghua-ideal
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
#
#
# This code shows a method for generating SRAM presets. There are also several
# ways to save SRAM presets.
from math import log2
from math import floor
def gen_signal_sram(n):
logN = int(log2(n))
sram = []
# signals = []
for q in range(n):
if q % 2 == 0:
continue
# generate signals for phi = q
signals = []
for i in range(logN - 1):
hn = 1 << (logN - i - 2)
s = [0] * hn + [int(floor(q / 2)) % (1 << (i + 1))] * hn
signals.append(s)
signals.append([0])
# reduce signals
for i in range(logN - 1, 0, -1):
for j in range(1 << (logN - i - 1)):
child_i = i - 1
sn = 1 << (logN - i - 1)
hn = 1 << (child_i + 1)
j0 = j
j1 = j + sn
x = signals[i][j]
q = x // 2
r = x % 2
signals[i][j] = r
signals[child_i][j0] += q
signals[child_i][j1] += q
signals[child_i][j0] %= hn
signals[child_i][j1] %= hn
# signals to sram line
line = []
for s in signals:
line.extend(s)
assert line[-1] == 0
del line[-1]
sram.append(line)
assert len(sram) == (n // 2)
assert len(sram[0]) == (n - 2)
return sram
def save_sram_png(sram, file_path):
from PIL import Image
# Get the number of rows and columns in the 2D array
rows = len(sram)
cols = len(sram[0])
# Calculate the width and height of the image (each element corresponds to a 2x2 square)
width = cols * 2
height = rows * 2
# Create an image with a white background
img = Image.new("RGB", (width, height), "white")
# Iterate through the 2D array and draw squares of corresponding colors based on element values
for i in range(rows):
for j in range(cols):
if sram[i][j] == 1:
# If the element value is 1, draw a black square at the corresponding position
for x in range(j * 2, (j + 1) * 2):
for y in range(i * 2, (i + 1) * 2):
img.putpixel((x, y), (0, 0, 0)) # Black
# Save the image in PNG format
img.save(file_path)
def save_sram_txt(sram, filename):
# Open the file in write mode
with open(filename, "w") as file:
# Iterate through each row in the 2D array
for row in sram:
# Convert the row to a string of 0s and 1s without any separators
row_str = "".join(str(bit) for bit in row)
# Write the row string to the file followed by a newline character
file.write(row_str + "\n")
def save_sram_bin(sram, filename):
# Open the file in binary write mode
with open(filename, "wb") as file:
# Iterate through each row in the 2D array
for row in sram:
# Process the row in chunks of 8 elements to form bytes
for i in range(0, len(row), 8):
# Get the next 8 elements, or fewer if at the end of the row
byte_chunk = row[i : i + 8]
# Pad with zeros if there are fewer than 8 elements
byte_chunk += [0] * (8 - len(byte_chunk))
# Convert the 8 elements to a single byte
byte_value = int("".join(str(bit) for bit in byte_chunk), 2)
# Write the byte to the file
file.write(byte_value.to_bytes(1, byteorder="big"))
if __name__ == "__main__":
sram = gen_signal_sram(256)
save_sram_png(sram, "sram.png")
save_sram_txt(sram, "sram.txt")
save_sram_bin(sram, "sram.bin")