* \brief The axis over which reductions are performed. */
| 92 | * \brief The axis over which reductions are performed. |
| 93 | */ |
| 94 | enum Axis |
| 95 | { |
| 96 | NoAxis = 0, |
| 97 | Row = 1, |
| 98 | Column = 2, |
| 99 | Batch = 4, |
| 100 | All = Row | Column | Batch |
| 101 | }; |
| 102 | |
| 103 | /** |
| 104 | * \brief Tags for the different reduction algorithms |
nothing calls this directly
no outgoing calls
no test coverage detected