| 105 | }; |
| 106 | |
| 107 | inline InferenceTime operator+(InferenceTime const& a, InferenceTime const& b) |
| 108 | { |
| 109 | return InferenceTime(a.enq + b.enq, a.h2d + b.h2d, a.compute + b.compute, a.d2h + b.d2h); |
| 110 | } |
| 111 | |
| 112 | inline InferenceTime operator+=(InferenceTime& a, InferenceTime const& b) |
| 113 | { |
nothing calls this directly
no test coverage detected