| 548 | |
| 549 | public: |
| 550 | explicit EnqueueExplicit(nvinfer1::IExecutionContext& context, Bindings const& bindings) |
| 551 | : Enqueue(context) |
| 552 | , mBindings(bindings) |
| 553 | { |
| 554 | ASSERT(mBindings.setTensorAddresses(mContext)); |
| 555 | } |
| 556 | |
| 557 | bool operator()(TrtCudaStream& stream) const |
| 558 | { |
nothing calls this directly
no test coverage detected