Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d8f5289d authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Merge branch 'starpu_gemm_commute' into 'master'

add STARPU_COMMUTE to starpu gemm task

See merge request !308
parents f0a895e5 ef095c5f
No related branches found
No related tags found
1 merge request!308add STARPU_COMMUTE to starpu gemm task
...@@ -142,7 +142,7 @@ void INSERT_TASK_zgemm( const RUNTIME_option_t *options, ...@@ -142,7 +142,7 @@ void INSERT_TASK_zgemm( const RUNTIME_option_t *options,
callback = options->profiling ? cl_zgemm_callback : NULL; callback = options->profiling ? cl_zgemm_callback : NULL;
/* Reduce the C access if needed */ /* Reduce the C access if needed */
accessC = ( beta == 0. ) ? STARPU_W : STARPU_RW; accessC = ( beta == 0. ) ? STARPU_W : (STARPU_RW | ((beta == 1.) ? STARPU_COMMUTE : 0));
#if defined(CHAMELEON_KERNELS_TRACE) #if defined(CHAMELEON_KERNELS_TRACE)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment