projects
/
ppam-mpi.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b5ef44388f865a9a68bd9821de5dba02faa4fdd6
[ppam-mpi.git]
/
code
/
src
/
MPI_Main
/
slave.h
1
#ifndef PPAM_SLAVE_H
2
#define PPAM_SLAVE_H
3
4
#include <stdint.h>
5
6
// code executed by slave process
7
void
slave_run
(
int
myrank
,
uint32_t
nbSeriesInChunk
,
uint32_t
nbClusters
);
8
9
#endif