Commit cccfeb63 authored by gbalduzz's avatar gbalduzz
Browse files

Run clang-format.

parent 15c7e2d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -518,7 +518,7 @@ std::size_t Matrix<ScalarType, device_name>::deviceFingerprint() const {
    return 0;
}

}  // linalg
}  // dca
}  // namespace linalg
}  // namespace dca

#endif  // DCA_LINALG_MATRIX_HPP
+1 −2
Original line number Diff line number Diff line
@@ -132,8 +132,7 @@ inline void copyRow(const Matrix<Scalar, device_name>& mat_x, int ix,
//                0 <= i_y[i] < mat_y.nrRows() for 0 <= i < i_x.size().
template <typename Scalar, class Vec>
inline void copyRows(const Matrix<Scalar, CPU>& mat_x, const Vec& i_x, Matrix<Scalar, CPU>& mat_y,
                     const Vec& i_y, int /*thread_id*/ = 0,
                     int /*stream_id*/ = 0) {
                     const Vec& i_y, int /*thread_id*/ = 0, int /*stream_id*/ = 0) {
  assert(i_x.size() <= i_y.size());
  assert(mat_x.nrCols() == mat_y.nrCols());

+3 −3
Original line number Diff line number Diff line
@@ -43,8 +43,8 @@ inline void syncStream(int thread_id, int stream_id) {
  getStreamContainer().sync(thread_id, stream_id);
}

}  // util
}  // linalg
}  // dca
}  // namespace util
}  // namespace linalg
}  // namespace dca

#endif  // DCA_LINALG_UTIL_STREAM_FUNCTIONS_HPP
+1 −2
Original line number Diff line number Diff line
@@ -275,7 +275,6 @@ public:
    return std::array<double, 3>{alpha_dd_pos_, alpha_dd_neg_, alpha_ndd_};
  }


  bool adjustAlphaDd() const {
    return adjust_alpha_dd_;
  }
+0 −1
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@ namespace solver {
namespace ctint {
// dca::phys::solver::ctint::


template <typename Real>
__global__ void g0InterpolationTestKernel(Real tau, const int lindex,
                                          DeviceInterpolationData<Real> g0, Real* result) {
+3 −3

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

Loading