Explorar o código

really make starpu_bcsr_filter_canonical_block_child_ops return what it should

Samuel Thibault %!s(int64=6) %!d(string=hai) anos
pai
achega
371e2426f6
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      include/starpu_data_filters.h
  2. 1 1
      src/datawizard/interfaces/bcsr_filters.c

+ 1 - 1
include/starpu_data_filters.h

@@ -322,7 +322,7 @@ void starpu_bcsr_filter_canonical_block(void *father_interface, void *child_inte
 /**
    Return the child_ops of the partition obtained with starpu_bcsr_filter_canonical_block().
 */
-void starpu_bcsr_filter_canonical_block_child_ops(struct starpu_data_filter *f, unsigned child);
+struct starpu_data_interface_ops *starpu_bcsr_filter_canonical_block_child_ops(struct starpu_data_filter *f, unsigned child);
 
 /** @} */
 

+ 1 - 1
src/datawizard/interfaces/bcsr_filters.c

@@ -51,7 +51,7 @@ void starpu_bcsr_filter_canonical_block(void *father_interface, void *child_inte
 	}
 }
 
-void starpu_bcsr_filter_canonical_block_child_ops(STARPU_ATTRIBUTE_UNUSED struct starpu_data_filter *f, unsigned child)
+struct starpu_data_interface_ops *starpu_bcsr_filter_canonical_block_child_ops(STARPU_ATTRIBUTE_UNUSED struct starpu_data_filter *f, unsigned child)
 {
 	return &starpu_interface_matrix_ops;
 }