Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Chameleon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
cb656faf
Commit
cb656faf
authored
Feb 04, 2015
by
PRUVOST Florent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve the message about the runtime choice option
parent
4325f6b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
CMakeLists.txt
CMakeLists.txt
+9
-3
No files found.
CMakeLists.txt
View file @
cb656faf
...
...
@@ -98,15 +98,21 @@ option(CHAMELEON_SCHED_STARPU
option
(
CHAMELEON_SCHED_QUARK
"Enable Quark scheduler as the default runtime
(Conflict with other CHAMELEON_SCHED_* options)"
OFF
)
message
(
"--
${
BoldGreen
}
CHAMELEON_SCHED_STARPU is set to ON: CHAMELEON uses StarPU runtime
${
ColourReset
}
"
)
message
(
"--
${
BoldGreen
}
To use CHAMELEON with QUARK runtime: set CHAMELEON_SCHED_QUARK"
"to ON (CHAMELEON_SCHED_STARPU will be disabled)
${
ColourReset
}
"
)
if
(
CHAMELEON_SCHED_QUARK
)
set
(
CHAMELEON_SCHED_STARPU OFF
)
elseif
(
CHAMELEON_SCHED_STARPU
)
set
(
CHAMELEON_SCHED_QUARK OFF
)
endif
()
if
(
CHAMELEON_SCHED_STARPU
)
message
(
"--
${
BoldGreen
}
CHAMELEON_SCHED_STARPU is set to ON: CHAMELEON uses StarPU runtime
${
ColourReset
}
"
)
message
(
"--
${
BoldGreen
}
To use CHAMELEON with QUARK runtime: set CHAMELEON_SCHED_QUARK"
"to ON (CHAMELEON_SCHED_STARPU will be disabled)
${
ColourReset
}
"
)
elseif
(
CHAMELEON_SCHED_QUARK
)
message
(
"--
${
BoldGreen
}
CHAMELEON_SCHED_QUARK is set to ON: CHAMELEON uses QUARK runtime
${
ColourReset
}
"
)
message
(
"--
${
BoldGreen
}
To use CHAMELEON with StarPU runtime: set CHAMELEON_SCHED_STARPU"
"to ON (CHAMELEON_SCHED_QUARK will be disabled)
${
ColourReset
}
"
)
endif
()
# Check that one, and only one, SCHED option is set to ON
# count number of runtime sets to ON
...
...
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