39template<
class UnaryOp>
42 using real_type = std::invoke_result_t<UnaryOp, unsigned>;
46 for(
unsigned i=0; i<n; i++)
57template<
class real_type>
58DG_DEVICE void pix_sort( real_type& a, real_type& b)
68template<
class real_type>
71 pix_sort(p[0],p[1]) ; pix_sort(p[1],p[2]) ; pix_sort(p[0],p[1]) ;
75template<
class real_type>
78 pix_sort(p[0],p[1]) ; pix_sort(p[3],p[4]) ; pix_sort(p[0],p[3]) ;
79 pix_sort(p[1],p[4]) ; pix_sort(p[1],p[2]) ; pix_sort(p[2],p[3]) ;
80 pix_sort(p[1],p[2]) ;
return (p[2]) ;
83template<
class real_type>
86 pix_sort(p[1], p[2]) ; pix_sort(p[4], p[5]) ; pix_sort(p[7], p[8]) ;
87 pix_sort(p[0], p[1]) ; pix_sort(p[3], p[4]) ; pix_sort(p[6], p[7]) ;
88 pix_sort(p[1], p[2]) ; pix_sort(p[4], p[5]) ; pix_sort(p[7], p[8]) ;
89 pix_sort(p[0], p[3]) ; pix_sort(p[5], p[8]) ; pix_sort(p[4], p[7]) ;
90 pix_sort(p[3], p[6]) ; pix_sort(p[1], p[4]) ; pix_sort(p[2], p[5]) ;
91 pix_sort(p[4], p[7]) ; pix_sort(p[4], p[2]) ; pix_sort(p[6], p[4]) ;
92 pix_sort(p[4], p[2]) ;
return (p[4]) ;
95template<
class real_type,
class Functor>
96DG_DEVICE real_type median(
unsigned i,
const int* row_offsets,
97 const int* column_indices, Functor f,
const real_type* x )
99 int n = row_offsets[i+1]-row_offsets[i];
103 int k = row_offsets[i];
104 for(
int l = 0; l<3; l++)
105 p[l] = f(x[column_indices[k+l]]);
106 return detail::median3( p);
111 int k = row_offsets[i];
112 for(
int l = 0; l<5; l++)
113 p[l] = f(x[column_indices[k+l]]);
114 return detail::median5(p);
119 int k = row_offsets[i];
120 for(
int l = 0; l<9; l++)
121 p[l] = f(x[column_indices[k+l]]);
122 return detail::median9( p);
125 int less, greater, equal;
126 real_type min, max, guess, maxltguess, mingtguess;
128 min = max = f(x[column_indices[row_offsets[i]]]) ;
129 for (
int k=row_offsets[i]+1 ; k<row_offsets[i+1] ; k++) {
130 if (f(x[column_indices[k]])<min) min=f(x[column_indices[k]]);
131 if (f(x[column_indices[k]])>max) max=f(x[column_indices[k]]);
136 less = 0; greater = 0; equal = 0;
139 for (
int k=row_offsets[i]; k<row_offsets[i+1]; k++) {
140 if (f(x[column_indices[k]])<guess) {
142 if (f(x[column_indices[k]])>maxltguess)
143 maxltguess = f(x[column_indices[k]]) ;
144 }
else if (f(x[column_indices[k]])>guess) {
146 if (f(x[column_indices[k]])<mingtguess)
147 mingtguess = f(x[column_indices[k]]) ;
150 if (less <= (n+1)/2 && greater <= (n+1)/2) break ;
151 else if (less>greater) max = maxltguess ;
152 else min = mingtguess;
154 if (less >= (n+1)/2)
return maxltguess;
155 else if (less+equal >= (n+1)/2)
return guess;
156 else return mingtguess;
176 template<
class real_type>
179 const int* column_indices,
const real_type* values,
180 const real_type* x, real_type*
y)
184 y[i] = detail::median( i, row_offsets, column_indices, []
DG_DEVICE(
double x){
return x;},
x);
207template<
class real_type>
213 const int* column_indices,
const real_type* values,
214 const real_type* x, real_type*
y)
216 real_type median = detail::median( i, row_offsets, column_indices,
218 real_type amd = detail::median( i, row_offsets, column_indices,
219 [median]
DG_DEVICE(
double x){
return fabs(
x-median);},
x);
221 if( fabs(
x[i] - median) > m_alpha*amd)
238 template<
class real_type>
241 const int* column_indices,
const real_type* values,
242 const real_type* x, real_type*
y)
245 int n = row_offsets[i+1]-row_offsets[i];
246 for(
int k=row_offsets[i]; k<row_offsets[i+1]; k++)
247 y[i] +=
x[column_indices[k]]/(real_type)n;
256 template<
class real_type>
259 const int* column_indices,
const real_type* values,
260 const real_type* x, real_type*
y)
263 for(
int k=row_offsets[i]; k<row_offsets[i+1]; k++)
264 y[i] +=
x[column_indices[k]]*values[k];
287template<
class real_type>
294 const int* column_indices,
const real_type* values,
295 const real_type* x, real_type*
y)
297 int k = row_offsets[i];
298 int n = (row_offsets[i+1] - row_offsets[i])/3;
301 for(
int u=0; u<n; u++)
302 y[column_indices[k+1*n+u]] =
x[column_indices[k+1*n + u]];
304 real_type uM = 0, u0 = 0, uP = 0, u1 = 0;
305 for(
int u=0; u<n; u++)
307 uM +=
x[column_indices[k+0*n + u]]*fabs(values[k+u]);
308 u0 +=
x[column_indices[k+1*n + u]]*fabs(values[k+u]);
309 u1 +=
x[column_indices[k+1*n + u]]*values[k+n+u];
310 uP +=
x[column_indices[k+2*n + u]]*fabs(values[k+u]);
318 if( fabs( u1) <= m_mod)
320 real_type m = minmod( u1, uP - u0, u0 - uM);
324 for(
int u=0; u<n; u++)
325 y[column_indices[k+1*n+u]] =
326 values[k+2*n]>0 ? u0 - m*values[k+2*n+u] : u0 + m*values[k+2*n+u];
A square nxn matrix.
Definition operator.h:31
A matrix type for fast interpolations/projections.
@ backward
backward derivative (cell to the left and current cell)
Definition enums.h:99
@ forward
forward derivative (cell to the right and current cell)
Definition enums.h:98
dg::SquareMatrix< std::invoke_result_t< UnaryOp, unsigned > > modal_filter(UnaryOp op, unsigned n)
Create a modal filter block .
Definition filter.h:40
#define DG_DEVICE
Expands to __host__ __device__ if compiled with nvcc else is empty.
Definition dg_doc.h:378
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Average filter that computes the average of all points in the stencil
Definition filter.h:237
DG_DEVICE void operator()(unsigned i, const int *row_offsets, const int *column_indices, const real_type *values, const real_type *x, real_type *y)
Definition filter.h:240
Switching median filter.
Definition filter.h:209
DG_DEVICE void operator()(unsigned i, const int *row_offsets, const int *column_indices, const real_type *values, const real_type *x, real_type *y)
Definition filter.h:212
CSRSWMFilter(real_type alpha)
Definition filter.h:210
Generalized slope limiter for dG methods.
Definition filter.h:289
CSRSlopeLimiter(real_type mod=(real_type) 0)
Definition filter.h:290
DG_DEVICE void operator()(unsigned i, const int *row_offsets, const int *column_indices, const real_type *values, const real_type *x, real_type *y)
Definition filter.h:293
Test filter that computes the symv csr matrix-vector product if used.
Definition filter.h:255
DG_DEVICE void operator()(unsigned i, const int *row_offsets, const int *column_indices, const real_type *values, const real_type *x, real_type *y)
Definition filter.h:258
static std::vector< real_type > backward(unsigned n)
Return backward DLT trafo matrix.
Definition dlt.h:139
static std::vector< real_type > forward(unsigned n)
Return forward DLT trafo matrix.
Definition dlt.h:195
Definition functors.h:256