Changeset d923fca for tests/concurrency/actors/matrixMultiply.cfa
- Timestamp:
- Feb 18, 2025, 12:54:23 PM (6 weeks ago)
- Branches:
- master
- Children:
- 8705a11
- Parents:
- 3e5fea2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tests/concurrency/actors/matrixMultiply.cfa ¶
r3e5fea2 rd923fca 24 24 } 25 25 26 allocation receive( derived_actor & receiver, derived_msg & msg ) {26 allocation receive( derived_actor &, derived_msg & msg ) { 27 27 for ( i; yc ) { // multiply X_row by Y_col and sum products 28 28 msg.Z[i] = 0; … … 41 41 if ( Processors < 1 ) fallthrough default; 42 42 } // if 43 fallthrough; 43 44 case 4: 44 45 if ( strcmp( argv[3], "d" ) != 0 ) { // default ? … … 46 47 if ( xr < 1 ) fallthrough default; 47 48 } // if 49 fallthrough; 48 50 case 3: 49 51 if ( strcmp( argv[2], "d" ) != 0 ) { // default ? … … 51 53 if ( xc < 1 ) fallthrough default; 52 54 } // if 55 fallthrough; 53 56 case 2: 54 57 if ( strcmp( argv[1], "d" ) != 0 ) { // default ? … … 56 59 if ( yc < 1 ) fallthrough default; 57 60 } // if 61 fallthrough; 58 62 case 1: // use defaults 59 63 break;
Note: See TracChangeset
for help on using the changeset viewer.