Skip to content

Commit

Permalink
Merge pull request #349 from merzlab/337-unrestricted-calculations-gi…
Browse files Browse the repository at this point in the history
…ve-wrong-results-with-intel-compiler

Fix for issue 337
  • Loading branch information
agoetz committed Mar 21, 2024
2 parents 45db608 + 3d195d2 commit ef4d027
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cuda/gpu.cu
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,8 @@ extern "C" void gpu_upload_method_(int* quick_method, bool* is_oshell, double* h
gpu -> gpu_sim.hyb_coeff = *hyb_coeff;
}

gpu -> gpu_sim.is_oshell = *is_oshell;
bool interpreted_is_oshell = *is_oshell != 0;
gpu -> gpu_sim.is_oshell = interpreted_is_oshell;
}

#ifdef CEW
Expand Down

0 comments on commit ef4d027

Please sign in to comment.