aboutsummaryrefslogtreecommitdiff
path: root/boltzgen/kernel/template/momenta_boundary.cl.mako
blob: b0b4c9eebac6c0094ba118eda88fa03a2fa19867 (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
<%
import sympy

moments_subexpr, moments_assignment = model.moments()
collision_subexpr, collision_assignment = model.collision(f_eq = model.equilibrium(resolve_moments = False))
%>

<%def name="momenta_boundary(name, param)">
__kernel void ${name}_momenta_boundary_gid(
   __global ${float_type}* f_next,
   __global ${float_type}* f_prev,
   unsigned int gid, ${param})
{
    __global ${float_type}* preshifted_f_next = f_next + ${layout.cell_preshift('gid')};
    __global ${float_type}* preshifted_f_prev = f_prev + ${layout.cell_preshift('gid')};

% for i, c_i in enumerate(descriptor.c):
    const ${float_type} f_curr_${i} = preshifted_f_prev[${layout.pop_offset(i) + layout.neighbor_offset(-c_i)}];
% endfor

% for i, expr in enumerate(moments_subexpr):
    const ${float_type} ${expr[0]} = ${sympy.ccode(expr[1])};
% endfor

    ${caller.body()}

% for i, expr in enumerate(collision_subexpr):
    const ${float_type} ${expr[0]} = ${sympy.ccode(expr[1])};
% endfor

% for i, expr in enumerate(collision_assignment):
    const ${float_type} ${sympy.ccode(expr)}
% endfor

% for i, expr in enumerate(collision_assignment):
    preshifted_f_next[${layout.pop_offset(i)}] = f_next_${i};
% endfor
}
</%def>

<%call expr="momenta_boundary('velocity', '%s%d velocity' % (float_type, descriptor.d))">
    ${float_type} ${sympy.ccode(moments_assignment[0])}
% for i, expr in enumerate(moments_assignment[1:]):
    ${float_type} ${expr.lhs} = velocity.${['x', 'y', 'z'][i]};
% endfor
</%call>

<%call expr="momenta_boundary('density', '%s density' % float_type)">
    ${float_type} ${moments_assignment[0].lhs} = density;
% for i, expr in enumerate(moments_assignment[1:]):
    ${float_type} ${sympy.ccode(expr)}
% endfor
</%call>

% if 'cell_list_dispatch' in extras:
__kernel void velocity_momenta_boundary_cells(__global ${float_type}* f_next,
                                              __global ${float_type}* f_prev,
                                              __global unsigned int*  cells,
                                              ${float_type}${descriptor.d} velocity)
{
    velocity_momenta_boundary_gid(f_next, f_prev, cells[get_global_id(0)], velocity);
}

__kernel void density_momenta_boundary_cells(__global ${float_type}* f_next,
                                             __global ${float_type}* f_prev,
                                             __global unsigned int*  cells,
                                             ${float_type} density)
{
    density_momenta_boundary_gid(f_next, f_prev, cells[get_global_id(0)], density);
}
% endif