Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lammps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
multiscale
lammps
Commits
ac7aeb68
Commit
ac7aeb68
authored
6 years ago
by
Richard Berger
Browse files
Options
Downloads
Patches
Plain Diff
Add extra check for OpenCL timers
Fixes issue #1034 by preventing time() to access non-existent OpenCL events
parent
e8831123
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/gpu/geryon/ocl_timer.h
+29
-11
29 additions, 11 deletions
lib/gpu/geryon/ocl_timer.h
with
29 additions
and
11 deletions
lib/gpu/geryon/ocl_timer.h
+
29
−
11
View file @
ac7aeb68
...
@@ -38,8 +38,8 @@ namespace ucl_opencl {
...
@@ -38,8 +38,8 @@ namespace ucl_opencl {
/// Class for timing OpenCL events
/// Class for timing OpenCL events
class
UCL_Timer
{
class
UCL_Timer
{
public:
public:
inline
UCL_Timer
()
:
_total_time
(
0.0
f
),
_initialized
(
false
)
{
}
inline
UCL_Timer
()
:
_total_time
(
0.0
f
),
_initialized
(
false
)
,
has_measured_time
(
false
)
{
}
inline
UCL_Timer
(
UCL_Device
&
dev
)
:
_total_time
(
0.0
f
),
_initialized
(
false
)
inline
UCL_Timer
(
UCL_Device
&
dev
)
:
_total_time
(
0.0
f
),
_initialized
(
false
)
,
has_measured_time
(
false
)
{
init
(
dev
);
}
{
init
(
dev
);
}
inline
~
UCL_Timer
()
{
clear
();
}
inline
~
UCL_Timer
()
{
clear
();
}
...
@@ -52,6 +52,7 @@ class UCL_Timer {
...
@@ -52,6 +52,7 @@ class UCL_Timer {
_initialized
=
false
;
_initialized
=
false
;
_total_time
=
0.0
;
_total_time
=
0.0
;
}
}
has_measured_time
=
false
;
}
}
/// Initialize default command queue for timing
/// Initialize default command queue for timing
...
@@ -64,25 +65,39 @@ class UCL_Timer {
...
@@ -64,25 +65,39 @@ class UCL_Timer {
_cq
=
cq
;
_cq
=
cq
;
clRetainCommandQueue
(
_cq
);
clRetainCommandQueue
(
_cq
);
_initialized
=
true
;
_initialized
=
true
;
has_measured_time
=
false
;
}
}
/// Start timing on default command queue
/// Start timing on default command queue
inline
void
start
()
{
UCL_OCL_MARKER
(
_cq
,
&
start_event
);
}
inline
void
start
()
{
UCL_OCL_MARKER
(
_cq
,
&
start_event
);
has_measured_time
=
false
;
}
/// Stop timing on default command queue
/// Stop timing on default command queue
inline
void
stop
()
{
UCL_OCL_MARKER
(
_cq
,
&
stop_event
);
}
inline
void
stop
()
{
UCL_OCL_MARKER
(
_cq
,
&
stop_event
);
has_measured_time
=
true
;
}
/// Block until the start event has been reached on device
/// Block until the start event has been reached on device
inline
void
sync_start
()
inline
void
sync_start
()
{
{
CL_SAFE_CALL
(
clWaitForEvents
(
1
,
&
start_event
));
}
CL_SAFE_CALL
(
clWaitForEvents
(
1
,
&
start_event
));
has_measured_time
=
false
;
}
/// Block until the stop event has been reached on device
/// Block until the stop event has been reached on device
inline
void
sync_stop
()
inline
void
sync_stop
()
{
{
CL_SAFE_CALL
(
clWaitForEvents
(
1
,
&
stop_event
));
}
CL_SAFE_CALL
(
clWaitForEvents
(
1
,
&
stop_event
));
has_measured_time
=
true
;
}
/// Set the time elapsed to zero (not the total_time)
/// Set the time elapsed to zero (not the total_time)
inline
void
zero
()
inline
void
zero
()
{
{
UCL_OCL_MARKER
(
_cq
,
&
start_event
);
UCL_OCL_MARKER
(
_cq
,
&
stop_event
);
}
has_measured_time
=
false
;
UCL_OCL_MARKER
(
_cq
,
&
start_event
);
UCL_OCL_MARKER
(
_cq
,
&
stop_event
);
}
/// Set the total time to zero
/// Set the total time to zero
inline
void
zero_total
()
{
_total_time
=
0.0
;
}
inline
void
zero_total
()
{
_total_time
=
0.0
;
}
...
@@ -97,6 +112,7 @@ class UCL_Timer {
...
@@ -97,6 +112,7 @@ class UCL_Timer {
/// Return the time (ms) of last start to stop - Forces synchronization
/// Return the time (ms) of last start to stop - Forces synchronization
inline
double
time
()
{
inline
double
time
()
{
if
(
!
has_measured_time
)
return
0.0
;
cl_ulong
tstart
,
tend
;
cl_ulong
tstart
,
tend
;
CL_SAFE_CALL
(
clWaitForEvents
(
1
,
&
stop_event
));
CL_SAFE_CALL
(
clWaitForEvents
(
1
,
&
stop_event
));
CL_SAFE_CALL
(
clGetEventProfilingInfo
(
stop_event
,
CL_SAFE_CALL
(
clGetEventProfilingInfo
(
stop_event
,
...
@@ -107,6 +123,7 @@ class UCL_Timer {
...
@@ -107,6 +123,7 @@ class UCL_Timer {
sizeof
(
cl_ulong
),
&
tstart
,
NULL
));
sizeof
(
cl_ulong
),
&
tstart
,
NULL
));
clReleaseEvent
(
start_event
);
clReleaseEvent
(
start_event
);
clReleaseEvent
(
stop_event
);
clReleaseEvent
(
stop_event
);
has_measured_time
=
false
;
return
(
tend
-
tstart
)
*
t_factor
;
return
(
tend
-
tstart
)
*
t_factor
;
}
}
...
@@ -123,8 +140,9 @@ class UCL_Timer {
...
@@ -123,8 +140,9 @@ class UCL_Timer {
cl_event
start_event
,
stop_event
;
cl_event
start_event
,
stop_event
;
cl_command_queue
_cq
;
cl_command_queue
_cq
;
double
_total_time
;
double
_total_time
;
bool
_initialized
;
double
t_factor
;
double
t_factor
;
bool
_initialized
;
bool
has_measured_time
;
};
};
}
// namespace
}
// namespace
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment