| 25 | # SAME_LOWER: if the amount of paddings to be added is odd, |
| 26 | # it will add the extra data to the right or bottom |
| 27 | class PaddingMode(Enum): |
| 28 | VALID = 0 |
| 29 | SAME = 1 |
| 30 | FULL = 2 |
| 31 | SAME_LOWER = 3 |
| 32 | NA = 4 |
| 33 | |
| 34 | |
| 35 | class PoolingType(Enum): |
no outgoing calls
no test coverage detected