~gcrosswhite/charon/projects-ParallelIO

« back to all changes in this revision

Viewing changes to src/matrix_multiplication.ci

  • Committer: Gregory Crosswhite
  • Date: 2009-04-15 02:23:24 UTC
  • Revision ID: gcross@phys.washington.edu-20090415022324-oru26n83btrfrsbn
Finished clearing out code that has been split into the other branches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//@+leo-ver=4-thin
2
 
//@+node:gcross.20081106211237.8:@thin matrix_multiplication.ci
3
 
//@@language cplusplus
4
 
 
5
 
module matrix_multiplication {
6
 
 
7
 
    extern module charon;
8
 
 
9
 
    //@    @+others
10
 
    //@+node:gcross.20081117194405.8:ResultSectionAnnouncementMessage Charm Interface
11
 
    message ResultSectionAnnouncementMessage;
12
 
    //@-node:gcross.20081117194405.8:ResultSectionAnnouncementMessage Charm Interface
13
 
    //@+node:gcross.20081106130235.9:MatrixMultiplier Charm Interface
14
 
    template<typename T_numtype> array[3D] MatrixMultiplier {
15
 
 
16
 
        entry MatrixMultiplier();
17
 
 
18
 
        entry [nokeep] void receiveA(ArrayMessage<T_numtype,2>* A_chunk);
19
 
        entry [nokeep] void receiveB(ArrayMessage<T_numtype,2>* B_chunk);
20
 
        entry [nokeep] void receiveDestinationInformation(ResultSectionAnnouncementMessage* msg);
21
 
 
22
 
    }
23
 
    //@-node:gcross.20081106130235.9:MatrixMultiplier Charm Interface
24
 
    //@-others
25
 
}
26
 
//@-node:gcross.20081106211237.8:@thin matrix_multiplication.ci
27
 
//@-leo