mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-03 20:54:09 +01:00
Fix memset
This commit is contained in:
parent
dd3db966b0
commit
a0e1843963
@ -5759,8 +5759,6 @@ qmckl_compute_ao_value_hpc_gaussian (const qmckl_context context,
|
|||||||
{
|
{
|
||||||
<<ao_value_constants>>
|
<<ao_value_constants>>
|
||||||
|
|
||||||
memset(ao_value, 0, ao_num*point_num*sizeof(double));
|
|
||||||
|
|
||||||
#ifdef HAVE_OPENMP
|
#ifdef HAVE_OPENMP
|
||||||
#pragma omp parallel if (point_num > 16)
|
#pragma omp parallel if (point_num > 16)
|
||||||
#endif
|
#endif
|
||||||
@ -5800,6 +5798,9 @@ qmckl_compute_ao_value_hpc_gaussian (const qmckl_context context,
|
|||||||
#pragma omp for
|
#pragma omp for
|
||||||
#endif
|
#endif
|
||||||
for (int64_t ipoint=0 ; ipoint < point_num ; ++ipoint) {
|
for (int64_t ipoint=0 ; ipoint < point_num ; ++ipoint) {
|
||||||
|
|
||||||
|
memset(&ao_value[ipoint*ao_num], 0, ao_num*sizeof(double));
|
||||||
|
|
||||||
const double e_coord[3] __attribute__((aligned(64))) =
|
const double e_coord[3] __attribute__((aligned(64))) =
|
||||||
{ coord[ipoint],
|
{ coord[ipoint],
|
||||||
coord[ipoint + point_num],
|
coord[ipoint + point_num],
|
||||||
@ -6537,8 +6538,6 @@ qmckl_compute_ao_vgl_hpc_gaussian (
|
|||||||
{
|
{
|
||||||
<<ao_value_constants>>
|
<<ao_value_constants>>
|
||||||
|
|
||||||
memset(ao_vgl, 0, 5*ao_num*point_num*sizeof(double));
|
|
||||||
|
|
||||||
#ifdef HAVE_OPENMP
|
#ifdef HAVE_OPENMP
|
||||||
#pragma omp parallel if (point_num > 16)
|
#pragma omp parallel if (point_num > 16)
|
||||||
#endif
|
#endif
|
||||||
@ -6590,6 +6589,9 @@ qmckl_compute_ao_vgl_hpc_gaussian (
|
|||||||
#pragma omp for
|
#pragma omp for
|
||||||
#endif
|
#endif
|
||||||
for (int64_t ipoint=0 ; ipoint < point_num ; ++ipoint) {
|
for (int64_t ipoint=0 ; ipoint < point_num ; ++ipoint) {
|
||||||
|
|
||||||
|
memset(&ao_vgl[ipoint*ao_num*5], 0, 5*ao_num*sizeof(double));
|
||||||
|
|
||||||
const double e_coord[3] __attribute__((aligned(64))) =
|
const double e_coord[3] __attribute__((aligned(64))) =
|
||||||
{ coord[ipoint],
|
{ coord[ipoint],
|
||||||
coord[ipoint + point_num],
|
coord[ipoint + point_num],
|
||||||
|
Loading…
Reference in New Issue
Block a user