-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththreadstest.lisp
353 lines (300 loc) · 14.9 KB
/
threadstest.lisp
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
(eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload "bordeaux-threads")
(ql:quickload "bt-semaphore")
(ql:quickload "inferior-shell")
(ql:quickload "alexandria")
(ql:quickload '(:fare-quasiquote-readtable
:fare-quasiquote
:let-over-lambda
:trivia)))
(defpackage #:thread-test
(:use #:let-over-lambda)
(:import-from #:alexandria #:parse-body)
(:shadowing-import-from #:let-over-lambda #:when-match #:if-match #:symb)
(:use #:inferior-shell)
(:shadowing-import-from #:inferior-shell #:<>)
(:use #:functions
#:bordeaux-threads
#:macros
#:trivia
#:common-lisp)
(:import-from #:bt-semaphore #:semaphore-count)
(:export :pmapcar
:pmap
:plmapcar
:defun-s!
:my-command-line :split-by-delim))
(in-package :thread-test)
(named-readtables:in-readtable :fare-quasiquote)
(defun num-threads ()
(uiop:os-cond ((uiop:os-unix-p) (read-from-string (run/s `(nproc --all)))) ; works
((uiop:os-windows-p) (read-from-string (run/s `(echo %NUMBER_OF_PROCESSORS%)))) ; not tested
((uiop:os-macosx-p) (read-from-string (run/s `(sysctl -n hw.ncpu)))) ; not tested
(t 8))) ; if it's not a supported OS, just put the cores to 8
(defun ignored-threads-imp (&optional extra-threads-list)
(let ((ignore (append extra-threads-list (list "swank-indentation-cache-thread"
"reader-thread" "control-thread"
"Swank Sentinel" "main thread")))
(count 0))
(mapc (lambda (x)
(when (member (thread-name x) ignore :test #'equal)
(incf count)))
(all-threads))
count))
(defun ignored-threads (&optional extra-threads-list)
(let ((ignore (append extra-threads-list (list "swank-indentation-cache-thread"
"reader-thread" "control-thread"
"Swank Sentinel" "main thread"))))
(reduce (lambda (x y)
(if (member (thread-name y) ignore :test #'equal)
(1+ x) x))
(all-threads) :initial-value 0)))
(defun ignored-threads-func2 (&optional extra-threads-list)
(let ((ignore (append extra-threads-list (list "swank-indentation-cache-thread"
"reader-thread" "control-thread"
"Swank Sentinel" "main thread"))))
(length (remove-if-not (lambda (x) (member (thread-name x) ignore :test #'equal))
(all-threads)))))
(defun ignored-threads-func1 (&optional extra-threads-list)
(let ((ignore (append extra-threads-list (list "swank-indentation-cache-thread"
"reader-thread" "control-thread"
"Swank Sentinel" "main thread"))))
(length (intersection ignore (mapcar 'thread-name (all-threads)) :test 'equal))))
(defun num-used-threads ()
(length (all-threads)))
(defparameter num-threads-offset (+ (num-threads) (ignored-threads)))
(defun num-open-threads ()
(- num-threads-offset (num-used-threads)))
(defun plmapcar (fn list &rest more-lists)
"works like mapcar except every process is wrapped around a new thread and the computation gets passed
onto the user to evaluate when they wish and evaluates (parallel lazy mapcar)"
(apply (f:curry mapcar (lambda (&rest x)
(make-thread (lambda () (apply fn x))))
list)
more-lists))
(macrolet ((pmap-gen (&optional result-type)
;; mapcar is faster than map so inject mapcar instead of map if a result type is passed here
`(let* ((thread-lim (1- (num-open-threads)))
(mutex (make-semaphore :count thread-lim))
(finished (make-semaphore :count 0))
(vals (prog1 (apply (f:curry ,@(if result-type
`(map result-type)
`(mapcar))
(lambda (&rest x)
(wait-on-semaphore mutex)
(make-thread (lambda () (prog1 (apply fn x)
(signal-semaphore mutex)))))
list)
more-lists)
(signal-semaphore finished))))
(wait-on-semaphore finished)
,(if result-type
`(map result-type #'join-thread vals)
`(mapcar #'join-thread vals)))))
(defun pmap (result-type fn list &rest more-lists)
(pmap-gen result-type))
(defun pmapcar (fn list &rest more-lists)
(pmap-gen)))
;; Generate a macro that returns a function and injects a semaphore in it's place
;; s! does semaphore wait before the p! variable/statement
;; p! marks that part of the code for parallization
(eval-when (:load-toplevel :compile-toplevel :execute)
(defun s!-symbol-p (s)
(and (symbolp s)
(> (length (symbol-name s)) 2)
(string= (symbol-name s)
"S!"
:start1 0
:end1 2)))
;; From LOL
(defun my-symb (&rest args)
(values (intern (apply #'mkstr args))))
;; from LOL
(defun s!-symbol-to-function (s)
(my-symb (subseq (mkstr s) 2))))
;; Poorest way to do it
(defmacro defun-s!% (name args &rest body)
"creates a defun with the extra functionality of stating s! in front of a function to make any
code within that functions scope happen between a (wait-on-semaphore) and a (signal-semaphore).
Note that you can overload (num-open-threads) before the function is declared to control the initial
semaphore value (flet ((num-open-threads () 1)) for 1"
(let ((g!lock (gensym "lock"))
(g!x (gensym "x"))
(syms (remove-duplicates
(remove-if-not #'s!-symbol-p
(flatten body)))))
(multiple-value-bind (body declarations docstring)
(parse-body body :documentation t)
`(defun ,name ,args
,@(when docstring
(list docstring))
,@declarations
(let ((,g!lock (make-semaphore :count (num-open-threads) :name "auto-sym"))) ; semaphore creation to (num-open-threads)
(flet ,(mapcar (lambda (s)
`(,s (&rest ,g!x)
(prog2
(wait-on-semaphore ,g!lock)
;; (apply #',(s!-symbol-to-function s) ,g!x) ; doesn't work for special forms or macros
;; This actually isn't too slow!!!
(eval (eval `(cons ',',(s!-symbol-to-function s) ',,g!x)))
(signal-semaphore ,g!lock))))
syms)
,@body))))))
;; Parser with if statements
(defmacro defun-s!%% (name args &rest body)
"creates a defun with the extra functionality of stating s! in front of a function to make any
code within that functions scope happen between a (wait-on-semaphore) and a (signal-semaphore).
Note that you can overload (num-open-threads) before the function is declared to control the initial
semaphore value (flet ((num-open-threads () 1)) for 1"
(let ((g!lock (gensym "lock"))
(g!y (gensym)))
(multiple-value-bind (body declarations docstring)
(parse-body body :documentation t)
`(defun ,name ,args
,@(when docstring
(list docstring))
,@declarations
(let ((,g!lock (make-semaphore :count (num-open-threads) :name "auto-sym"))) ; semaphore creation to (num-open-threads)
,@(mapcar (alambda (x)
(if (and (not (null x)) (listp x))
;; Checking to see if the function is in the form (fn ...)
(if (s!-symbol-p (car x))
`(prog2
(wait-on-semaphore ,g!lock)
,(cons (s!-symbol-to-function (car x))
(mapcar #'self (cdr x)))
(signal-semaphore ,g!lock))
(mapcar #'self x))
;; we are passing the s! function/macro to a HOF (cdr of a () set)
(if (s!-symbol-p x)
`(lambda (&rest ,g!y)
(prog2
(wait-on-semaphore ,g!lock)
(eval (eval `(cons ',',(s!-symbol-to-function x) ',,g!y)))
(signal-semaphore ,g!lock)))
x)))
body))))))
;; Parser with proper pattern matching
(defmacro defun-s! (name args &rest body)
"creates a defun with the extra functionality of stating s! in front of a function to make any
code within that functions scope happen between a (wait-on-semaphore) and a (signal-semaphore).
Note that you can overload (num-open-threads) before the function is declared to control the initial
semaphore value (flet ((num-open-threads () 1)) for 1"
(let ((g!lock (gensym "lock"))
(g!y (gensym)))
(multiple-value-bind (body declarations docstring)
(parse-body body :documentation t)
`(defun ,name ,args
,@(when docstring
(list docstring))
,@declarations
(let ((,g!lock (make-semaphore :count (num-open-threads) :name "auto-sym"))) ; semaphore creation to (num-open-threads)
,@(mapcar (alambda (x)
(match x
((guard (list* a b) (s!-symbol-p a))
`(prog2 (wait-on-semaphore ,g!lock)
,(cons (s!-symbol-to-function a)
(mapcar #'self b))
(signal-semaphore ,g!lock)))
((guard a (s!-symbol-p a)) ; the s! symbol must be on the cdr of the list since we are not seeing it
`(lambda (&rest ,g!y) ; at the start of a list but instead as an atom
(prog2
(wait-on-semaphore ,g!lock)
(eval (eval `(cons ',',(s!-symbol-to-function x) ',,g!y)))
(signal-semaphore ,g!lock))))
((list* _ _) (mapcar #'self x)) ; do this pattern matching again on the list
(a a)))
body))))))
(defun-s! test (arg1 arg2)
(s!+ arg1 arg2))
;; A side by side comparison of writer-s! vs the same function with no g!
;; (flet ((num-open-threads () 1))
;; (defun-s! writer-s! ()
;; '(flet ((reader ()
;; (mapcar (lambda (x)
;; (s!progn (sleep .3)
;; (print x)) x)
;; (range 10))))
;; (let ((curr (make-thread #'reader)))
;; (dotimes (i 11)
;; (s!progn
;; (sleep .1)
;; (format t "~%waiting ~d" i)
;; (force-output)
;; (sleep .1)))
;; (join-thread curr)))))
(let ((lock (make-semaphore :count 1 :name "test")))
(defun writer ()
(let ((curr (make-thread #'reader)))
(dotimes (i 11)
(wait-on-semaphore lock)
(sleep .1)
(format t "~%waiting ~d" i)
(force-output)
(sleep .1)
(signal-semaphore lock))
(join-thread curr)))
(defun reader ()
(mapcar (lambda (x)
(thread-yield)
(wait-on-semaphore lock)
(sleep .3)
(print x)
(signal-semaphore lock) x)
(list:range 10))))
;; What!??!?!
;; works
;;; The testing part of the file!-------------------------------------------------------------------
;; (run/ss `(pipe (ls) (grep "he")))
;; (run/ss `(grep ))
;; (run/ss `(pipe (echo ,(lss "~/")) (grep "he")))
;; (run/ss `(pipe (echo (+ hel "lo,") world) (tr "hw" "HW") (sed -e "s/$/!/")))
;; (time (split-by-delim #\linefeed (run/ss `(pipe (echo ,(lss "~/")) (grep ".") (sed -e "s/o/0/g")))))
;; (time (split-by-delim #\linefeed (run/ss `(pipe (ls /home/loli/) (grep ".") (sed -e "s/o/0/g")))))
;; (time (run/lines `(pipe (ls /home/loli/) (grep ".") (sed -e "s/o/0/g"))))
;; (let ((stream (make-string-output-stream)))
;; (run-program "ls ~" :output stream)
;; (get-output-stream-string stream))
;; (detect-os)
;; (uiop:read-little-endian)
;; (time (mapcar (lambda (x) (make-thread (lambda () (mapcar (lambda (y) (+ x 1 2 3 4 y)) (list 1 2 3 4 5))))) (range 1000)))
;; (time (make-thread (lambda ())))
;; (pmapcar (lambda (x) (declare (ignore x)) (sleep 1)) (range 20))
;; (time (pmapcar (lambda (x y) (sleep .3) (+ 1 2 3 x y)) (range 20) (range 13)))
;; For History--------------------------------------------------------------------------------------
;; This is just a spinlock version of pmap and pmapcar
(macrolet ((pmap-gen (&optional result-type)
;; mapcar is faster than map so inject mapcar instead of map if a result type is passed here
`(let* ((thread-lim (1- (num-open-threads)))
(mutex (make-semaphore :count thread-lim))
(vals (apply
(f:curry ,@(if result-type
`(map result-type)
`(mapcar))
(lambda (&rest x)
(wait-on-semaphore mutex)
(make-thread (lambda () (prog1 (apply fn x)
(signal-semaphore mutex)))))
list)
more-lists)))
(loop :while (/= (semaphore-count mutex) thread-lim))
,(if result-type
`(map result-type #'join-thread vals)
`(mapcar #'join-thread vals)))))
(defun pmap* (result-type fn list &rest more-lists)
(pmap-gen result-type))
(defun pmapcar* (fn list &rest more-lists)
(pmap-gen)))
(defun fibonacci (n)
(labels ((rec (n)
(if (= n 0)
(list 0 1)
(let* ((ls (rec (truncate n 2)))
(z (car ls))
(f (cadr ls))
(c (* z (- (* 2 f) z)))
(d (+ (* f f) (* z f))))
(if (= (mod n 2) 0)
(list c d)
(list d (+ c d)))))))
(car (rec n))))