summaryrefslogtreecommitdiff
path: root/cad/src/experimental/pyrex-atoms-bonds/smallerFootprint.py
blob: 2147136e8e813eb6465b2b0fb627a7533abd9830 (plain)
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
#!/usr/bin/python
# Copyright 2006-2007 Nanorex, Inc.  See LICENSE file for details.
# Think about the set sizes for which this scheme is memory efficient.

import time
import unittest
import Numeric

stuff = None
#stuff = [ ]
N = 10**4
#N = 1000

## Verifying Bruce's suspicion that the 9/9/9/5 scheme was a memory
## hog...
#def waste(setsize):
#    idealmem = int(setsize / 8.0)
#    numleaves = (setsize + 16383) / 16384
#    leafmem = numleaves * 512 * 4
#    nummiddles = (numleaves + 511) / 512
#    middlemem = nummiddles * 512 * 4
#    rootmem = 512 * 4
#    totalmem = rootmem + middlemem + leafmem
#    efficiency = (1.0 * idealmem) / totalmem
#    return (totalmem, idealmem, efficiency)
#for i in range(30):
#    setsize = int(8 * 1.6**i)
#    print setsize, waste(setsize)

"""The present scheme uses a doubly linked list of node. Each node
holds a block of 128 words, or 4096 bits, and represents the set
membership states of 4096 consecutive integers. Each node has a 20-bit
prefix for the upper 20 bits of the integers in its block.

We search the blocks for some operations (add, remove, contains), and
we assume that we'll be doing those operations in consecutive ranges
most of the time. Therefore this scheme tries to be efficient when each
search is close to the previous search. We do this by bubbling nodes to
the top of the linked list when their blocks get searched, so that they
will be found faster on the next linked list traversal.

This will not be an efficient scheme for random searches, for two
reasons. One is that we'll have to search the linked list in a
non-optimal order. The other is that we'll waste time bubbling nodes
toward the top when it doesn't help. To avoid the latter, we save the
prefix for the previous search, and only bubble up if it matches the
present prefix.
"""

class NodeStruct:
    """
    /* (3 + 128) * 4 = 524 bytes */
    struct node {
        struct node *next;
        int prefix;
        unsigned int data[128];
    };
    """
    def __init__(self, prefix):
        self.prefix = prefix
        # next initialized to NULL
        self.next = None
        # all membership bits initially zero
        self.data = 128 * [ 0 ]

class Set:

    """
    /* 3 * 4 = 12 bytes */
    struct set {
        struct node *root;
        unsigned int population;
    };
    """
    def __init__(self):
        self.root = None
        self.population = 0

    def __len__(self):
        return self.population

    def findNodeWithPrefix(self, p):
        A = None
        B = self.root
        while True:
            if B == None:
                return None
            if B.prefix == p:
                # bubble B up toward the top
                if A != None:
                    A.next = B
                    B.next = self.root
                    self.root = B
                return B
            A = B
            B = B.next

    def bubbleUp(self, C):
        # bubble this node up toward the top of the list, but only
        # if we match the previous prefix
        B = C.previous
        # If C has no previous, then it's already at the top.
        if B != None:
            A = B.previous
            D = C.next
            if A != None:
                A.next = C
            else:
                self.root = C
            if D != None:
                D.previous = B
            B.next = D
            B.previous = C
            C.next = B
            C.previous = A

    def add(self, x):
        x0, x1, x2 = (x >> 12) & 0xfffff, (x >> 5) & 0x7f, x & 0x1f
        C = self.findNodeWithPrefix(x0)
        if C == None:
            # create a new node
            C = NodeStruct(x0)
            if self.root != None:
                self.root.previous = C
            C.next = self.root
            self.root = C
        # Set the bit in C's data
        z = C.data[x1]
        if (z & (1 << x2)) == 0:
            C.data[x1] = z | (1 << x2)
            self.population += 1

    def asArray(self):
        z = Numeric.zeros(self.population, 'u')
        lst = [ ]
        r = self.root
        while r != None:
            lst.append(r)
            r = r.next
        def sortOrder(x1, x2):
            return cmp(x1.prefix, x2.prefix)
        lst.sort(sortOrder)
        i = 0
        for node in lst:
            for j in range(128):
                w = node.data[j]
                for k in range(32):
                    if (w & (1 << k)) != 0:
                        z[i] = (node.prefix << 12) + (j << 5) + k
                        i += 1
        return z

    def remove(self, x):
        x0, x1, x2 = (x >> 12) & 0xfffff, (x >> 5) & 0x7f, x & 0x1f
        C = self.findNodeWithPrefix(x0)
        if C == None:
            return
        # Set the bit in C's data
        z = C.data[x1]
        if (z & (1 << x2)) != 0:
            C.data[x1] = z & ~(1 << x2)
            self.population -= 1

    def contains(self, x):
        x0, x1, x2 = (x >> 12) & 0xfffff, (x >> 5) & 0x7f, x & 0x1f
        C = self.findNodeWithPrefix(x0)
        if C == None:
            return False
        # Set the bit in C's data
        z = C.data[x1]
        return (z & (1 << x2)) != 0

