-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.clj
198 lines (114 loc) · 3.86 KB
/
core.clj
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
(ns tutorial.core)
(import '(java.util.concurrent Executors))
(defn open [numberCount threadCount]
" open and divide work "
;; read file
(def iter (atom 1))
(def seqVariableA (seq []))
(def seqVariableB (seq []))
(def size (int (/ numberCount (* threadCount 2))))
(with-open [file (clojure.java.io/reader "src/tutorial/numbers.txt")]
;; iterate
(doseq [line (line-seq file)]
;; while under limit
(if (> numberCount @iter) (do
(cond
;; start new list
(= (mod @iter size) 0) (do
(def seqVariableB (concat seqVariableB [(bigdec line)]))
(def seqVariableA (concat seqVariableA [seqVariableB]))
(def seqVariableB (seq []))
)
)
;; add work to list
(def seqVariableB (concat seqVariableB [(bigdec line)]))
(swap! iter inc)
)
)
)
)
;; return divided
(seq [seqVariableA])
)
(defn group [seqParameter]
" pair sequences together "
(println "before " (count (nth seqParameter 0)))
;; iterate
(def iter (atom 1))
(def seqVariableA (seq []))
(doseq [ele (nth seqParameter 0)]
(if (= (mod @iter 2) 0) (do
(println (count (nth (nth (nth seqParameter 0) 0) 0)))
)
)
(swap! iter inc)
)
(doseq [ele (nth (nth seqParameter 0) 0)]
;; pair
(if (= (mod @iter 2) 0) (do
(def seqVariableB (nth seqParameter (- @iter 1)))
(def seqVariableC (nth seqParameter (- @iter 2)))
(def seqVariableB (concat seqVariableB seqVariableC))
(def seqVariableA (conj seqVariableA seqVariableB))
)
)
;; increment
(swap! iter inc)
)
;; return
(seq [seqVariableA])
)
(defn quickSort [seqParameter]
" recursive, divide-and-conquer sort "
(cond
(<= (count seqParameter) 1) seqParameter
:else (do
(let [pivot (first seqParameter) other (rest seqParameter)]
(concat
(quickSort (filter #(>= pivot %) other))
[pivot]
(quickSort (filter #(< pivot %) other))
)
)
)
)
)
(defn run [numberCount threadCount]
" function to determine how long it takes numberCount
to sort, dependent upon threadCount "
;; ;; ;; <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <- <-
;; good
(def s (open numberCount threadCount))
;;(println (count (nth s 0)))
;; on
(def a (group s))
;(println (count (nth (nth a 0) 0)))
;;(def b (group a))
;(println (count (nth (nth b 0) 0)))
(println "\n")
;; ;; ;;
(def iter (atom threadCount))
(while (not= @iter 0)
(println @iter)
(reset! iter (int (/ @iter 2)))
)
;; ;; ;;
)
(defn -main []
(run 50000 32)
)
;; cd /Users/adrienhighlander/Desktop/tutorial/src/tutorial
;; lein run
;;(time (open 1000000 64))
(defn -main []
;; 64 thread instance
(def openVariable (open 50000 64))
(def groupVariable (group openVariable))
(def seqVariable (nth groupVariable 0))
(let [pool (Executors/newFixedThreadPool 64) work (map (fn [p] #(quickSort p)) seqVariable)]
(doseq [future (.invokeAll pool work)]
(println (deref future))
)
(.shutdown pool)
)
)