Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/source_pw/module_pwdft/op_pw_exx_pot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void get_exx_potential(const K_Vectors* kv,
const CoulombParam& coulomb_param_in)
{
using setmem_real_cpu_op = base_device::memory::set_memory_op<Real, base_device::DEVICE_CPU>;
using syncmem_real_c2d_op = base_device::memory::synchronize_memory_op<Real, base_device::DEVICE_CPU, Device>;
using syncmem_real_c2d_op = base_device::memory::synchronize_memory_op<Real, Device, base_device::DEVICE_CPU>;
Comment thread
Flying-dragon-boxing marked this conversation as resolved.

Real nqs_half1 = 0.5 * kv->nmp[0];
Real nqs_half2 = 0.5 * kv->nmp[1];
Expand Down Expand Up @@ -238,7 +238,7 @@ void get_exx_stress_potential(const K_Vectors* kv,
const CoulombParam& coulomb_param_in)
{
using setmem_real_cpu_op = base_device::memory::set_memory_op<Real, base_device::DEVICE_CPU>;
using syncmem_real_c2d_op = base_device::memory::synchronize_memory_op<Real, base_device::DEVICE_CPU, Device>;
using syncmem_real_c2d_op = base_device::memory::synchronize_memory_op<Real, Device, base_device::DEVICE_CPU>;

Real nqs_half1 = 0.5 * kv->nmp[0];
Real nqs_half2 = 0.5 * kv->nmp[1];
Expand Down
4 changes: 2 additions & 2 deletions tests/01_PW/CASES_GPU.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ scf_out_elf
095_PW_NPT
#096_PW_NVT
#097_PW_PBE0
#097_PW_PBE0_AFM
#097_PW_PBE0_FM
097_PW_PBE0_AFM
097_PW_PBE0_FM
099_PW_15_SO_avg
#100_PW_DJ_SO
#101_PW_W90
Expand Down
Loading