Skip to content

Commit

Permalink
indent pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpintarelli committed Jun 27, 2024
1 parent eb50b72 commit 45b835a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/sirius_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2614,7 +2614,7 @@ sirius_set_pw_coeffs(void* const* handler__, char const* label__, std::complex<d
mdarray<int, 2> gvec({3, *ngv__}, gvl__);

std::vector<std::complex<double>> v(gs.ctx().gvec().num_gvec(), 0);
#pragma omp parallel for schedule(static)
#pragma omp parallel for schedule(static)
for (int i = 0; i < *ngv__; i++) {
r3::vector<int> G(gvec(0, i), gvec(1, i), gvec(2, i));
// auto gvc = gs.ctx().unit_cell().reciprocal_lattice_vectors() * r3::vector<double>(G[0], G[1],
Expand Down Expand Up @@ -6481,7 +6481,7 @@ sirius_generate_rhoaug_q(void* const* handler__, int const* iat__, int const* nu
PROFILE_STOP("sirius_generate_rhoaug_q:gemm")

PROFILE_START("sirius_generate_rhoaug_q:sum")
#pragma omp parallel for
#pragma omp parallel for
for (int ig = 0; ig < num_gvec_loc; ig++) {
std::complex<double> z(0, 0);
for (int i = 0; i < sctx.unit_cell().atom_type(iat).num_atoms(); i++) {
Expand Down

0 comments on commit 45b835a

Please sign in to comment.