Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KOS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
Martin Karsten
KOS
Commits
f1c91e06
Commit
f1c91e06
authored
6 years ago
by
Martin Karsten
Browse files
Options
Downloads
Patches
Plain Diff
- add TESTING_WAKE_CLUSTER option
parent
688f40f9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/runtime/BaseProcessor.cc
+3
-1
3 additions, 1 deletion
src/runtime/BaseProcessor.cc
src/testoptions.h
+1
-0
1 addition, 0 deletions
src/testoptions.h
with
4 additions
and
1 deletion
src/runtime/BaseProcessor.cc
+
3
−
1
View file @
f1c91e06
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#include
"runtime/Cluster.h"
#include
"runtime/Cluster.h"
#include
"runtime/RuntimeImpl.h"
#include
"runtime/RuntimeImpl.h"
// from background enqueue -> find idle "real" processor to run
// from background
& staging
enqueue -> find idle "real" processor to run
void
VirtualProcessor
::
wakeUp
()
{
void
VirtualProcessor
::
wakeUp
()
{
BaseProcessor
*
idleProc
=
cluster
.
findIdleProcessorHard
();
BaseProcessor
*
idleProc
=
cluster
.
findIdleProcessorHard
();
GENASSERT1
(
idleProc
!=
this
,
FmtHex
(
this
));
GENASSERT1
(
idleProc
!=
this
,
FmtHex
(
this
));
...
@@ -26,8 +26,10 @@ void VirtualProcessor::wakeUp() {
...
@@ -26,8 +26,10 @@ void VirtualProcessor::wakeUp() {
// any other enqueue -> wake idle processor, but don't try too hard
// any other enqueue -> wake idle processor, but don't try too hard
void
VirtualProcessor
::
wakeCluster
()
{
void
VirtualProcessor
::
wakeCluster
()
{
#if TESTING_WAKE_CLUSTER
BaseProcessor
*
idleProc
=
cluster
.
findIdleProcessorSoft
();
BaseProcessor
*
idleProc
=
cluster
.
findIdleProcessorSoft
();
if
(
idleProc
&&
idleProc
!=
this
)
idleProc
->
wakeUp
();
if
(
idleProc
&&
idleProc
!=
this
)
idleProc
->
wakeUp
();
#endif
}
}
BaseProcessor
::
BaseProcessor
(
Cluster
&
c
)
:
VirtualProcessor
(
c
,
"Processor"
),
terminate
(
false
),
idleStack
(
nullptr
)
{
BaseProcessor
::
BaseProcessor
(
Cluster
&
c
)
:
VirtualProcessor
(
c
,
"Processor"
),
terminate
(
false
),
idleStack
(
nullptr
)
{
...
...
This diff is collapsed.
Click to expand it.
src/testoptions.h
+
1
−
0
View file @
f1c91e06
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
//#define TESTING_MUTEX_FIFO 1 // use fifo/baton mutex
//#define TESTING_MUTEX_FIFO 1 // use fifo/baton mutex
//#define TESTING_MUTEX_SPIN 1 // spin before block in non-fifo mutex
//#define TESTING_MUTEX_SPIN 1 // spin before block in non-fifo mutex
//#define TESTING_PLACEMENT_RR 1 // RR placement, instead of load-based
//#define TESTING_PLACEMENT_RR 1 // RR placement, instead of load-based
#define TESTING_WAKE_CLUSTER 1 // try waking idle processor on cluster backlog
#define TESTING_WORK_STEALING 1 // enable work stealing (default transient)
#define TESTING_WORK_STEALING 1 // enable work stealing (default transient)
#define TESTING_WORK_STEALING_STICKY 5 // sticky work stealing load threshold
#define TESTING_WORK_STEALING_STICKY 5 // sticky work stealing load threshold
...
...
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