| 638 | { |
| 639 | public: |
| 640 | explicit EnqueueSafe(nvinfer1::safe::IExecutionContext& context, Bindings const& bindings) |
| 641 | : mContext(context) |
| 642 | , mBindings(bindings) |
| 643 | { |
| 644 | ASSERT(mBindings.setSafeTensorAddresses(mContext)); |
| 645 | } |
| 646 | |
| 647 | bool operator()(TrtCudaStream& stream) const |
| 648 | { |
nothing calls this directly
no test coverage detected