For IExecutionContext
| 87 | |
| 88 | // For IExecutionContext |
| 89 | bool execute(IExecutionContext& self, int32_t batchSize, std::vector<size_t>& bindings) { |
| 90 | return self.execute(batchSize, reinterpret_cast<void**>(bindings.data())); |
| 91 | }; |
| 92 | |
| 93 | bool execute_async(IExecutionContext& self, int32_t batchSize, std::vector<size_t>& bindings, |
| 94 | size_t streamHandle, void* inputConsumed) { |