getTimeStamp() couldn't get linked

This commit is contained in:
Maximilian Gaul 2021-11-11 08:03:56 +01:00
parent b54842f764
commit 3428974730
2 changed files with 5 additions and 14 deletions

View File

@ -90,10 +90,9 @@ double computeForce(
fz[i] = 0.0; fz[i] = 0.0;
} }
double S = getTimeStamp(); // double S = getTimeStamp();
LIKWID_MARKER_START("force"); LIKWID_MARKER_START("force");
#pragma omp parallel for #pragma omp parallel for
for(int i = 0; i < Nlocal; i++) { for(int i = 0; i < Nlocal; i++) {
neighs = &neighbor->neighbors[i * neighbor->maxneighs]; neighs = &neighbor->neighbors[i * neighbor->maxneighs];
@ -106,15 +105,6 @@ double computeForce(
const int type_i = atom->type[i]; const int type_i = atom->type[i];
#endif #endif
/*
atom->x = (MD_FLOAT*) reallocate(atom->x, ALIGNMENT, atom->Nmax * sizeof(MD_FLOAT) * 3, nold * sizeof(MD_FLOAT) * 3);
atom->epsilon = allocate(ALIGNMENT, atom->ntypes * atom->ntypes * sizeof(MD_FLOAT));
atom->sigma6 = allocate(ALIGNMENT, atom->ntypes * atom->ntypes * sizeof(MD_FLOAT));
atom->cutforcesq = allocate(ALIGNMENT, atom->ntypes * atom->ntypes * sizeof(MD_FLOAT));
atom->cutneighsq = allocate(ALIGNMENT, atom->ntypes * atom->ntypes * sizeof(MD_FLOAT));
atom->type = (int *) reallocate(atom->type, ALIGNMENT, atom->Nmax * sizeof(int), nold * sizeof(int));
*/
Atom *c_atom; Atom *c_atom;
cudaMalloc((void**)&c_atom, sizeof(Atom)); cudaMalloc((void**)&c_atom, sizeof(Atom));
cudaMemcpy(c_atom, atom, sizeof(Atom), cudaMemcpyHostToDevice); cudaMemcpy(c_atom, atom, sizeof(Atom), cudaMemcpyHostToDevice);
@ -177,7 +167,8 @@ double computeForce(
} }
LIKWID_MARKER_STOP("force"); LIKWID_MARKER_STOP("force");
double E = getTimeStamp(); // double E = getTimeStamp();
return E-S; // return E-S;
return 0;
} }