For ICudaEngine
| 181 | |
| 182 | // For ICudaEngine |
| 183 | bool engine_binding_is_input(ICudaEngine& self, std::string const& name) |
| 184 | { |
| 185 | return self.bindingIsInput(self.getBindingIndex(name.c_str())); |
| 186 | }; |
| 187 | |
| 188 | Dims engine_get_binding_shape(ICudaEngine& self, std::string const& name) |
| 189 | { |
nothing calls this directly
no test coverage detected