Returns the number of HloOpcode values.
| 182 | |
| 183 | // Returns the number of HloOpcode values. |
| 184 | inline const uint32_t HloOpcodeCount() { |
| 185 | #define HLO_COUNT_ONE(...) +1 |
| 186 | #define HLO_XLIST_LENGTH(list) list(HLO_COUNT_ONE) |
| 187 | return HLO_XLIST_LENGTH(HLO_OPCODE_LIST); |
| 188 | } |
| 189 | |
| 190 | } // namespace xla |
| 191 |