Lines Matching refs:is_transpose

19 extern "C" __global__ void Interp(const CeedInt num_elem, const CeedInt is_transpose, const CeedSca…  in Interp()  argument
31 const CeedInt P = is_transpose ? BASIS_Q_1D : BASIS_P_1D; in Interp()
32 const CeedInt Q = is_transpose ? BASIS_P_1D : BASIS_Q_1D; in Interp()
33 const CeedInt stride_0 = is_transpose ? 1 : BASIS_P_1D; in Interp()
34 const CeedInt stride_1 = is_transpose ? BASIS_P_1D : 1; in Interp()
35 const CeedInt u_stride = is_transpose ? BASIS_NUM_QPTS : BASIS_NUM_NODES; in Interp()
36 const CeedInt v_stride = is_transpose ? BASIS_NUM_NODES : BASIS_NUM_QPTS; in Interp()
37 const CeedInt u_comp_stride = num_elem * (is_transpose ? BASIS_NUM_QPTS : BASIS_NUM_NODES); in Interp()
38 const CeedInt v_comp_stride = num_elem * (is_transpose ? BASIS_NUM_NODES : BASIS_NUM_QPTS); in Interp()
39 const CeedInt u_size = is_transpose ? BASIS_NUM_QPTS : BASIS_NUM_NODES; in Interp()
65 if (is_transpose && d == BASIS_DIM - 1) out[k] += v_k; in Interp()
77 extern "C" __global__ void Grad(const CeedInt num_elem, const CeedInt is_transpose, const CeedScala… in Grad() argument
91 const CeedInt P = is_transpose ? BASIS_Q_1D : BASIS_P_1D; in Grad()
92 const CeedInt Q = is_transpose ? BASIS_P_1D : BASIS_Q_1D; in Grad()
93 const CeedInt stride_0 = is_transpose ? 1 : BASIS_P_1D; in Grad()
94 const CeedInt stride_1 = is_transpose ? BASIS_P_1D : 1; in Grad()
95 const CeedInt u_stride = is_transpose ? BASIS_NUM_QPTS : BASIS_NUM_NODES; in Grad()
96 const CeedInt v_stride = is_transpose ? BASIS_NUM_NODES : BASIS_NUM_QPTS; in Grad()
97 const CeedInt u_comp_stride = num_elem * (is_transpose ? BASIS_NUM_QPTS : BASIS_NUM_NODES); in Grad()
98 const CeedInt v_comp_stride = num_elem * (is_transpose ? BASIS_NUM_NODES : BASIS_NUM_QPTS); in Grad()
99 const CeedInt u_dim_stride = is_transpose ? num_elem * BASIS_NUM_QPTS * BASIS_NUM_COMP : 0; in Grad()
100 const CeedInt v_dim_stride = is_transpose ? 0 : num_elem * BASIS_NUM_QPTS * BASIS_NUM_COMP; in Grad()
107 CeedInt pre = is_transpose ? BASIS_NUM_QPTS : BASIS_NUM_NODES; in Grad()
129 if (is_transpose && dim_2 == BASIS_DIM - 1) out[k] += v_k; in Grad()