Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
56c071cc
Commit
56c071cc
authored
Jun 21, 2013
by
peastman
Browse files
Fixed threading problems in CPU based PME
parent
823ad165
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
platforms/cuda/src/CpuPme.cpp
platforms/cuda/src/CpuPme.cpp
+15
-16
platforms/cuda/src/CpuPme.h
platforms/cuda/src/CpuPme.h
+1
-0
No files found.
platforms/cuda/src/CpuPme.cpp
View file @
56c071cc
...
...
@@ -443,23 +443,25 @@ CpuPme::CpuPme(int gridx, int gridy, int gridz, int numParticles, double alpha)
}
CpuPme
::~
CpuPme
()
{
if
(
complexGrid
!=
NULL
)
fftwf_free
(
complexGrid
);
if
(
hasCreatedPlan
)
{
fftwf_destroy_plan
(
forwardFFT
);
fftwf_destroy_plan
(
backwardFFT
);
}
isDeleted
=
true
;
pthread_mutex_lock
(
&
lock
);
pthread_cond_broadcast
(
&
startCondition
);
pthread_cond_broadcast
(
&
mainThreadStartCondition
);
pthread_mutex_unlock
(
&
lock
);
for
(
int
i
=
0
;
i
<
(
int
)
thread
.
size
();
i
++
)
pthread_join
(
thread
[
i
],
NULL
);
pthread_join
(
mainThread
,
NULL
);
pthread_mutex_destroy
(
&
lock
);
pthread_cond_destroy
(
&
startCondition
);
pthread_cond_destroy
(
&
endCondition
);
pthread_cond_destroy
(
&
mainThreadStartCondition
);
pthread_cond_destroy
(
&
mainThreadEndCondition
);
if
(
complexGrid
!=
NULL
)
fftwf_free
(
complexGrid
);
if
(
hasCreatedPlan
)
{
fftwf_destroy_plan
(
forwardFFT
);
fftwf_destroy_plan
(
backwardFFT
);
}
}
#include <sys/time.h>
...
...
@@ -471,15 +473,14 @@ void CpuPme::runThread(int index) {
if
(
index
==
-
1
)
{
// This is the main thread that coordinates all the other ones.
pthread_mutex_lock
(
&
lock
);
while
(
true
)
{
// Wait for the signal to start.
pthread_mutex_lock
(
&
lock
);
pthread_cond_wait
(
&
mainThreadStartCondition
,
&
lock
);
pthread_mutex_unlock
(
&
lock
);
if
(
isDeleted
)
re
turn
;
isFinished
=
false
;
b
re
ak
;
posq
=
io
->
getPosq
()
;
struct
timeval
t1
,
t2
,
t3
,
t4
,
t5
,
t6
,
t7
;
gettimeofday
(
&
t1
,
NULL
);
advanceThreads
();
// Signal threads to perform charge spreading.
...
...
@@ -498,10 +499,9 @@ void CpuPme::runThread(int index) {
isFinished
=
true
;
gettimeofday
(
&
t7
,
NULL
);
printf
(
"time %g %g %g %g %g %g
\n
"
,
diff
(
t1
,
t2
),
diff
(
t2
,
t3
),
diff
(
t3
,
t4
),
diff
(
t4
,
t5
),
diff
(
t5
,
t6
),
diff
(
t6
,
t7
));
pthread_mutex_lock
(
&
lock
);
pthread_cond_signal
(
&
mainThreadEndCondition
);
pthread_mutex_unlock
(
&
lock
);
}
pthread_mutex_unlock
(
&
lock
);
}
else
{
// This is a worker thread.
...
...
@@ -516,7 +516,7 @@ void CpuPme::runThread(int index) {
while
(
true
)
{
threadWait
();
if
(
isDeleted
)
re
turn
;
b
re
ak
;
spreadCharge
(
particleStart
,
particleEnd
,
posq
,
threadData
[
index
]
->
tempGrid
,
gridx
,
gridy
,
gridz
,
numParticles
,
periodicBoxSize
);
threadWait
();
int
numGrids
=
threadData
.
size
();
...
...
@@ -550,21 +550,20 @@ void CpuPme::threadWait() {
}
void
CpuPme
::
advanceThreads
()
{
pthread_mutex_lock
(
&
lock
);
waitCount
=
0
;
pthread_cond_broadcast
(
&
startCondition
);
while
(
waitCount
<
numThreads
)
{
pthread_cond_wait
(
&
endCondition
,
&
lock
);
}
pthread_mutex_unlock
(
&
lock
);
}
void
CpuPme
::
beginComputation
(
IO
&
io
,
Vec3
periodicBoxSize
,
bool
includeEnergy
)
{
posq
=
io
.
getPosq
()
;
this
->
io
=
&
io
;
this
->
periodicBoxSize
=
periodicBoxSize
;
this
->
includeEnergy
=
includeEnergy
;
energy
=
0.0
;
pthread_mutex_lock
(
&
lock
);
isFinished
=
false
;
pthread_cond_signal
(
&
mainThreadStartCondition
);
pthread_mutex_unlock
(
&
lock
);
}
...
...
platforms/cuda/src/CpuPme.h
View file @
56c071cc
...
...
@@ -75,6 +75,7 @@ private:
std
::
vector
<
pthread_t
>
thread
;
std
::
vector
<
ThreadData
*>
threadData
;
// The following variables are used to store information about the calculation currently being performed.
IO
*
io
;
float
energy
;
float
*
posq
;
Vec3
periodicBoxSize
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment