Skip to content

Commit

Permalink
Merge branch 'transposed-conflict-fix' into 'master'
Browse files Browse the repository at this point in the history
use blas::transposed

See merge request npneq/inq!1108
  • Loading branch information
correaa committed Jul 11, 2024
2 parents afee607 + a76e6ac commit 45cdefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hamiltonian/projector_all.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ class projector_all {
}

for(auto iproj = 0; iproj < nprojs_; iproj++){
blas::real_doubled(sphere_phi_all[iproj]) = blas::gemm(1.0, transposed(matrices_[iproj]), blas::real_doubled(projections_all[iproj]));
blas::real_doubled(sphere_phi_all[iproj]) = blas::gemm(1.0, blas::transposed(matrices_[iproj]), blas::real_doubled(projections_all[iproj]));
}

gpu::array<vector3<double, covariant>, 1> force(nprojs_, {0.0, 0.0, 0.0});
Expand Down

0 comments on commit 45cdefb

Please sign in to comment.