aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/2d.cube.size6/interp-dxx.compute.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/common/2d.cube.size6/interp-dxx.compute.c')
-rw-r--r--src/GeneralizedPolynomial-Uniform/common/2d.cube.size6/interp-dxx.compute.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/common/2d.cube.size6/interp-dxx.compute.c b/src/GeneralizedPolynomial-Uniform/common/2d.cube.size6/interp-dxx.compute.c
new file mode 100644
index 0000000..cef82ff
--- /dev/null
+++ b/src/GeneralizedPolynomial-Uniform/common/2d.cube.size6/interp-dxx.compute.c
@@ -0,0 +1,37 @@
+result =
+ coeff_dxx_m2_m2*data_m2_m2
+ + coeff_dxx_m1_m2*data_m1_m2
+ + coeff_dxx_0_m2*data_0_m2
+ + coeff_dxx_p1_m2*data_p1_m2
+ + coeff_dxx_p2_m2*data_p2_m2
+ + coeff_dxx_p3_m2*data_p3_m2
+ + coeff_dxx_m2_m1*data_m2_m1
+ + coeff_dxx_m1_m1*data_m1_m1
+ + coeff_dxx_0_m1*data_0_m1
+ + coeff_dxx_p1_m1*data_p1_m1
+ + coeff_dxx_p2_m1*data_p2_m1
+ + coeff_dxx_p3_m1*data_p3_m1
+ + coeff_dxx_m2_0*data_m2_0
+ + coeff_dxx_m1_0*data_m1_0
+ + coeff_dxx_0_0*data_0_0
+ + coeff_dxx_p1_0*data_p1_0
+ + coeff_dxx_p2_0*data_p2_0
+ + coeff_dxx_p3_0*data_p3_0
+ + coeff_dxx_m2_p1*data_m2_p1
+ + coeff_dxx_m1_p1*data_m1_p1
+ + coeff_dxx_0_p1*data_0_p1
+ + coeff_dxx_p1_p1*data_p1_p1
+ + coeff_dxx_p2_p1*data_p2_p1
+ + coeff_dxx_p3_p1*data_p3_p1
+ + coeff_dxx_m2_p2*data_m2_p2
+ + coeff_dxx_m1_p2*data_m1_p2
+ + coeff_dxx_0_p2*data_0_p2
+ + coeff_dxx_p1_p2*data_p1_p2
+ + coeff_dxx_p2_p2*data_p2_p2
+ + coeff_dxx_p3_p2*data_p3_p2
+ + coeff_dxx_m2_p3*data_m2_p3
+ + coeff_dxx_m1_p3*data_m1_p3
+ + coeff_dxx_0_p3*data_0_p3
+ + coeff_dxx_p1_p3*data_p1_p3
+ + coeff_dxx_p2_p3*data_p2_p3
+ + coeff_dxx_p3_p3*data_p3_p3;