################################################

class SetWithTestMethods(Set):

    ADD_ELEMENT_TIME = 13.0e-6
    CONTAINS_ELEMENT_TIME = 12.0e-6
    ASARRAY_ELEMENT_TIME = 2.5e-6

    def __init__(self):
        Set.__init__(self)

    def __len__(self):
        return self.population

    def efficiency(self):
        # assume 1 bit per element, ideally
        idealMemUsage = (self.population + 7) / 8.0
        return idealMemUsage / self.memUsage()

    def memUsage(self):
        total = 2 * 4   # root, population, both ints
        r = self.root
        while r != None:
            total += (3 + 128) * 4
            r = r.next
        return total

    def addRange(self, m, n):
        while m != n:
            self.add(m)
            m += 1

    def performanceTest(self, f, n=100):
        t1 = time.time()
        for i in range(n):
            f()
        t2 = time.time()
        return (t2 - t1) / n

    def add_performance(self):
        def f():
            self.addRange(0, N)
        t = self.performanceTest(f, 1)
        return t / N

    def contains_performance(self):
        self.addRange(0, N)
        def f():
            for i in range(N):
                self.contains(i)
        t = self.performanceTest(f, 1)
        return t / N

    def asarray_performance(self):
        self.addRange(0, N)
        t = self.performanceTest(self.asArray, 1)
        return t / N

class Tests(unittest.TestCase):

    # FUNCTIONAL TESTS

    def test_Functionality(self):
        #
        # Test general set functionality, make sure it does
        # the right things.
        #
        x = SetWithTestMethods()
        for i in range(2 * N):
            if (i & 1) == 0:
                x.add(i)
        assert len(x) == N
        assert not x.contains(-2)
        assert not x.contains(-1)
        assert x.contains(0)
        assert not x.contains(1)
        assert x.contains(2)
        assert not x.contains(3)
        assert x.contains(4)
        if (N % 2) == 0:
            assert x.contains(N-4)
            assert not x.contains(N-3)
            assert x.contains(N-2)
            assert not x.contains(N-1)
            assert x.contains(N)
            assert not x.contains(N+1)
            assert x.contains(N+2)
        else:
            assert not x.contains(N-4)
            assert x.contains(N-3)
            assert not x.contains(N-2)
            assert x.contains(N-1)
            assert not x.contains(N)
            assert x.contains(N+1)
            assert not x.contains(N+2)
        assert x.contains(2*N-4)
        assert not x.contains(2*N-3)
        assert x.contains(2*N-2)
        assert not x.contains(2*N-1)
        assert not x.contains(2*N)
        assert not x.contains(2*N+1)

    def test_AsArray(self):
        x = SetWithTestMethods()
        a = Numeric.array(range(N), Numeric.UInt32)
        x.addRange(0, N)
        assert len(x) == len(a)
        assert len(x) == N
        xa = x.asArray()
        a = a - xa
        assert Numeric.vdot(a, a) == 0

    # MEMORY TEST

    def test_MemoryUsage(self):
        #
        # A very small set should occupy a small memory footprint.
        # It works out to 536 bytes for very small sets.
        #
        x = SetWithTestMethods()
        x.add(1)
        x.add(3)
        x.add(1800)
        if stuff != None:
            stuff.append(("memusage", x.memUsage()))
        assert x.memUsage() < 540

    # PERFORMANCE TESTS

    def test_AddPerformance(self):
        x = SetWithTestMethods()
        T = x.add_performance()
        if stuff != None:
            stuff.append(("test_AddPerformance", T))
        assert T <= x.ADD_ELEMENT_TIME

    def test_ContainsPerformance(self):
        x = SetWithTestMethods()
        T = x.contains_performance()
        if stuff != None:
            stuff.append(("test_ContainsPerformance", T))
        assert T <= x.CONTAINS_ELEMENT_TIME

    def test_AsArrayPerformance(self):
        x = SetWithTestMethods()
        T = x.asarray_performance()
        if stuff != None:
            stuff.append(("test_AsArrayPerformance", T))
        assert T <= x.ASARRAY_ELEMENT_TIME

def test():
    suite = unittest.makeSuite(Tests, 'test')
    runner = unittest.TextTestRunner()
    runner.run(suite)

if __name__ == "__main__":
    test()
    if stuff != None:
        for x in stuff:
            print x