-
Notifications
You must be signed in to change notification settings - Fork 102
/
solution.cpp
146 lines (116 loc) · 5.13 KB
/
solution.cpp
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
/*
SYCL Academy (c)
SYCL Academy is licensed under a Creative Commons
Attribution-ShareAlike 4.0 International License.
You should have received a copy of the license along with this
work. If not, see <http://creativecommons.org/licenses/by-sa/4.0/>.
The tiling should work as follows:
The groupOffset will need to be inverted, as well as the localId.
In: Out:
+----------------------------+ +----------------------------+
| group ^ | | ^ |
| Offset[1]| | | | |
| V | | | |
|<------------------>+-------+ | | |
| groupOffset[0] |1 2| | |groupOffset[0] |
| | tile | | | |
| |3 4| -------> | | |
| +-------+ | V |
| | | +-------+ |
| | | |1 3| |
| | | | tile | |
| | | |2 4| |
+----------------------------+ +-------+-------+------------+
<----->
groupOffset[1]
Within a tile, each work item is assigned to a single value:
InTile: OutTile:
+------------+ +------------+
| local ^ | | local^ |
| Id[1] | | | Id[0]| |
| V |------->| | |
|<-------->* | | V |
|localId[0] | |<----->* |
+------------+ +------------+
localId[1]
*/
#include "../helpers.hpp"
#include <iostream>
#include <vector>
#include <sycl/sycl.hpp>
#include <benchmark.h>
class naive;
class tiled;
constexpr size_t N = 8192;
constexpr size_t numIters = 100;
using T = float;
int main() {
std::vector<T> A(N * N);
std::vector<T> A_T(N * N);
std::vector<T> A_T_comparison(N * N);
for (auto i = 0; i < N * N; ++i) {
A[i] = i;
}
try {
auto q = sycl::queue {};
std::cout << "Running on "
<< q.get_device().get_info<sycl::info::device::name>() << "\n";
sycl::range globalRange { N, N };
sycl::range localRange { 16, 16 };
sycl::nd_range ndRange { globalRange, localRange };
{
sycl::buffer inBuf { A.data(), globalRange };
sycl::buffer outBuf { A_T.data(), globalRange };
sycl::buffer compBuf { A_T_comparison.data(), globalRange };
util::benchmark(
[&]() {
q.submit([&](sycl::handler& cgh) {
sycl::accessor inAcc { inBuf, cgh, sycl::read_only };
sycl::accessor compAcc { compBuf, cgh, sycl::write_only,
sycl::property::no_init {} };
cgh.parallel_for<naive>(ndRange, [=](sycl::nd_item<2> item) {
auto globalId = item.get_global_id();
sycl::id globalIdTranspose { globalId[1], globalId[0] };
compAcc[globalIdTranspose] = inAcc[globalId];
});
});
q.wait_and_throw();
},
numIters, "Naive matrix transpose");
util::benchmark(
[&]() {
q.submit([&](sycl::handler& cgh) {
sycl::accessor inAcc { inBuf, cgh, sycl::read_only };
sycl::accessor outAcc { outBuf, cgh, sycl::write_only,
sycl::property::no_init {} };
sycl::local_accessor<T, 2> localAcc { localRange, cgh };
cgh.parallel_for<tiled>(ndRange, [=](sycl::nd_item<2> item) {
// This kernel assumes that localRange[0] == localRange[1]
auto globalId = item.get_global_id();
auto localId = item.get_local_id();
auto localId_T = sycl::range { localId[1], localId[0] };
auto groupOffset = globalId - localId;
auto groupOffset_T =
sycl::range { groupOffset[1], groupOffset[0] };
// Read from global memory in row major and write to local
// memory in column major
localAcc[localId_T] = inAcc[globalId];
// We need to wait here to ensure that all work items have
// written to local memory before we start reading from it.
sycl::group_barrier(item.get_group());
// Read from local memory in row major and write to global
// memory in row major fashion
outAcc[groupOffset_T + localId] = localAcc[localId];
});
});
q.wait_and_throw();
},
numIters, "Tiled local memory matrix transpose");
}
} catch (const sycl::exception& e) {
std::cout << "Exception caught: " << e.what() << std::endl;
}
for (auto i = 0; i < N * N; ++i) {
SYCLACADEMY_ASSERT(A_T[i] == A_T_comparison[i]);
}
}