forked from IST-DASLab/marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
159 lines (142 loc) · 4.91 KB
/
test.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
import unittest
import numpy as np
import torch
import torch.nn as nn
import marlin
seed = 0
np.random.seed(seed)
torch.random.manual_seed(seed)
DEV = torch.device('cuda:0')
def gen_quant4(m, n, groupsize=-1):
tile = 16
maxq = 2 ** 4 - 1
w = torch.randn((m, n), dtype=torch.half, device=DEV)
if groupsize != -1:
w = w.reshape((-1, groupsize, n))
w = w.permute(1, 0, 2)
w = w.reshape((groupsize, -1))
s = torch.max(torch.abs(w), 0, keepdim=True)[0]
s *= 2 / maxq
w = torch.round(w / s).int()
w += (maxq + 1) // 2
w = torch.clamp(w, 0, maxq)
ref = (w - (maxq + 1) // 2).half() * s
if groupsize != -1:
def reshape(w):
w = w.reshape((groupsize, -1, n))
w = w.permute(1, 0, 2)
w = w.reshape((m, n)).contiguous()
return w
ref = reshape(ref)
w = reshape(w)
s = s.reshape((-1, n)).contiguous()
linear = nn.Linear(m, n)
linear.weight.data = ref.t()
# Workaround to test some special cases that are forbidden by the API
layer = marlin.Layer(256, 256, groupsize=groupsize)
if groupsize == -1:
groupsize = m
layer.k = m
layer.n = n
layer.groupsize = groupsize
layer.B = torch.empty((m // 16, n * 16 // 8), dtype=torch.int, device=DEV)
layer.s = torch.empty((m // groupsize, n), dtype=torch.half, device=DEV)
layer.pack(linear, s.t())
q = layer.B
s = layer.s
return ref, q, s
class Test(unittest.TestCase):
def run_problem(self, m, n, k, thread_k, thread_n, groupsize=-1):
print('% 5d % 6d % 6d % 4d % 4d % 4d' % (m, n, k, thread_k, thread_n, groupsize))
A = torch.randn((m, k), dtype=torch.half, device=DEV)
B_ref, B, s = gen_quant4(k, n, groupsize=groupsize)
C = torch.zeros((m, n), dtype=torch.half, device=DEV)
C_ref = torch.matmul(A, B_ref)
workspace = torch.zeros(n // 128 * 16, device=DEV)
marlin.mul(A, B, C, s, workspace, thread_k, thread_n, -1)
torch.cuda.synchronize()
self.assertLess(torch.mean(torch.abs(C - C_ref)) / torch.mean(torch.abs(C_ref)), 0.001)
def test_tiles(self):
print()
for m in [1, 2, 3, 4, 8, 12, 16, 24, 32, 48, 64, 118, 128, 152, 768, 1024]:
for thread_k, thread_n in [(64, 256), (128, 128)]:
if m > 16 and thread_k == 128:
continue
self.run_problem(m, 2 * 256, 1024, thread_k, thread_n)
def test_k_stages_divisibility(self):
print()
for k in [3 * 64 + 64 * 4 * 2 + 64 * i for i in range(1, 4)]:
self.run_problem(16, 2 * 256, k, 64, 256)
def test_very_few_stages(self):
print()
for k in [64, 128, 192]:
self.run_problem(16, 2 * 256, k, 64, 256)
def test_llama_shapes(self):
print()
return
MODELS = {
' 7B': [
(4096, 3 * 4096),
(4096, 4096),
(4096, 2 * 10752),
(10752, 4096)
],
'13B': [
(5120, 3 * 5120),
(5120, 5120),
(5120, 2 * 13568),
(13568, 5120)
],
'33B': [
(6656, 3 * 6656),
(6656, 6656),
(6656, 2 * 17664),
(17664, 6656)
],
'70B': [
(8192, 3 * 8192),
(8192, 8192),
(8192, 2 * 21760),
(21760, 8192)
]
}
for _, layers in MODELS.items():
for layer in layers:
for thread_k, thread_n in [(128, 128)]:
for batch in [1, 16]:
self.run_problem(batch, layer[1], layer[0], thread_k, thread_n)
def test_errors(self):
print()
m, n, k = 16, 256, 64
A = torch.randn((m, k), dtype=torch.half, device=DEV)
B_ref, B, s = gen_quant4(k, n)
C = torch.zeros((m, n), dtype=torch.half, device=DEV)
workspace = torch.zeros(n // 128, device=DEV)
err = False
try:
marlin.mul(A, B, C, s, workspace, 128, 128, -1)
except:
err = True
self.assertTrue(err)
err = False
try:
marlin.mul(A, B, C, s, workspace, 256, 256, -1)
except:
err = True
self.assertTrue(err)
s = torch.zeros((2, n), dtype=torch.half, device=DEV)
err = False
try:
marlin.mul(A, B, C, s, workspace, 256, 256, -1)
except:
err = True
self.assertTrue(err)
def test_groups(self):
print()
for m in [16]:
for groupsize in [128]:
for n, k in [(256, 512), (256, 1024), (256 * 128, 1024)]:
for thread_shape in [(128, 128), (64, 256)]:
self.run_problem(m, n, k, *thread_shape, groupsize)
if __name__ == '__main__':
unittest.main()