aboutsummaryrefslogtreecommitdiff
path: root/boltzgen/kernel/template/pattern/SSS.cl.mako
blob: ad5e8543bccb9302d32db87f300f19c67da71895 (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
<%def name="operator(name, params = None)">
<%
if layout.__class__.__name__ != 'SOA':
    raise Exception('SSS pattern only works for the AOS memory layout')
%>
__kernel void ${name}(
      __global uintptr_t* control
% if 'cell_list_dispatch' in extras:
    , __global unsigned* cells
% else:
    , std::size_t gid
% endif
% if params is not None:
% for param_type, param_name in params:
    , ${param_type} ${param_name}
% endfor
% endif
) {
% if 'cell_list_dispatch' in extras:
    const unsigned int gid = cells[get_global_id(0)];
% endif

% for i, c_i in enumerate(descriptor.c):
    __global ${float_type}* preshifted_f_${i} = ((__global ${float_type}*)control[${i}]) + ${layout.cell_preshift('gid')};
% endfor

% for i, c_i in enumerate(descriptor.c):
    const ${float_type} f_curr_${i} = *preshifted_f_${i};
% endfor

    ${caller.body()}

% for i, c_i in enumerate(descriptor.c):
    *preshifted_f_${i} = f_next_${descriptor.c.index(-c_i)};
% endfor
}
</%def>

<%def name="operator_with_domain_dispatch(name, params = None)">
__kernel void ${name}(
      __global uintptr_t* control
% if params is not None:
% for param_type, param_name in params:
    , ${param_type} ${param_name}
% endfor
% endif
) {
    const unsigned int gid = ${index.gid('get_global_id(0)', 'get_global_id(1)', 'get_global_id(2)')};

% for i, c_i in enumerate(descriptor.c):
    __global ${float_type}* preshifted_f_${i} = ((__global ${float_type}*)control[${i}]) + ${layout.cell_preshift('gid')};
% endfor

% for i, c_i in enumerate(descriptor.c):
    const ${float_type} f_curr_${i} = *preshifted_f_${i};
% endfor

    ${caller.body()}

% for i, c_i in enumerate(descriptor.c):
    *preshifted_f_${i} = f_next_${descriptor.c.index(-c_i)};
% endfor
}
</%def>

<%def name="functor(name, params = None)">
<%
if layout.__class__.__name__ != 'SOA':
    raise Exception('SSS pattern only works for the AOS memory layout')
%>
__kernel void ${name}(
      __global const uintptr_t* control
% if 'cell_list_dispatch' in extras:
    , __global unsigned* cells
% else:
    , std::size_t gid
% endif
% if params is not None:
% for param_type, param_name in params:
    , ${param_type} ${param_name}
% endfor
% endif
) {
% if 'cell_list_dispatch' in extras:
    const unsigned int gid = cells[get_global_id(0)];
% endif

% for i, c_i in enumerate(descriptor.c):
    __global const ${float_type}* preshifted_f_${i} = ((__global ${float_type}*)control[${i}]) + ${layout.cell_preshift('gid')};
% endfor

% for i, c_i in enumerate(descriptor.c):
    const ${float_type} f_curr_${i} = *preshifted_f_${descriptor.c.index(-c_i)};
% endfor

    ${caller.body()}
}
</%def>

<%def name="functor_with_domain_dispatch(name, params = None)">
__kernel void ${name}(
      __global const uintptr_t* control
% if params is not None:
% for param_type, param_name in params:
    , ${param_type} ${param_name}
% endfor
% endif
) {
    const unsigned int gid = ${index.gid('get_global_id(0)', 'get_global_id(1)', 'get_global_id(2)')};

% for i, c_i in enumerate(descriptor.c):
    __global const ${float_type}* preshifted_f_${i} = ((__global ${float_type}*)control[${i}]) + ${layout.cell_preshift('gid')};
% endfor

% for i, c_i in enumerate(descriptor.c):
    const ${float_type} f_curr_${i} = *preshifted_f_${i};
% endfor

    ${caller.body()}
}
</%def>