source: soft/giet_vm/applications/rosenfeld/include/mca_matrix_dist.h @ 805

Last change on this file since 805 was 805, checked in by meunier, 8 years ago
  • Adding the parallel version of rosenfeld
File size: 390 bytes
Line 
1/* --------------------- */
2/* --- matrix_dist.h --- */
3/* --------------------- */
4
5#ifndef __MATRIX_DIST_H__
6#define __MATRIX_DIST_H__
7
8#ifdef __cplusplus
9#pragma message ("C++")
10extern "C" {
11#endif
12
13uint32 ** dist_ui32matrix(int i0, int i1, int j0, int j1);
14void free_dist_ui32matrix(uint32 ** m, int i0, int i1, int j0, int j1);
15
16#ifdef __cplusplus
17}
18#endif
19
20#endif
Note: See TracBrowser for help on using the repository browser.