| 5 | | NO_OP, // no operation |
| 6 | | MAX, // maxinum |
| 7 | | MIN, // minimun |
| 8 | | SUM, // sum |
| 9 | | PROD, // product |
| 10 | | LAND, // logical and |
| 11 | | BAND, // bit-wise and |
| 12 | | LOR, // logical or |
| 13 | | BOR, // bit-wise or |
| 14 | | LXOR, // logical exclusive or |
| 15 | | BXOR, // bit-wise exclusive or |
| 16 | | MINLOC, // min value and location |
| 17 | | MAXLOC, // max value and location |
| 18 | | REPLACE // replace ? TODO: Find definition for this operation |
| | 7 | COP_NO_OP, // no operation |
| | 8 | COP_MAX, // maxinum |
| | 9 | COP_MIN, // minimun |
| | 10 | COP_SUM, // sum |
| | 11 | COP_PROD, // product |
| | 12 | COP_LAND, // logical and |
| | 13 | COP_BAND, // bit-wise and |
| | 14 | COP_LOR, // logical or |
| | 15 | COP_BOR, // bit-wise or |
| | 16 | COP_LXOR, // logical exclusive or |
| | 17 | COP_BXOR, // bit-wise exclusive or |
| | 18 | COP_MINLOC, // min value and location |
| | 19 | COP_MAXLOC, // max value and location |
| | 20 | COP_REPLACE // replace ? TODO: Find definition for this operation |