-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
serialize.py
242 lines (212 loc) · 9.34 KB
/
serialize.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
import argparse
import features
import math
import model as M
import numpy
import struct
import torch
from torch import nn
import pytorch_lightning as pl
from torch.utils.data import DataLoader
from functools import reduce
import operator
def ascii_hist(name, x, bins=6):
N,X = numpy.histogram(x, bins=bins)
total = 1.0*len(x)
width = 50
nmax = N.max()
print(name)
for (xi, n) in zip(X,N):
bar = '#'*int(n*1.0*width/nmax)
xi = '{0: <8.4g}'.format(xi).ljust(10)
print('{0}| {1}'.format(xi,bar))
# hardcoded for now
VERSION = 0x7AF32F20
DEFAULT_DESCRIPTION = "Network trained with the https://github.com/ianfab/variant-nnue-pytorch trainer."
class NNUEWriter():
"""
All values are stored in little endian.
"""
def __init__(self, model, description=None):
if description is None:
description = DEFAULT_DESCRIPTION
self.buf = bytearray()
fc_hash = self.fc_hash(model)
self.write_header(model, fc_hash, description)
self.int32(model.feature_set.hash ^ (M.L1*2)) # Feature transformer hash
self.write_feature_transformer(model)
for l1, l2, output in model.layer_stacks.get_coalesced_layer_stacks():
self.int32(fc_hash) # FC layers hash
self.write_fc_layer(l1)
self.write_fc_layer(l2)
self.write_fc_layer(output, is_output=True)
@staticmethod
def fc_hash(model):
# InputSlice hash
prev_hash = 0xEC42E90D
prev_hash ^= (M.L1 * 2)
# Fully connected layers
layers = [model.layer_stacks.l1, model.layer_stacks.l2, model.layer_stacks.output]
for layer in layers:
layer_hash = 0xCC03DAE4
layer_hash += layer.out_features // model.num_ls_buckets
layer_hash ^= prev_hash >> 1
layer_hash ^= (prev_hash << 31) & 0xFFFFFFFF
if layer.out_features // model.num_ls_buckets != 1:
# Clipped ReLU hash
layer_hash = (layer_hash + 0x538D24C7) & 0xFFFFFFFF
prev_hash = layer_hash
return layer_hash
def write_header(self, model, fc_hash, description):
self.int32(VERSION) # version
self.int32(fc_hash ^ model.feature_set.hash ^ (M.L1*2)) # halfkp network hash
encoded_description = description.encode('utf-8')
self.int32(len(encoded_description)) # Network definition
self.buf.extend(encoded_description)
def write_feature_transformer(self, model):
# int16 bias = round(x * 127)
# int16 weight = round(x * 127)
layer = model.input
bias = layer.bias.data[:M.L1]
bias = bias.mul(127).round().to(torch.int16)
ascii_hist('ft bias:', bias.numpy())
self.buf.extend(bias.flatten().numpy().tobytes())
weight = M.coalesce_ft_weights(model, layer)
weight0 = weight[:, :M.L1]
psqtweight0 = weight[:, M.L1:]
weight = weight0.mul(127).round().to(torch.int16)
psqtweight = psqtweight0.mul(9600).round().to(torch.int32) # kPonanzaConstant * FV_SCALE = 9600
ascii_hist('ft weight:', weight.numpy())
# weights stored as [41024][256]
self.buf.extend(weight.flatten().numpy().tobytes())
self.buf.extend(psqtweight.flatten().numpy().tobytes())
def write_fc_layer(self, layer, is_output=False):
# FC layers are stored as int8 weights, and int32 biases
kWeightScaleBits = 6
kActivationScale = 127.0
if not is_output:
kBiasScale = (1 << kWeightScaleBits) * kActivationScale # = 8128
else:
kBiasScale = 9600.0 # kPonanzaConstant * FV_SCALE = 600 * 16 = 9600
kWeightScale = kBiasScale / kActivationScale # = 64.0 for normal layers
kMaxWeight = 127.0 / kWeightScale # roughly 2.0
# int32 bias = round(x * kBiasScale)
# int8 weight = round(x * kWeightScale)
bias = layer.bias.data
bias = bias.mul(kBiasScale).round().to(torch.int32)
ascii_hist('fc bias:', bias.numpy())
self.buf.extend(bias.flatten().numpy().tobytes())
weight = layer.weight.data
clipped = torch.count_nonzero(weight.clamp(-kMaxWeight, kMaxWeight) - weight)
total_elements = torch.numel(weight)
clipped_max = torch.max(torch.abs(weight.clamp(-kMaxWeight, kMaxWeight) - weight))
print("layer has {}/{} clipped weights. Exceeding by {} the maximum {}.".format(clipped, total_elements, clipped_max, kMaxWeight))
weight = weight.clamp(-kMaxWeight, kMaxWeight).mul(kWeightScale).round().to(torch.int8)
ascii_hist('fc weight:', weight.numpy())
# FC inputs are padded to 32 elements for simd.
num_input = weight.shape[1]
if num_input % 32 != 0:
num_input += 32 - (num_input % 32)
new_w = torch.zeros(weight.shape[0], num_input, dtype=torch.int8)
new_w[:, :weight.shape[1]] = weight
weight = new_w
# Stored as [outputs][inputs], so we can flatten
self.buf.extend(weight.flatten().numpy().tobytes())
def int32(self, v):
self.buf.extend(struct.pack("<I", v))
class NNUEReader():
def __init__(self, f, feature_set):
self.f = f
self.feature_set = feature_set
self.model = M.NNUE(feature_set)
fc_hash = NNUEWriter.fc_hash(self.model)
self.read_header(feature_set, fc_hash)
self.read_int32(feature_set.hash ^ (M.L1*2)) # Feature transformer hash
self.read_feature_transformer(self.model.input, self.model.num_psqt_buckets)
for i in range(self.model.num_ls_buckets):
l1 = nn.Linear(2*M.L1, M.L2)
l2 = nn.Linear(M.L2, M.L3)
output = nn.Linear(M.L3, 1)
self.read_int32(fc_hash) # FC layers hash
self.read_fc_layer(l1)
self.read_fc_layer(l2)
self.read_fc_layer(output, is_output=True)
self.model.layer_stacks.l1.weight.data[i*M.L2:(i+1)*M.L2, :] = l1.weight
self.model.layer_stacks.l1.bias.data[i*M.L2:(i+1)*M.L2] = l1.bias
self.model.layer_stacks.l2.weight.data[i*M.L3:(i+1)*M.L3, :] = l2.weight
self.model.layer_stacks.l2.bias.data[i*M.L3:(i+1)*M.L3] = l2.bias
self.model.layer_stacks.output.weight.data[i:(i+1), :] = output.weight
self.model.layer_stacks.output.bias.data[i:(i+1)] = output.bias
def read_header(self, feature_set, fc_hash):
self.read_int32(VERSION) # version
self.read_int32(fc_hash ^ feature_set.hash ^ (M.L1*2)) # halfkp network hash
desc_len = self.read_int32() # Network definition
description = self.f.read(desc_len)
def tensor(self, dtype, shape):
d = numpy.fromfile(self.f, dtype, reduce(operator.mul, shape, 1))
d = torch.from_numpy(d.astype(numpy.float32))
d = d.reshape(shape)
return d
def read_feature_transformer(self, layer, num_psqt_buckets):
bias = self.tensor(numpy.int16, [layer.bias.shape[0]-num_psqt_buckets]).divide(127.0)
layer.bias.data = torch.cat([bias, torch.tensor([0]*num_psqt_buckets)])
# weights stored as [41024][256], so we need to transpose the pytorch [256][41024]
shape = layer.weight.shape
weights = self.tensor(numpy.int16, [shape[0], shape[1]-num_psqt_buckets])
psqtweights = self.tensor(numpy.int32, [shape[0], num_psqt_buckets])
weights = weights.divide(127.0)
psqtweights = psqtweights.divide(9600.0)
layer.weight.data = torch.cat([weights, psqtweights], dim=1)
def read_fc_layer(self, layer, is_output=False):
# FC layers are stored as int8 weights, and int32 biases
kWeightScaleBits = 6
kActivationScale = 127.0
if not is_output:
kBiasScale = (1 << kWeightScaleBits) * kActivationScale # = 8128
else:
kBiasScale = 9600.0 # kPonanzaConstant * FV_SCALE = 600 * 16 = 9600
kWeightScale = kBiasScale / kActivationScale # = 64.0 for normal layers
# FC inputs are padded to 32 elements for simd.
non_padded_shape = layer.weight.shape
padded_shape = (non_padded_shape[0], ((non_padded_shape[1]+31)//32)*32)
layer.bias.data = self.tensor(numpy.int32, layer.bias.shape).divide(kBiasScale)
layer.weight.data = self.tensor(numpy.int8, padded_shape).divide(kWeightScale)
# Strip padding.
layer.weight.data = layer.weight.data[:non_padded_shape[0], :non_padded_shape[1]]
def read_int32(self, expected=None):
v = struct.unpack("<I", self.f.read(4))[0]
if expected is not None and v != expected:
raise Exception("Expected: %x, got %x" % (expected, v))
return v
def main():
parser = argparse.ArgumentParser(description="Converts files between ckpt and nnue format.")
parser.add_argument("source", help="Source file (can be .ckpt, .pt or .nnue)")
parser.add_argument("target", help="Target file (can be .pt or .nnue)")
parser.add_argument("--description", default=None, type=str, dest='description', help="The description string to include in the network. Only works when serializing into a .nnue file.")
features.add_argparse_args(parser)
args = parser.parse_args()
feature_set = features.get_feature_set_from_name(args.features)
print('Converting %s to %s' % (args.source, args.target))
if args.source.endswith('.ckpt'):
nnue = M.NNUE.load_from_checkpoint(args.source, feature_set=feature_set)
nnue.eval()
elif args.source.endswith('.pt'):
nnue = torch.load(args.source)
elif args.source.endswith('.nnue'):
with open(args.source, 'rb') as f:
reader = NNUEReader(f, feature_set)
nnue = reader.model
else:
raise Exception('Invalid network input format.')
if args.target.endswith('.ckpt'):
raise Exception('Cannot convert into .ckpt')
elif args.target.endswith('.pt'):
torch.save(nnue, args.target)
elif args.target.endswith('.nnue'):
writer = NNUEWriter(nnue, args.description)
with open(args.target, 'wb') as f:
f.write(writer.buf)
else:
raise Exception('Invalid network output format.')
if __name__ == '__main__':
main()