Changeset 27434e9 for tests/array-container/array-basic.cfa
- Timestamp:
- Jun 23, 2021, 5:19:38 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- b6f39aa
- Parents:
- 2b910f9 (diff), 1d71208 (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/array-container/array-basic.cfa
r2b910f9 r27434e9 105 105 printf("result Ws [][][][] lo = %f\n", result); 106 106 107 result = total1d_low( wxyz[ [all, slice_ix, slice_ix, slice_ix]] );107 result = total1d_low( wxyz[all, slice_ix, slice_ix, slice_ix] ); 108 108 printf("result Ws [,,,] lo = %f\n", result); 109 109 … … 111 111 printf("result Ws [][][][] hi = %f\n", result); 112 112 113 result = total1d_hi( wxyz[ [all, slice_ix, slice_ix, slice_ix]] );113 result = total1d_hi( wxyz[all, slice_ix, slice_ix, slice_ix] ); 114 114 printf("result Ws [,,,] hi = %f\n", result); 115 115 … … 124 124 printf("result Xs [][][][] lo = %f\n", result); 125 125 126 result = total1d_low( wxyz[ [slice_ix, all, slice_ix, slice_ix]] );126 result = total1d_low( wxyz[slice_ix, all, slice_ix, slice_ix] ); 127 127 printf("result Xs [,,,] lo = %f\n", result); 128 128 … … 130 130 printf("result Xs [][][][] hi = %f\n", result); 131 131 132 result = total1d_hi( wxyz[ [slice_ix, all, slice_ix, slice_ix]] );132 result = total1d_hi( wxyz[slice_ix, all, slice_ix, slice_ix] ); 133 133 printf("result Xs [,,,] hi = %f\n", result); 134 134
Note: See TracChangeset
for help on using the changeset viewer.