From cb552a11d9cce15d4874199edf523b39efff1852 Mon Sep 17 00:00:00 2001 From: tpadioleau Date: Sun, 8 Sep 2024 15:33:36 +0000 Subject: [PATCH] Update to match 97f1ea87b792c77755eee59db9174325c0079e73 by push 2993 --- bsplines__non__uniform_8hpp_source.html | 2 +- fft_8hpp_source.html | 2 +- greville__interpolation__points_8hpp_source.html | 2 +- spline__builder_8hpp_source.html | 4 ++-- splines__linear__problem__2x2__blocks_8hpp_source.html | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bsplines__non__uniform_8hpp_source.html b/bsplines__non__uniform_8hpp_source.html index 96a8627ba..0c9951db0 100644 --- a/bsplines__non__uniform_8hpp_source.html +++ b/bsplines__non__uniform_8hpp_source.html @@ -775,7 +775,7 @@
653
654 int r = degree();
655 for (int k = 1; k < int(n + 1); ++k) {
-
656 for (std::size_t i = 0; i < derivs.extent(0); i++) {
+
656 for (std::size_t i = 0; i < derivs.extent(0); ++i) {
657 derivs(i, k) *= r;
658 }
659 r *= degree() - k;
diff --git a/fft_8hpp_source.html b/fft_8hpp_source.html index d2b7a333d..42998b5f3 100644 --- a/fft_8hpp_source.html +++ b/fft_8hpp_source.html @@ -536,7 +536,7 @@
414 std::array<int, sizeof...(DDimX)> n = {static_cast<int>(ddc::get<DDimX>(mesh.extents()))...};
415 int idist = 1;
416 int odist = 1;
-
417 for (std::size_t i = 0; i < sizeof...(DDimX); i++) {
+
417 for (std::size_t i = 0; i < sizeof...(DDimX); ++i) {
418 idist = transform_type_v<Tin, Tout> == TransformType::C2R && i == sizeof...(DDimX) - 1
419 ? idist * (n[i] / 2 + 1)
420 : idist * n[i];
diff --git a/greville__interpolation__points_8hpp_source.html b/greville__interpolation__points_8hpp_source.html index 4e5fd14db..0c08c3f71 100644 --- a/greville__interpolation__points_8hpp_source.html +++ b/greville__interpolation__points_8hpp_source.html @@ -219,7 +219,7 @@
97 while (greville_points[npoints] < ddc::discrete_space<BSplines>().rmin()) {
98 temp_knots[npoints]
99 = greville_points[npoints] + ddc::discrete_space<BSplines>().length();
-
100 npoints++;
+
100 ++npoints;
101 }
102 // Shift the points
103 for (std::size_t i = 0; i < ddc::discrete_space<BSplines>().nbasis() - npoints; ++i) {
diff --git a/spline__builder_8hpp_source.html b/spline__builder_8hpp_source.html index 584332289..05d976b89 100644 --- a/spline__builder_8hpp_source.html +++ b/spline__builder_8hpp_source.html @@ -1006,7 +1006,7 @@
884 exec_space(),
885 batch_domain(),
886 KOKKOS_LAMBDA(typename batch_domain_type::discrete_element_type const j) {
-
887 for (std::size_t i = 0; i < nbasis_proxy; i++) {
+
887 for (std::size_t i = 0; i < nbasis_proxy; ++i) {
888 spline_tr(ddc::DiscreteElement<bsplines_type>(i), j)
889 = spline(ddc::DiscreteElement<bsplines_type>(i + offset_proxy), j);
890 }
@@ -1024,7 +1024,7 @@
902 exec_space(),
903 batch_domain(),
904 KOKKOS_LAMBDA(typename batch_domain_type::discrete_element_type const j) {
-
905 for (std::size_t i = 0; i < nbasis_proxy; i++) {
+
905 for (std::size_t i = 0; i < nbasis_proxy; ++i) {
906 spline(ddc::DiscreteElement<bsplines_type>(i + offset_proxy), j)
907 = spline_tr(ddc::DiscreteElement<bsplines_type>(i), j);
908 }
diff --git a/splines__linear__problem__2x2__blocks_8hpp_source.html b/splines__linear__problem__2x2__blocks_8hpp_source.html index 5f636bba6..7cbc10080 100644 --- a/splines__linear__problem__2x2__blocks_8hpp_source.html +++ b/splines__linear__problem__2x2__blocks_8hpp_source.html @@ -332,8 +332,8 @@
210 "dense2coo",
211 Kokkos::RangePolicy(ExecSpace(), 0, 1),
212 KOKKOS_LAMBDA(const int) {
-
213 for (int i = 0; i < dense_matrix.extent(0); i++) {
-
214 for (int j = 0; j < dense_matrix.extent(1); j++) {
+
213 for (int i = 0; i < dense_matrix.extent(0); ++i) {
+
214 for (int j = 0; j < dense_matrix.extent(1); ++j) {
215 double const aij = dense_matrix(i, j);
216 if (Kokkos::abs(aij) >= tol) {
217 rows_idx(n_nonzeros.d_view()) = i;