-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathex2-stencil.rkt
189 lines (167 loc) · 6.58 KB
/
ex2-stencil.rkt
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
#|
| Copyright (c) 2018-2019, University of California, Berkeley.
| Copyright (c) 2018-2019, NVIDIA CORPORATION. All rights reserved.
|
| Redistribution and use in source and binary forms, with or without
| modification, are permitted provided that the following conditions are met:
|
| 1. Redistributions of source code must retain the above copyright notice,
| this list of conditions and the following disclaimer.
|
| 2. Redistributions in binary form must reproduce the above copyright notice,
| this list of conditions and the following disclaimer in the documentation
| and/or other materials provided with the distribution.
|
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
| ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
| LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
| POSSIBILITY OF SUCH DAMAGE.
|#
#lang rosette
(require "util.rkt" "cuda.rkt" "cuda-synth.rkt")
(define n-block 2)
(define /3 (lambda (x) (/ x 3)))
;; Create input and output matrices.
(define (create-IO warpSize)
(set-warpSize warpSize)
(define block-size (* 2 warpSize))
(define I-sizes (x-y-z (* 2 block-size)))
(define O-sizes (- I-sizes 2))
(define I (create-matrix I-sizes gen-uid))
(define O (create-matrix O-sizes))
(define O* (create-matrix O-sizes))
(values block-size I-sizes O-sizes I O O*))
;; Run sequential program spec and GPU kernel kernel, and compare their outputs.
(define (run-with-warp-size spec kernel w)
(define-values (block-size I-sizes O-sizes I O O*)
(create-IO w))
(spec I O O-sizes)
(run-kernel kernel (x-y-z block-size) (x-y-z n-block) I O* I-sizes O-sizes)
;(acc-print O*)
(acc-equal? O O*)
)
;; Sequential program spec
(define (stencil-1d-spec I O o-sizes)
(for ([i (get-x o-sizes)])
(let ([o (create-accumulator (list +) /3)])
(for ([j 3])
(accumulate o (get I (+ i j))))
(set O i o))))
;; Complete kernel
(define (stencil-1d threadId blockID blockDim I O I-sizes O-sizes)
(define I-cached (create-matrix-local (x-y-z 2)))
(define warpID (get-warpId threadId))
(define offset (+ (* blockID blockDim) (* warpID warpSize))) ;; warpID = (threadIdy * blockDimx + threadIdx)/warpSize
(define gid (get-global-threadId threadId blockID))
(global-to-local I I-cached
(x-y-z 1)
(+ (* blockID blockDim) (* warpID warpSize))
(x-y-z (+ warpSize 2)) #f #:round 2)
(define localId (get-idInWarp threadId))
(define o (create-accumulator (list +) /3 blockDim))
(for ([i 3])
(let* ([index (ite (< localId i) 1 0)]
[lane (+ i localId)]
[x (shfl (get I-cached index) lane)])
;(pretty-display `(lane ,i ,localId ,lane))
(accumulate o x)
))
(reg-to-global o O gid)
)
;; Kernel sketch
(define (stencil-1d-sketch threadId blockID blockDim I O I-sizes O-sizes)
(define I-cached (create-matrix-local (x-y-z 2)))
(define gid (+ (* blockID blockDim) threadId))
(define localId (get-idInWarp threadId))
(define offset (- gid localId))
(global-to-local I I-cached
(x-y-z 1)
offset
(x-y-z (+ warpSize 2)) #f #:round 2)
(define o (create-accumulator (list +) /3 blockDim))
(for/bounded ([i 3])
(let* ([index (ite (?cond (@dup i) localId) (@dup 0) (@dup 1))]
[lane (?sw-xform localId warpSize
i warpSize [])]
[x (shfl (get I-cached index) lane)])
(accumulate o x #:pred (?cond localId (@dup i))) ; (?cond localId (@dup i))
))
(reg-to-global o O gid)
)
;; Check correctness of a complete kernel against a spec.
(define (test)
(for ([w (list 32)])
(let ([ret (run-with-warp-size stencil-1d-spec stencil-1d-sketch w)])
(pretty-display `(test ,w ,ret))))
)
;(test)
;; Synthesize a kernel sketch given a spec.
(define (synthesis)
(pretty-display "solving...")
(define sol
(time (solve
(assert (andmap
(lambda (w) (run-with-warp-size stencil-1d-spec stencil-1d-sketch w))
(list 32))))))
(print-forms sol)
)
(define t0 (current-seconds))
(synthesis)
(define t1 (current-seconds))
(- t1 t0)
;; Synthesize data loading from global memory.
(define (load-synth)
(define-values (block-size I-sizes O-sizes I O O*)
(create-IO 4))
;; Store
(define (stencil-1d-store threadId blockId blockDim O)
(define warpID (get-warpId threadId))
(define o
(for/vector ([w warpID]
[t threadId])
(ID t w blockId)))
(reg-to-global o O (get-global-threadId threadId blockId))
)
;; Run spec
(stencil-1d-spec I O O-sizes)
;; Collect IDs
(define IDs (create-matrix O-sizes))
(run-kernel stencil-1d-store (x-y-z block-size) (x-y-z n-block) IDs)
(define-values (threads warps blocks) (get-grid-storage))
(collect-inputs O IDs threads warps blocks)
(define n-regs (num-regs warps I))
(pretty-display `(n-regs ,n-regs))
;; Load
(define (conv1d-load threadId blockId blockDim I warp-input-spec)
(define warpId (get-warpId threadId))
;; sketch starts
(define I-cached (create-matrix-local (x-y-z n-regs)))
(global-to-local I I-cached
(x-y-z (??)) ;; stride
(x-y-z (?warp-offset [(get-x blockId) (get-x blockDim)] [warpId warpSize])) ;; offset
(x-y-z (?warp-size warpSize 1)) ;; load size
#f)
;; sketch ends
(check-warp-input warp-input-spec I I-cached warpId blockId)
)
(run-kernel conv1d-load (x-y-z block-size) (x-y-z n-block) I warps)
(define sol (time (solve (assert #t))))
(when (sat? sol)
(print-forms sol)
#;(define sol-hash (match sol [(model m) m]))
#;(for ([key-val (hash->list sol-hash)])
(let ([key (car key-val)]
[val (cdr key-val)])
(when (string-contains? (format "~a" key) "stencil:115") ;; stride
(assert (not (equal? key val)))
(pretty-display `(v ,key ,val ,(string-contains? (format "~a" key) "stencil:113")))))
))
)
;(load-synth)