| 150 | } |
| 151 | |
| 152 | inline int64_t volume(nvinfer1::Dims const& d) |
| 153 | { |
| 154 | return std::accumulate(d.d, d.d + d.nbDims, int64_t{1}, std::multiplies<int64_t>{}); |
| 155 | } |
| 156 | |
| 157 | template <typename IntType> |
| 158 | constexpr IntType ceildiv(IntType a, IntType b) |
no outgoing calls
no test coverage detected