Changeset b110bcc for tests/concurrent/actors/matrix.cfa
- Timestamp:
- Apr 21, 2023, 5:36:12 PM (2 years ago)
- Branches:
- ADT, master
- Children:
- 28f8f15, 6e4c44d
- Parents:
- 2ed94a9 (diff), 699a97d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrent/actors/matrix.cfa
r2ed94a9 rb110bcc 7 7 unsigned int xr = 500, xc = 500, yc = 500, Processors = 1; // default values 8 8 9 struct derived_actor { 10 inline actor; 11 }; 12 void ?{}( derived_actor & this ) { ((actor &)this){}; } 9 struct derived_actor { inline actor; }; 13 10 14 11 struct derived_msg { … … 21 18 void ?{}( derived_msg & this ) {} 22 19 void ?{}( derived_msg & this, int * Z, int * X, int ** Y ) { 23 ((message &) this){ Finished};20 ((message &) this){ Nodelete }; 24 21 this.Z = Z; 25 22 this.X = X; … … 108 105 109 106 for ( unsigned int r = 0; r < xr; r += 1 ) { 110 actors[r] |messages[r];107 actors[r] << messages[r]; 111 108 } // for 112 109
Note:
See TracChangeset
for help on using the changeset viewer.