| 118 | } |
| 119 | |
| 120 | constexpr int BasicPitchCNN::_wrapIndex(int inIndex, int inSize) |
| 121 | { |
| 122 | int wrapped_index = inIndex % inSize; |
| 123 | |
| 124 | if (wrapped_index < 0) { |
| 125 | wrapped_index += inSize; |
| 126 | } |
| 127 | |
| 128 | return wrapped_index; |
| 129 | } |
| 130 | |
| 131 | void BasicPitchCNN::_concat() |
| 132 | { |
nothing calls this directly
no outgoing calls
no test coverage detected