Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Commits
6c30f7cf
Commit
6c30f7cf
authored
5 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Change some default parameters
parent
8e233047
No related branches found
No related tags found
1 merge request
!171
Change default parameters and add functionalities to the descriptor interface
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
control/context.c
+3
-3
3 additions, 3 deletions
control/context.c
runtime/starpu/control/runtime_descriptor.c
+2
-2
2 additions, 2 deletions
runtime/starpu/control/runtime_descriptor.c
with
5 additions
and
5 deletions
control/context.c
+
3
−
3
View file @
6c30f7cf
...
@@ -59,8 +59,8 @@ CHAM_context_t *chameleon_context_create()
...
@@ -59,8 +59,8 @@ CHAM_context_t *chameleon_context_create()
/* These initializations are just in case the user
/* These initializations are just in case the user
disables autotuning and does not set nb and ib */
disables autotuning and does not set nb and ib */
chamctxt
->
nb
=
128
;
chamctxt
->
nb
=
320
;
chamctxt
->
ib
=
32
;
chamctxt
->
ib
=
48
;
chamctxt
->
rhblock
=
4
;
chamctxt
->
rhblock
=
4
;
chamctxt
->
lookahead
=
3
;
chamctxt
->
lookahead
=
3
;
...
@@ -69,7 +69,7 @@ CHAM_context_t *chameleon_context_create()
...
@@ -69,7 +69,7 @@ CHAM_context_t *chameleon_context_create()
chamctxt
->
nthreads_per_worker
=
1
;
chamctxt
->
nthreads_per_worker
=
1
;
chamctxt
->
warnings_enabled
=
CHAMELEON_TRUE
;
chamctxt
->
warnings_enabled
=
CHAMELEON_TRUE
;
chamctxt
->
autotuning_enabled
=
CHAMELEON_
TRU
E
;
chamctxt
->
autotuning_enabled
=
CHAMELEON_
FALS
E
;
chamctxt
->
parallel_enabled
=
CHAMELEON_FALSE
;
chamctxt
->
parallel_enabled
=
CHAMELEON_FALSE
;
chamctxt
->
profiling_enabled
=
CHAMELEON_FALSE
;
chamctxt
->
profiling_enabled
=
CHAMELEON_FALSE
;
chamctxt
->
progress_enabled
=
CHAMELEON_FALSE
;
chamctxt
->
progress_enabled
=
CHAMELEON_FALSE
;
...
...
This diff is collapsed.
Click to expand it.
runtime/starpu/control/runtime_descriptor.c
+
2
−
2
View file @
6c30f7cf
...
@@ -30,8 +30,8 @@
...
@@ -30,8 +30,8 @@
/* Take 24 bits for the tile id, and 7 bits for descriptor id.
/* Take 24 bits for the tile id, and 7 bits for descriptor id.
These values can be changed through the call CHAMELEON_user_tag_size(int tag_width, int tag_sep) */
These values can be changed through the call CHAMELEON_user_tag_size(int tag_width, int tag_sep) */
#define TAG_WIDTH_MIN 20
#define TAG_WIDTH_MIN 20
static
int
tag_width
=
31
;
static
int
tag_width
=
64
;
static
int
tag_sep
=
2
0
;
static
int
tag_sep
=
5
0
;
static
int
_tag_mpi_initialized_
=
0
;
static
int
_tag_mpi_initialized_
=
0
;
static
inline
int
static
inline
int
...
...
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